HM ACTIONBAR COMMAND: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:HM_ACTIONBAR_COMMAND}} The HM_ACTIONBAR_COMMAND message is sent when the user chooses a command from an application-supplied menu in the help window. The application should carry out the command identified by the usCmd parameter. ==Parameters== ;usCmd : Low word of mp1. Specifies the command value. ==Returns== An application should return zero if it processes this message. ==Remarks== Applications can replace the menu in a help window by specifying..." |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:HM_ACTIONBAR_COMMAND}} | {{DISPLAYTITLE:HM_ACTIONBAR_COMMAND}} | ||
This message is sent to the current active application window by the Help | |||
Manager to notify the application when the user selects a tailored action bar item. | |||
==Syntax== | |||
<pre> | |||
param1 | |||
USHORT idCommand; /* Identity of the action bar item that was selected. */ | |||
param2 | |||
ULONG ulReserved; /* Reserved value, should be 0. */ | |||
</pre> | |||
==Parameters== | ==Parameters== | ||
; | ;idCommand ([[USHORT]]) - input: Identity of the action bar item that was selected. | ||
;ulReserved ([[ULONG]]) - input: Reserved value, should be 0. | |||
==Returns== | ==Returns== | ||
;ulReserved ([[ULONG]]) - return: Reserved value, should be 0. | |||
== | ==Default Processing== | ||
None. | |||
[[Category:Messages]] | [[Category:Messages]] |
Latest revision as of 03:49, 28 April 2025
This message is sent to the current active application window by the Help Manager to notify the application when the user selects a tailored action bar item.
Syntax
param1 USHORT idCommand; /* Identity of the action bar item that was selected. */ param2 ULONG ulReserved; /* Reserved value, should be 0. */
Parameters
- idCommand (USHORT) - input
- Identity of the action bar item that was selected.
- ulReserved (ULONG) - input
- Reserved value, should be 0.
Returns
- ulReserved (ULONG) - return
- Reserved value, should be 0.
Default Processing
None.