WritePrivateProfileStringW method
Implementation
int WritePrivateProfileStringW(
ffi.Pointer<ffi.Uint16> lpAppName,
ffi.Pointer<ffi.Uint16> lpKeyName,
ffi.Pointer<ffi.Uint16> lpString,
ffi.Pointer<ffi.Uint16> lpFileName,
) {
return (_WritePrivateProfileStringW ??= _dylib.lookupFunction<
_c_WritePrivateProfileStringW,
_dart_WritePrivateProfileStringW>('WritePrivateProfileStringW'))(
lpAppName,
lpKeyName,
lpString,
lpFileName,
);
}