Small enhancement.
[wine/hacks.git] / include / status.h
blob6afeec18672affd3e60d0b4e4f3db32eabec1ff2
1 /*
2 * Status window definitions
4 * Copyright 1996 Bruce Milner
5 */
7 #ifndef __WINE_STATUS_H
8 #define __WINE_STATUS_H
10 typedef struct
12 INT x;
13 INT style;
14 RECT bound;
15 LPWSTR text;
16 HICON hIcon;
17 } STATUSWINDOWPART;
19 typedef struct
21 UINT16 numParts;
22 UINT16 textHeight;
23 UINT height;
24 BOOL simple;
25 HWND hwndToolTip;
26 HFONT hFont;
27 HFONT hDefaultFont;
28 COLORREF clrBk; /* background color */
29 BOOL bUnicode; /* unicode flag */
30 STATUSWINDOWPART part0; /* simple window */
31 STATUSWINDOWPART *parts;
32 } STATUSWINDOWINFO;
35 extern VOID STATUS_Register (VOID);
36 extern VOID STATUS_Unregister (VOID);
38 #endif /* __WINE_STATUS_H */