Sweden-Number/include/status.h

35 lines
686 B
C

/*
* 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;
HFONT32 hDefaultFont;
COLORREF clrBk; /* background color */
STATUSWINDOWPART part0; /* simple window */
STATUSWINDOWPART *parts;
} STATUSWINDOWINFO;
#endif /* __WINE_STATUS_H */