mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-21 22:54:40 +08:00
16 lines
298 B
C
16 lines
298 B
C
|
#ifndef UI_H__
|
||
|
#define UI_H__
|
||
|
|
||
|
void ShowGui(void);
|
||
|
void HideGraphWindow(void);
|
||
|
void ShowGraphWindow(void);
|
||
|
void RepaintGraphWindow(void);
|
||
|
void PrintAndLog(char *fmt, ...);
|
||
|
void SetLogFilename(char *fn);
|
||
|
|
||
|
extern double CursorScaleFactor;
|
||
|
extern int PlotGridX, PlotGridY;
|
||
|
extern int offline;
|
||
|
|
||
|
#endif
|