CopyAcceleratorTable function user32

int CopyAcceleratorTable(
  1. int hAccelSrc,
  2. Pointer<ACCEL> lpAccelDst,
  3. int cAccelEntries
)

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);