2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2010-02-26 05:57:35 +08:00
|
|
|
// Copyright (C) 2009 Michael Gernoth <michael at gernoth.net>
|
|
|
|
//
|
2010-02-21 08:47:22 +08:00
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// GUI dummy file
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2009-04-09 14:43:20 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
void ShowGraphWindow(void)
|
|
|
|
{
|
|
|
|
static int warned = 0;
|
|
|
|
|
|
|
|
if (!warned) {
|
|
|
|
printf("No GUI in this build!\n");
|
|
|
|
warned = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HideGraphWindow(void) {}
|
|
|
|
void RepaintGraphWindow(void) {}
|
|
|
|
void MainGraphics() {}
|
|
|
|
void InitGraphics(int argc, char **argv) {}
|
|
|
|
void ExitGraphics(void) {}
|