Release 980628
[wine/gsoc-2012-control.git] / include / status.h
blob7bf2b4c73156dcb9f66a14f4845487274327c382
1 /*
2 * Status window definitions
4 * Copyright 1996 Bruce Milner
5 */
7 #ifndef __WINE_STATUS_H
8 #define __WINE_STATUS_H
10 extern void STATUS_Register(void);
12 typedef struct
14 INT32 x;
15 INT32 style;
16 RECT32 bound;
17 LPSTR text;
18 HICON32 hIcon;
19 } STATUSWINDOWPART;
21 typedef struct
23 UINT16 numParts;
24 UINT16 textHeight;
25 UINT32 height;
26 BOOL32 simple;
27 HFONT32 hFont;
28 HFONT32 hDefaultFont;
29 COLORREF clrBk; /* background color */
30 STATUSWINDOWPART part0; /* simple window */
31 STATUSWINDOWPART *parts;
32 } STATUSWINDOWINFO;
34 #endif /* __WINE_STATUS_H */