axwin2 - Little cleanup
[tpg/acess2.git] / Usermode / Applications / axwin2_src / Shell_src / main.c
1 /*
2  * Acess2 GUI Test App
3  * - By John Hodge (thePowersGang)
4  */
5 #include <axwin/axwin.h>
6
7 // === PROTOTYPES ===
8  int    main(int argc, char *argv[]);
9  int    Menubar_HandleMessage(tAxWin_Message *Message);
10
11 // === GLOBALS ===
12 tAxWin_Handle   ghMenubarWindow;
13
14 // === CODE ===
15 int main(int argc, char *argv[])
16 {
17         AxWin_Register("Terminal");
18         
19         AxWin_MessageLoop();
20         
21         return 0;
22 }
23
24 /**
25  */
26 int Menubar_HandleMessage(tAxWin_Message *Message)
27 {
28         return 0;
29 }

UCC git Repository :: git.ucc.asn.au