menuHelpers.h 694 B

123456789101112131415161718
  1. #ifndef NULLOSFT_MENUHELPERS_HEADER
  2. #define NULLOSFT_MENUHELPERS_HEADER
  3. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  4. #pragma once
  5. #endif
  6. #include <wtypes.h>
  7. INT MenuHelper_CopyMenuEx(HMENU hDest, INT iDstStart, HMENU hSource, INT iSrcStart, INT iSrcCount);
  8. INT MenuHelper_CopyMenu(HMENU hDest, INT iDstStart, HMENU hSource);
  9. HMENU MenuHelper_DuplcateMenu(HMENU hMenu);
  10. INT MenuHelper_InsertSeparator(HMENU hMenu, INT iPos);
  11. void MenuHelper_RemoveRange(HMENU hMenu, UINT min, UINT max);
  12. void MenuHelper_EnableGroup(HMENU hMenu, UINT *pszItems, INT cchItems, BOOL fByPos, BOOL bEnable);
  13. BOOL MenuHelper_GetMenuItemPos(HMENU hMenu, UINT itemId, INT *pPos);
  14. #endif // NULLOSFT_MENUHELPERS_HEADER