GlobalGetAtomNameA method

int GlobalGetAtomNameA(
  1. int nAtom,
  2. Pointer<Int8> lpBuffer,
  3. int nSize
)

Implementation

int GlobalGetAtomNameA(
  int nAtom,
  ffi.Pointer<ffi.Int8> lpBuffer,
  int nSize,
) {
  return (_GlobalGetAtomNameA ??=
      _dylib.lookupFunction<_c_GlobalGetAtomNameA, _dart_GlobalGetAtomNameA>(
          'GlobalGetAtomNameA'))(
    nAtom,
    lpBuffer,
    nSize,
  );
}