Reading joystick 5 when we only support 4 should fail instead of
[wine/multimedia.git] / include / status.h
blobec44579dfb82d4717dec5ab8cfb161f169f43970
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 LPWSTR 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 BOOL32 bUnicode; /* unicode flag */
30 STATUSWINDOWPART part0; /* simple window */
31 STATUSWINDOWPART *parts;
32 } STATUSWINDOWINFO;
35 extern VOID STATUS_Register (VOID);
36 extern VOID STATUS_Unregister (VOID);
38 #endif /* __WINE_STATUS_H */