CopyAcceleratorTableA method

int CopyAcceleratorTableA(
  1. Pointer<HACCEL__> hAccelSrc,
  2. Pointer<LPACCEL> lpAccelDst,
  3. int cAccelEntries
)

Implementation

int CopyAcceleratorTableA(
  ffi.Pointer<HACCEL__> hAccelSrc,
  ffi.Pointer<LPACCEL> lpAccelDst,
  int cAccelEntries,
) {
  return (_CopyAcceleratorTableA ??= _dylib.lookupFunction<
      _c_CopyAcceleratorTableA,
      _dart_CopyAcceleratorTableA>('CopyAcceleratorTableA'))(
    hAccelSrc,
    lpAccelDst,
    cAccelEntries,
  );
}