23 lines
737 B
C
23 lines
737 B
C
/*
|
|
* Menu definitions
|
|
*/
|
|
|
|
#ifndef __WINE_MENU_H
|
|
#define __WINE_MENU_H
|
|
|
|
#define MAGIC_REDUCE 3
|
|
#define MAGIC_RESTORE 2
|
|
#define MAGIC_CLOSE 5
|
|
|
|
extern BOOL32 MENU_Init(void);
|
|
extern HMENU32 MENU_GetSysMenu(HWND32 hWndOwner, HMENU32 hSysPopup);
|
|
extern UINT32 MENU_GetMenuBarHeight( HWND32 hwnd, UINT32 menubarWidth,
|
|
INT32 orgX, INT32 orgY );
|
|
extern BOOL32 MENU_PatchResidentPopup( HQUEUE16, WND* );
|
|
extern void MENU_TrackMouseMenuBar( WND *wnd, INT32 ht, POINT32 pt );
|
|
extern void MENU_TrackKbdMenuBar( WND *wnd, UINT32 wParam, INT32 vkey );
|
|
extern UINT32 MENU_DrawMenuBar( HDC32 hDC, LPRECT32 lprect,
|
|
HWND32 hwnd, BOOL32 suppress_draw );
|
|
|
|
#endif /* __WINE_MENU_H */
|