GetFullPathNameA method

int GetFullPathNameA(
  1. Pointer<Int8> lpFileName,
  2. int nBufferLength,
  3. Pointer<Int8> lpBuffer,
  4. Pointer<Pointer<Int8>> lpFilePart,
)

Implementation

int GetFullPathNameA(
  ffi.Pointer<ffi.Int8> lpFileName,
  int nBufferLength,
  ffi.Pointer<ffi.Int8> lpBuffer,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> lpFilePart,
) {
  return (_GetFullPathNameA ??=
      _dylib.lookupFunction<_c_GetFullPathNameA, _dart_GetFullPathNameA>(
          'GetFullPathNameA'))(
    lpFileName,
    nBufferLength,
    lpBuffer,
    lpFilePart,
  );
}