GetPrivateProfileIntA method
Implementation
int GetPrivateProfileIntA(
ffi.Pointer<ffi.Int8> lpAppName,
ffi.Pointer<ffi.Int8> lpKeyName,
int nDefault,
ffi.Pointer<ffi.Int8> lpFileName,
) {
return (_GetPrivateProfileIntA ??= _dylib.lookupFunction<
_c_GetPrivateProfileIntA,
_dart_GetPrivateProfileIntA>('GetPrivateProfileIntA'))(
lpAppName,
lpKeyName,
nDefault,
lpFileName,
);
}