CopyAcceleratorTable function user32
Copies the specified accelerator table. This function is used to obtain the accelerator-table data that corresponds to an accelerator-table handle, or to determine the size of the accelerator-table data.
int CopyAcceleratorTableW(
HACCEL hAccelSrc,
LPACCEL lpAccelDst,
int cAccelEntries
);
Implementation
int CopyAcceleratorTable(
int hAccelSrc,
Pointer<ACCEL> lpAccelDst,
int cAccelEntries,
) => _CopyAcceleratorTable(hAccelSrc, lpAccelDst, cAccelEntries);