]>
Commit | Line | Data |
---|---|---|
6658905f | 1 | #ifdef __cplusplus |
2 | extern "C" { | |
3 | #endif | |
4 | ||
5 | void ShowGraphWindow(void); | |
6 | void HideGraphWindow(void); | |
7 | void RepaintGraphWindow(void); | |
8 | void MainGraphics(void); | |
9 | void InitGraphics(int argc, char **argv); | |
10 | void ExitGraphics(void); | |
11 | ||
12 | #define MAX_GRAPH_TRACE_LEN (1024*128) | |
13 | extern int GraphBuffer[MAX_GRAPH_TRACE_LEN]; | |
14 | extern int GraphTraceLen; | |
15 | extern double CursorScaleFactor; | |
f4434ad2 | 16 | extern int PlotGridX, PlotGridY; |
6658905f | 17 | extern int CommandFinished; |
d722c4ce | 18 | extern int offline; |
6658905f | 19 | |
20 | #ifdef __cplusplus | |
21 | } | |
22 | #endif |