]>
Commit | Line | Data |
---|---|---|
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 | ||
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; | |
24 | extern int PlotGridX, PlotGridY; | |
25 | extern int CommandFinished; | |
26 | extern int offline; | |
27 | ||
28 | #ifdef __cplusplus | |
29 | } | |
30 | #endif |