blob: 24a22901620b9f0b67c6f60537c4c43d29f719ab [file] [log] [blame]
/*
* Status window definitions
*
* Copyright 1996 Bruce Milner
*/
#ifndef __WINE_STATUS_H
#define __WINE_STATUS_H
LRESULT WINAPI StatusWindowProc( HWND32 hwnd, UINT32 msg,
WPARAM32 wParam, LPARAM lParam );
typedef struct
{
INT32 x;
INT32 style;
RECT32 bound;
LPSTR text;
} STATUSWINDOWPART;
typedef struct
{
UINT16 numParts;
UINT16 textHeight;
BOOL32 simple;
STATUSWINDOWPART part0; /* simple window */
STATUSWINDOWPART *parts;
} STATUSWINDOWINFO;
#endif /* __WINE_STATUS_H */