AxWin2 - Misc commenting changes (and moving Shell to new specs)
[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_Element  geConsole;
13
14 // === CODE ===
15 int main(int argc, char *argv[])
16 {
17         AxWin_Register("Terminal");
18         
19         //geConsole = AxWin_CreateElement();
20         
21         AxWin_MessageLoop();
22         
23         return 0;
24 }
25
26 /**
27  */
28 int Menubar_HandleMessage(tAxWin_Message *Message)
29 {
30         return 0;
31 }

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