]>
Commit | Line | Data |
---|---|---|
a553f267 | 1 | //----------------------------------------------------------------------------- |
212ef3a0 | 2 | // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net> |
3 | // | |
a553f267 | 4 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
5 | // at your option, any later version. See the LICENSE.txt file for the text of | |
6 | // the license. | |
7 | //----------------------------------------------------------------------------- | |
8 | // GUI dummy file | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
6658905f | 11 | #include <stdio.h> |
12 | ||
13 | void ShowGraphWindow(void) | |
14 | { | |
15 | static int warned = 0; | |
16 | ||
17 | if (!warned) { | |
18 | printf("No GUI in this build!\n"); | |
19 | warned = 1; | |
20 | } | |
21 | } | |
22 | ||
23 | void HideGraphWindow(void) {} | |
24 | void RepaintGraphWindow(void) {} | |
25 | void MainGraphics() {} | |
26 | void InitGraphics(int argc, char **argv) {} | |
27 | void ExitGraphics(void) {} |