proxmark3/client/src/proxgui.h

48 lines
1.3 KiB
C
Raw Normal View History

//-----------------------------------------------------------------------------
// 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
//-----------------------------------------------------------------------------
2019-04-11 07:16:25 +08:00
#ifndef __PROXGUI_H
#define __PROXGUI_H
#ifdef __cplusplus
extern "C" {
#endif
2017-07-28 03:32:15 +08:00
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
2017-07-28 03:32:15 +08:00
void ShowGraphWindow(void);
void HideGraphWindow(void);
void RepaintGraphWindow(void);
void MainGraphics(void);
void InitGraphics(int argc, char **argv, char *script_cmds_file, char *script_cmd, bool stayInCommandLoop);
void ExitGraphics(void);
2017-07-28 03:32:15 +08:00
extern double CursorScaleFactor;
2020-10-05 02:01:08 +08:00
extern char CursorScaleFactorUnit[11];
2020-10-09 22:49:50 +08:00
extern double PlotGridX, PlotGridY, PlotGridXdefault, PlotGridYdefault, GridOffset;
extern uint32_t CursorCPos, CursorDPos;
extern int CommandFinished;
extern int offline;
2017-07-28 03:32:15 +08:00
extern bool GridLocked;
#define GRAPH_SAVE 1
#define GRAPH_RESTORE 0
#ifndef FILE_PATH_SIZE
#define FILE_PATH_SIZE 1000
#endif
#ifdef __cplusplus
}
#endif
2019-04-11 07:16:25 +08:00
#endif