]> git.zerfleddert.de Git - proxmark3-svn/blame - client/proxgui.h
Add License/Copyright headers/notices. Please add your own copyright notice if you...
[proxmark3-svn] / client / proxgui.h
CommitLineData
a553f267 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
4// the license.
5//-----------------------------------------------------------------------------
6// GUI functions
7//-----------------------------------------------------------------------------
8
6658905f 9#ifdef __cplusplus
10extern "C" {
11#endif
12
13void ShowGraphWindow(void);
14void HideGraphWindow(void);
15void RepaintGraphWindow(void);
16void MainGraphics(void);
17void InitGraphics(int argc, char **argv);
18void ExitGraphics(void);
19
20#define MAX_GRAPH_TRACE_LEN (1024*128)
21extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
22extern int GraphTraceLen;
23extern double CursorScaleFactor;
f4434ad2 24extern int PlotGridX, PlotGridY;
6658905f 25extern int CommandFinished;
d722c4ce 26extern int offline;
6658905f 27
28#ifdef __cplusplus
29}
30#endif
Impressum, Datenschutz