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 |
22 | \r |
23 | // command.cpp\r |
24 | void CommandReceived(char *cmd);\r |
25 | void UsbCommandReceived(UsbCommand *c);\r |
26 | \r |
27 | // cmdline.cpp\r |
28 | void ShowCommandline(void);\r |
29 | void ExecCmd(char *cmd);\r |
30 | //void PrintToScrollback(char *fmt, ...);\r |
31 | \r |
32 | #endif\r |