Cleanup Commit
[tpg/acess2.git] / Usermode / Applications / axwin2_src / WM / wm.h
1
2 #ifndef _WM_H_
3 #define _WM_H_
4
5 typedef struct sElement
6 {
7         struct sElement *NextSibling;
8         
9         short   CachedX;
10         short   CachedY;
11         short   CachedW;
12         short   CachedH;
13         
14         struct sElement *FirstChild;
15 }       tElement;
16
17 typedef struct sTab
18 {
19         char    *Name;
20         
21         tElement        *RootElement;
22 }       tTab;
23
24 typedef struct sApplication
25 {
26         pid_t   PID;
27         
28          int    nTabs;
29         tTab    *Tabs;
30         
31         char    Name[];
32 }       tApplication;
33
34 #endif

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