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