Usermode/AxWin3 - Implementing widget support in userland
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / include / renderer_widget.h
1 /*
2  * Acess2 Window Manager v3
3  * - By John Hodge (thePowersGang)
4  *
5  * render_widget.h
6  * - AxWin2 Widget port
7  */
8 #ifndef _RENDERER_WIDGET_H_
9 #define _RENDERER_WIDGET_H_
10
11 #include <wm_renderer.h>
12 #include <axwin3/widget.h>
13
14 enum
15 {
16         MSG_WIDGET_CREATE,
17         MSG_WIDGET_DELETE,
18         MSG_WIDGET_SETTEXT
19 };
20
21
22 typedef struct
23 {
24         uint32_t        Parent;
25         uint32_t        NewID;
26         char    DebugName[];
27 } tWidgetMsg_Create;
28
29 #endif
30

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