|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| wfext.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
FMS_LOAD
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
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|