Usermode/AxWin3 - Working on the libaxwin3 API
[tpg/acess2.git] / Usermode / include / axwin3 / axwin.h
1 /*
2  * Acess2 GUI Version 3 (AxWin3)
3  * - By John Hodge (thePowersGang)
4  *
5  * axwin.h
6  * - Core API Header
7  */
8 #ifndef _AXWIN3_AXWIN_H_
9 #define _AXWIN3_AXWIN_H_
10
11 typedef void    *tHWND;
12
13 extern void     AxWin3_Connect(const char *ServerDesc);
14
15 extern tHWND    AxWin3_CreateWindow(tHWND Parent, const char *Renderer, int Flags);
16 extern void     AxWin3_DestroyWindow(tHWND Window);
17
18 extern void     AxWin3_SendMessage(tHWND Window, int Length, void *Data);
19 extern void     AxWin3_SetWindowPos(tHWND Window, int X, int Y, int W, int H);
20 extern void     AxWin3_SetWindowShown(tHWND Window, int bShow);
21
22 #endif
23

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