GetAtomNameA method

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

Implementation

int GetAtomNameA(
  int nAtom,
  ffi.Pointer<ffi.Int8> lpBuffer,
  int nSize,
) {
  return (_GetAtomNameA ??= _dylib
      .lookupFunction<_c_GetAtomNameA, _dart_GetAtomNameA>('GetAtomNameA'))(
    nAtom,
    lpBuffer,
    nSize,
  );
}