GetAtomNameW method

int GetAtomNameW(
  1. int nAtom,
  2. Pointer<Uint16> lpBuffer,
  3. int nSize
)

Implementation

int GetAtomNameW(
  int nAtom,
  ffi.Pointer<ffi.Uint16> lpBuffer,
  int nSize,
) {
  return (_GetAtomNameW ??= _dylib
      .lookupFunction<_c_GetAtomNameW, _dart_GetAtomNameW>('GetAtomNameW'))(
    nAtom,
    lpBuffer,
    nSize,
  );
}