CopyAcceleratorTableW method

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

Implementation

int CopyAcceleratorTableW(
  ffi.Pointer<HACCEL__> hAccelSrc,
  ffi.Pointer<LPACCEL> lpAccelDst,
  int cAccelEntries,
) {
  return (_CopyAcceleratorTableW ??= _dylib.lookupFunction<
      _c_CopyAcceleratorTableW,
      _dart_CopyAcceleratorTableW>('CopyAcceleratorTableW'))(
    hAccelSrc,
    lpAccelDst,
    cAccelEntries,
  );
}