|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| -
| Header File
| wfext.h
| Unicode
| No
| Platform Notes
| None
|
|
|
FMS_TOOLBARLOAD
The FMS_TOOLBARLOAD structure contains information about custom buttons to be added to the File
Manager toolbar. The buttons are provided by a File Manager extension DLL.
typedef struct _FMS_TOOLBARLOAD { /* fmstbl */
DWORD dwSize;
LPEXT_BUTTON lpButtons;
WORD cButtons;
WORD cBitmaps;
WORD idBitmap;
HBITMAP hBitmap;
} FMS_TOOLBARLOAD;
Members
dwSize
Specifies the size, in bytes, of the structure. File Manager sets the size
before calling the extension and checks the size after the extension procedure
returns.
lpButtons
Points to an array of EXT_BUTTON structures that specify the style, command identifier, and Help string
identifier for each toolbar button.
cButtons
Specifies the number of EXT_BUTTON structures in the array pointed to by the lpButtons member. This number equals the number of buttons and separators to add to the
toolbar.
cBitmaps
Specifies the number of buttons represented by the given bitmap.
idBitmap
Specifies the identifier of a bitmap resource in the executable file for the
extension DLL. The bitmap resource contains images for the number of buttons
specified by cBitmaps. File Manager loads the bitmap resource, then uses it to display the buttons.
hBitmap
Specifies the handle of a bitmap that the File Manager will use to obtain and
display button images if idBitmap is 0.
See Also
FMEVENT_TOOLBARLOAD, EXT_BUTTON
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
|