GetCurrentDirectoryA method

int GetCurrentDirectoryA(
  1. int nBufferLength,
  2. Pointer<Int8> lpBuffer
)

Implementation

int GetCurrentDirectoryA(
  int nBufferLength,
  ffi.Pointer<ffi.Int8> lpBuffer,
) {
  return (_GetCurrentDirectoryA ??= _dylib.lookupFunction<
      _c_GetCurrentDirectoryA,
      _dart_GetCurrentDirectoryA>('GetCurrentDirectoryA'))(
    nBufferLength,
    lpBuffer,
  );
}