]> git.zerfleddert.de Git - proxmark3-svn/blame - client/proxgui.h
ADD: `data detectclock` - added clock blocks in plot window. Its a draft. Not working...
[proxmark3-svn] / client / proxgui.h
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
212ef3a0 2// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3//
a553f267 4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// GUI functions
9//-----------------------------------------------------------------------------
10
6658905f 11#ifdef __cplusplus
12extern "C" {
13#endif
14
15void ShowGraphWindow(void);
16void HideGraphWindow(void);
17void RepaintGraphWindow(void);
18void MainGraphics(void);
19void InitGraphics(int argc, char **argv);
20void ExitGraphics(void);
21
1abd86f1 22#define MAX_GRAPH_TRACE_LEN (40000 * 8)
6658905f 23extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];
24extern int GraphTraceLen;
25extern double CursorScaleFactor;
a9eeb576 26extern int PlotGridX, PlotGridY, PlotGridXdefault, PlotGridYdefault, CursorCPos, CursorDPos;
a47ded5b 27extern int PlotClock, PlockClockStartIndex;
6658905f 28extern int CommandFinished;
d722c4ce 29extern int offline;
6658905f 30
31#ifdef __cplusplus
32}
33#endif
Impressum, Datenschutz