mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
7ddb990032
Add grid display/lock commands to plot window
32 lines
1,006 B
C
32 lines
1,006 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
|
|
//
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// GUI functions
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#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 PlotGridX, PlotGridY, PlotGridXdefault, PlotGridYdefault;
|
|
extern int CommandFinished;
|
|
extern int offline;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|