Jump to content

ACCEL: Difference between revisions

From EDM2
Created page with "Accelerator structure. <PRE> typedef struct _ACCEL { USHORT fs; Options.: USHORT key; Key.: USHORT cmd; Command code.: } ACCEL; typede..."
 
No edit summary
Line 9: Line 9:
typedef  ACCEL  * PACCEL ;
typedef  ACCEL  * PACCEL ;
</PRE>
</PRE>
==Fields==
;fs (USHORT)
:Options.
;key (USHORT)
:Key.
;cmd (USHORT)
:Command code.
:The value to be placed in the uscmd parameter of a WM_HELP, a WM_COMMAND, or a WM_SYSCOMMAND.


[[Category:PM Data type]]
[[Category:PM Data type]]

Revision as of 18:09, 25 May 2024

Accelerator structure.

typedef struct _ACCEL {
  USHORT     fs;   /*  Options. */
  USHORT     key;  /*  Key. */
  USHORT     cmd;  /*  Command code. */
} ACCEL;

typedef   ACCEL   * PACCEL ;

Fields

fs (USHORT)
Options.
key (USHORT)
Key.
cmd (USHORT)
Command code.
The value to be placed in the uscmd parameter of a WM_HELP, a WM_COMMAND, or a WM_SYSCOMMAND.