Release 970824
[wine/multimedia.git] / include / status.h
blob24a22901620b9f0b67c6f60537c4c43d29f719ab
1 /*
2 * Status window definitions
4 * Copyright 1996 Bruce Milner
5 */
7 #ifndef __WINE_STATUS_H
8 #define __WINE_STATUS_H
10 LRESULT WINAPI StatusWindowProc( HWND32 hwnd, UINT32 msg,
11 WPARAM32 wParam, LPARAM lParam );
13 typedef struct
15 INT32 x;
16 INT32 style;
17 RECT32 bound;
18 LPSTR text;
19 } STATUSWINDOWPART;
21 typedef struct
23 UINT16 numParts;
24 UINT16 textHeight;
25 BOOL32 simple;
26 STATUSWINDOWPART part0; /* simple window */
27 STATUSWINDOWPART *parts;
28 } STATUSWINDOWINFO;
30 #endif /* __WINE_STATUS_H */