]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/proxgui.h
1 //-----------------------------------------------------------------------------
2 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
3 // at your option, any later version. See the LICENSE.txt file for the text of
5 //-----------------------------------------------------------------------------
7 //-----------------------------------------------------------------------------
13 void ShowGraphWindow(void);
14 void HideGraphWindow(void);
15 void RepaintGraphWindow(void);
16 void MainGraphics(void);
17 void InitGraphics(int argc
, char **argv
);
18 void ExitGraphics(void);
20 #define MAX_GRAPH_TRACE_LEN (1024*128)
21 extern int GraphBuffer
[MAX_GRAPH_TRACE_LEN
];
22 extern int GraphTraceLen
;
23 extern double CursorScaleFactor
;
24 extern int PlotGridX
, PlotGridY
;
25 extern int CommandFinished
;