Ignore:
Timestamp:
Aug 12, 2002, 5:54:49 PM (23 years ago)
Author:
umoeller
Message:

Minor updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/winh.c

    r201 r206  
    576576
    577577/*
     578 *@@ winhRemoveMenuItems:
     579 *      removes multiple menu items at once, as
     580 *      specified in the given array of menu item
     581 *      IDs.
     582 *
     583 *@@added V0.9.21 (2002-08-12) [umoeller]
     584 */
     585
     586BOOL XWPENTRY winhRemoveMenuItems(HWND hwndMenu,            // in: menu to remove from
     587                                  const SHORT *asItemIDs,   // in: array of menu item IDs
     588                                  ULONG cItemIDs)           // in: array item count
     589{
     590    ULONG ul;
     591    for (ul = 0;
     592         ul < cItemIDs;
     593         ++ul)
     594    {
     595        winhRemoveMenuItem(hwndMenu,
     596                           asItemIDs[ul]);
     597    }
     598
     599    return TRUE;
     600}
     601
     602/*
    578603 *@@ winhInsertMenuSeparator:
    579604 *      this inserts a separator into a given menu at
Note: See TracChangeset for help on using the changeset viewer.