Added missing TRACE define when NO_DEBUG_MSGS was defined.
[wine/hacks.git] / include / menu.h
blob6fd9eeb03ded9800cdecf038083dc307560b82a3
1 /*
2 * Menu definitions
3 */
5 #ifndef __WINE_MENU_H
6 #define __WINE_MENU_H
8 #include "win.h"
10 extern BOOL MENU_Init(void);
11 extern HMENU MENU_GetSysMenu(HWND hWndOwner, HMENU hSysPopup);
12 extern UINT MENU_GetMenuBarHeight( HWND hwnd, UINT menubarWidth,
13 INT orgX, INT orgY );
14 extern BOOL MENU_PatchResidentPopup( HQUEUE16, WND* );
15 extern void MENU_TrackMouseMenuBar( WND *wnd, INT ht, POINT pt );
16 extern void MENU_TrackKbdMenuBar( WND *wnd, UINT wParam, INT vkey );
17 extern UINT MENU_DrawMenuBar( HDC hDC, LPRECT lprect,
18 HWND hwnd, BOOL suppress_draw );
20 #endif /* __WINE_MENU_H */