]> git.zerfleddert.de Git - proxmark3-svn/blob - client/guidummy.c
Add License/Copyright headers/notices. Please add your own copyright notice if you...
[proxmark3-svn] / client / guidummy.c
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 dummy file
7 //-----------------------------------------------------------------------------
8
9 #include <stdio.h>
10
11 void ShowGraphWindow(void)
12 {
13 static int warned = 0;
14
15 if (!warned) {
16 printf("No GUI in this build!\n");
17 warned = 1;
18 }
19 }
20
21 void HideGraphWindow(void) {}
22 void RepaintGraphWindow(void) {}
23 void MainGraphics() {}
24 void InitGraphics(int argc, char **argv) {}
25 void ExitGraphics(void) {}
Impressum, Datenschutz