]>
Commit | Line | Data |
---|---|---|
a553f267 | 1 | //----------------------------------------------------------------------------- |
2 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
3 | // at your option, any later version. See the LICENSE.txt file for the text of | |
4 | // the license. | |
5 | //----------------------------------------------------------------------------- | |
6 | // GUI functions | |
7 | //----------------------------------------------------------------------------- | |
8 | ||
6658905f | 9 | #ifdef __cplusplus |
10 | extern "C" { | |
11 | #endif | |
12 | ||
13 | void ShowGraphWindow(void); | |
14 | void HideGraphWindow(void); | |
15 | void RepaintGraphWindow(void); | |
16 | void MainGraphics(void); | |
17 | void InitGraphics(int argc, char **argv); | |
18 | void ExitGraphics(void); | |
19 | ||
20 | #define MAX_GRAPH_TRACE_LEN (1024*128) | |
21 | extern int GraphBuffer[MAX_GRAPH_TRACE_LEN]; | |
22 | extern int GraphTraceLen; | |
23 | extern double CursorScaleFactor; | |
f4434ad2 | 24 | extern int PlotGridX, PlotGridY; |
6658905f | 25 | extern int CommandFinished; |
d722c4ce | 26 | extern int offline; |
6658905f | 27 | |
28 | #ifdef __cplusplus | |
29 | } | |
30 | #endif |