textual
[RRG-proxmark3.git] / client / src / guidummy.cpp
blob8557b00158f5523ac91ffe0fed2155ddf1ae4adf
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
3 //
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 //-----------------------------------------------------------------------------
11 #include <stdio.h>
13 extern "C" void ShowGraphWindow(void) {
14 static int warned = 0;
16 if (!warned) {
17 printf("No GUI in this build!\n");
18 warned = 1;
22 extern "C" void HideGraphWindow(void) {}
23 extern "C" void RepaintGraphWindow(void) {}
24 extern "C" void MainGraphics() {}
25 extern "C" void InitGraphics(int argc, char **argv) {}
26 extern "C" void ExitGraphics(void) {}