]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/proxgui.h
Add License/Copyright headers/notices. Please add your own copyright notice if you...
[proxmark3-svn] / client / proxgui.h
... / ...
CommitLineData
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
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;
24extern int PlotGridX, PlotGridY;
25extern int CommandFinished;
26extern int offline;
27
28#ifdef __cplusplus
29}
30#endif
Impressum, Datenschutz