GetTempPathA method
Implementation
int GetTempPathA(
int nBufferLength,
ffi.Pointer<ffi.Int8> lpBuffer,
) {
return (_GetTempPathA ??= _dylib
.lookupFunction<_c_GetTempPathA, _dart_GetTempPathA>('GetTempPathA'))(
nBufferLength,
lpBuffer,
);
}