Changed server wait logic a bit.
[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 typedef struct
11 {
12     INT32       x;
13     INT32       style;
14     RECT32      bound;
15     LPWSTR      text;
16     HICON32     hIcon;
17 } STATUSWINDOWPART;
18
19 typedef struct
20 {
21     UINT16              numParts;
22     UINT16              textHeight;
23     UINT32              height;
24     BOOL32              simple;
25     HWND32              hwndToolTip;
26     HFONT32             hFont;
27     HFONT32             hDefaultFont;
28     COLORREF            clrBk;     /* background color */
29     BOOL32              bUnicode;  /* unicode flag */
30     STATUSWINDOWPART    part0;     /* simple window */
31     STATUSWINDOWPART   *parts;
32 } STATUSWINDOWINFO;
33
34
35 extern VOID STATUS_Register (VOID);
36 extern VOID STATUS_Unregister (VOID);
37
38 #endif  /* __WINE_STATUS_H */