blob: a53ceaece33475066c1ea102dd33f5a723b166bb [file] [log] [blame]
/*
* Status window definitions
*
* Copyright 1996 Bruce Milner
*/
#ifndef __WINE_STATUS_H
#define __WINE_STATUS_H
extern void STATUS_Register(void);
typedef struct
{
INT32 x;
INT32 style;
RECT32 bound;
LPSTR text;
HICON32 hIcon;
} STATUSWINDOWPART;
typedef struct
{
UINT16 numParts;
UINT16 textHeight;
UINT32 height;
BOOL32 simple;
HFONT32 hFont;
COLORREF clrBk; /* background color */
STATUSWINDOWPART part0; /* simple window */
STATUSWINDOWPART *parts;
} STATUSWINDOWINFO;
#endif /* __WINE_STATUS_H */