]> Shamusworld >> Repos - virtualjaguar/blob - src/gui.cpp
Skeleton for the upcoming VJ GUI
[virtualjaguar] / src / gui.cpp
1 //
2 // GUI.CPP
3 //
4 // Graphical User Interface support
5 // by James L. Hammons
6 //
7
8 #include "types.h"
9 #include "tom.h"
10 #include "gui.h"
11
12 void InitGUI(void)
13 {
14 }
15
16 void GUIDone(void)
17 {
18 }
19
20 void DrawText(uint16 * screen, uint32 x, uint32 y, const char * string)
21 {
22         uint32 pitch = TOMGetSDLScreenPitch();
23 }