]>
Commit | Line | Data |
---|---|---|
6658905f | 1 | #include <stdio.h> |
2 | ||
3 | void ShowGraphWindow(void) | |
4 | { | |
5 | static int warned = 0; | |
6 | ||
7 | if (!warned) { | |
8 | printf("No GUI in this build!\n"); | |
9 | warned = 1; | |
10 | } | |
11 | } | |
12 | ||
13 | void HideGraphWindow(void) {} | |
14 | void RepaintGraphWindow(void) {} | |
15 | void MainGraphics() {} | |
16 | void InitGraphics(int argc, char **argv) {} | |
17 | void ExitGraphics(void) {} |