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