WritePrivateProfileStringW method

int WritePrivateProfileStringW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpKeyName,
  3. Pointer<Uint16> lpString,
  4. Pointer<Uint16> lpFileName,
)

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(
    lpAppName,
    lpKeyName,
    lpString,
    lpFileName,
  );
}