Prev Next

FMS_LOAD info

The FMS_LOAD structure contains information that File Manager uses to add a custom menu provided by a File Manager extension DLL. The structure also provides a delta value that the extension DLL can use to manipulate the custom menu after File Manager has loaded the menu.

typedef struct _FMS_LOAD { /* fmsld */ 

    DWORD dwSize; 

    TCHAR  szMenuName[MENU_TEXT_LEN]; 

    HMENU hMenu; 

    UINT  wMenuDelta; 

} FMS_LOAD; 

 

Members

dwSize
Specifies the length, in bytes, of the structure.
szMenuName
Specifies the null-terminated name for a menu item that appears on the menu bar in File Manager.
hMenu
Identifies the pop-up menu added to the menu bar in File Manager.
wMenuDelta
Specifies the menu-item delta value. To avoid conflicts with its own menu items, File Manager renumbers the menu-item identifiers in the pop-up menu identified by the hMenu member by adding this delta value to each identifier. An extension DLL that must modify a menu item must identify the item by adding the delta value to the menu item’s identifier. The value of this member can vary from session to session.

See Also

FMExtensionProc