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