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