mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
31 lines
583 B
C
31 lines
583 B
C
|
/*
|
||
|
* Status window definitions
|
||
|
*
|
||
|
* Copyright 1996 Bruce Milner
|
||
|
*/
|
||
|
|
||
|
#ifndef __WINE_STATUS_H
|
||
|
#define __WINE_STATUS_H
|
||
|
|
||
|
LRESULT 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 */
|