mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 02:34:48 +08:00
21 lines
420 B
C
21 lines
420 B
C
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void ShowGraphWindow(void);
|
||
|
void HideGraphWindow(void);
|
||
|
void RepaintGraphWindow(void);
|
||
|
void MainGraphics(void);
|
||
|
void InitGraphics(int argc, char **argv);
|
||
|
void ExitGraphics(void);
|
||
|
|
||
|
#define MAX_GRAPH_TRACE_LEN (1024*128)
|
||
|
extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
|
||
|
extern int GraphTraceLen;
|
||
|
extern double CursorScaleFactor;
|
||
|
extern int CommandFinished;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|