]> git.zerfleddert.de Git - proxmark3-svn/blame - client/guidummy.c
And directory ;)
[proxmark3-svn] / client / guidummy.c
CommitLineData
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 dummy file
7//-----------------------------------------------------------------------------
8
6658905f 9#include <stdio.h>
10
11void 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
21void HideGraphWindow(void) {}
22void RepaintGraphWindow(void) {}
23void MainGraphics() {}
24void InitGraphics(int argc, char **argv) {}
25void ExitGraphics(void) {}
Impressum, Datenschutz