43c8db5db882b81853af5dfca5e3b7f5e3ac3740
[tpg/acess2.git] / Usermode / Applications / axwin3_src / WM / include / wm_internals.h
1 /*
2  * Acess2 Window Manager v3 (axwin3)
3  * - By John Hodge (thePowersGang)
4  *
5  * include/wm_internals.h
6  * - Window management internal definitions
7  */
8 #ifndef _WM_INTERNALS_H_
9 #define _WM_INTERNALS_H_
10
11 #include <wm.h>
12
13 struct sWindow
14 {
15         tWindow *GlobalNext;
16         tWindow *RenderNext;
17
18         tWindow *FirstChild;
19         tWindow *LastChild;
20         
21         tWMRenderer     *Renderer;
22         
23          int    X;
24          int    Y;
25          int    W;
26          int    H;
27
28         void    *RendererInfo;  
29
30 };
31
32 #endif
33

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