◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINACCELERATORS typedef struct _ACCELTABLE { /* acct */ USHORT cAccel; USHORT codepage; ACCEL aaccel[1]; } ACCELTABLE; The ACCELTABLE structure contains an accelerator table. Field Description ──────────────────────────────────────────────────────────────────────────── cAccel Specifies the number of accelerator entries. The default is 28. codepage Specifies the code page for the accelerator entries in the accelerator table of the default queue. aaccel[1] Specifies the accelerator entries. The actual dimension of this array of ACCEL structures is dependent on the number of accelerator entries. See Also WinCreateAccelTable, WinCopyAccelTable, ACCEL ♦