Merge branch 'master' of [email protected]:acess2
[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         // Create Window
20         //ghMenubarWindow = AxWin_CreateWindow(0, 0, -1, -1, WINFLAG_NOBORDER, Menubar_HandleMessage);
21         
22         AxWin_MessageLoop();
23         
24         return 0;
25 }
26
27 /**
28  */
29 int Menubar_HandleMessage(tAxWin_Message *Message)
30 {
31         return 0;
32 }

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