GetPrivateProfileIntW method
Implementation
int GetPrivateProfileIntW(
ffi.Pointer<ffi.Uint16> lpAppName,
ffi.Pointer<ffi.Uint16> lpKeyName,
int nDefault,
ffi.Pointer<ffi.Uint16> lpFileName,
) {
return (_GetPrivateProfileIntW ??= _dylib.lookupFunction<
_c_GetPrivateProfileIntW,
_dart_GetPrivateProfileIntW>('GetPrivateProfileIntW'))(
lpAppName,
lpKeyName,
nDefault,
lpFileName,
);
}