Added missing #include "config.h"
[wine/multimedia.git] / include / status.h
blob6f4718df380f369da56360c426fbcc950e6f5985
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 INT32 x;
13 INT32 style;
14 RECT32 bound;
15 LPSTR text;
16 HICON32 hIcon;
17 } STATUSWINDOWPART;
19 typedef struct
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 STATUSWINDOWPART part0; /* simple window */
30 STATUSWINDOWPART *parts;
31 } STATUSWINDOWINFO;
34 extern VOID STATUS_Register (VOID);
35 extern VOID STATUS_Unregister (VOID);
37 #endif /* __WINE_STATUS_H */