From: Neils Wagenaar Date: Sat, 16 Aug 2003 17:27:28 +0000 (+0000) Subject: Skeleton for the upcoming VJ GUI X-Git-Tag: 1.0.5~29 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99461abfcbc562e740a5e0900167ece9a4a5a035;p=virtualjaguar Skeleton for the upcoming VJ GUI --- diff --git a/src/gui.cpp b/src/gui.cpp new file mode 100644 index 0000000..17e522c --- /dev/null +++ b/src/gui.cpp @@ -0,0 +1,23 @@ +// +// GUI.CPP +// +// Graphical User Interface support +// by James L. Hammons +// + +#include "types.h" +#include "tom.h" +#include "gui.h" + +void InitGUI(void) +{ +} + +void GUIDone(void) +{ +} + +void DrawText(uint16 * screen, uint32 x, uint32 y, const char * string) +{ + uint32 pitch = TOMGetSDLScreenPitch(); +} diff --git a/src/include/gui.h b/src/include/gui.h new file mode 100644 index 0000000..05ff8dd --- /dev/null +++ b/src/include/gui.h @@ -0,0 +1,12 @@ +// +// GUI.H +// +// Graphical User Interface support +// + +#ifndef __GUI_H__ +#define __GUI_H__ + + + +#endif // __GUI_H__