Release 980822
[wine/multimedia.git] / include / status.h
blob45323f4880f495589b4cf63169dcb2e005fd348b
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 HWND32 hwndToolTip;
28 HFONT32 hFont;
29 HFONT32 hDefaultFont;
30 COLORREF clrBk; /* background color */
31 STATUSWINDOWPART part0; /* simple window */
32 STATUSWINDOWPART *parts;
33 } STATUSWINDOWINFO;
35 #endif /* __WINE_STATUS_H */