mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
22 lines
473 B
C
22 lines
473 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 PlotGridX, PlotGridY;
|
|
extern int CommandFinished;
|
|
extern int offline;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|