Cleanup Commit
[tpg/acess2.git] / Usermode / Applications / axwin2_src / Shell_src / main.c
1 /*
2  * Acess2 GUI Shell
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         // Create Window
18         ghMenubarWindow = AxWin_CreateWindow(0, 0, -1, -1, WINFLAG_NOBORDER, Menubar_HandleMessage);
19         
20         AxWin_MessageLoop();
21         
22         return 0;
23 }
24
25 /**
26  */
27 int Menubar_HandleMessage(tAxWin_Message *Message)
28 {
29         return 0;
30 }

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