source: branches/common_functions/include/menu_funcs.h

Last change on this file was 2, checked in by stevenhl, 8 years ago

Import sources from cwmm-full.zip dated 2005-03-21

File size: 600 bytes
Line 
1#ifndef MENU_H_INCLUDED
2#define MENU_H_INCLUDED
3
4#if __cplusplus
5extern "C" {
6#endif
7SHORT menuInsertMenuItem( HWND hwndMenu, HWND hwndSubMenu, SHORT sPosition, int iID, char * chrText);
8MRESULT menuInsertMenuSeparator(HWND hwndMenu, HWND hwndSubMenu, SHORT sPosition );
9SHORT menuQueryItemCount(HWND hwndMenu);
10MRESULT menuCheckItem(HWND hwndMenu, USHORT usID, BOOL fIncludeSubMenu, BOOL fCheck);
11MRESULT menuRemoveItem(HWND hwndMenu, USHORT usID, BOOL fIncludeSubMenu);
12MRESULT menuCheckForItem(HWND hwndMenu, USHORT usID, BOOL fIncludeSubMenu);
13#if __cplusplus
14}
15#endif
16
17#endif
Note: See TracBrowser for help on using the repository browser.