]>
Commit | Line | Data |
---|---|---|
6658905f | 1 | #ifndef __PROX_H\r |
2 | #define __PROX_H\r | |
3 | \r | |
4 | #include "../include/usb_cmd.h"\r | |
5 | \r | |
6 | // prox.cpp\r | |
7 | void ReceiveCommand(UsbCommand *c);\r | |
8 | BOOL ReceiveCommandPoll(UsbCommand *c);\r | |
9 | void SendCommand(UsbCommand *c, BOOL wantAck);\r | |
10 | \r | |
11 | // gui.cpp\r | |
12 | void ShowGui(void);\r | |
13 | void HideGraphWindow(void);\r | |
14 | void ShowGraphWindow(void);\r | |
15 | void RepaintGraphWindow(void);\r | |
16 | void PrintToScrollback(char *fmt, ...);\r | |
17 | #define MAX_GRAPH_TRACE_LEN (1024*128)\r | |
18 | extern int GraphBuffer[MAX_GRAPH_TRACE_LEN];\r | |
19 | extern int GraphTraceLen;\r | |
20 | extern double CursorScaleFactor;\r | |
21 | extern int CommandFinished;\r | |
d722c4ce | 22 | extern int offline; // Set to 1 if the proxmark is offline\r |
23 | \r | |
6658905f | 24 | \r |
25 | // command.cpp\r | |
26 | void CommandReceived(char *cmd);\r | |
27 | void UsbCommandReceived(UsbCommand *c);\r | |
28 | \r | |
29 | // cmdline.cpp\r | |
30 | void ShowCommandline(void);\r | |
31 | void ExecCmd(char *cmd);\r | |
32 | //void PrintToScrollback(char *fmt, ...);\r | |
33 | \r | |
34 | #endif\r |