GlobalGetAtomNameW method

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

Implementation

int GlobalGetAtomNameW(
  int nAtom,
  ffi.Pointer<ffi.Uint16> lpBuffer,
  int nSize,
) {
  return (_GlobalGetAtomNameW ??=
      _dylib.lookupFunction<_c_GlobalGetAtomNameW, _dart_GlobalGetAtomNameW>(
          'GlobalGetAtomNameW'))(
    nAtom,
    lpBuffer,
    nSize,
  );
}