mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-12 18:25:07 +08:00
It is identical to the popular 20081211, with the doob addition (20090301), a linux client, and two additional commands for LF analysis. Let me know if you find issues here!
20 lines
420 B
C
20 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
|