WritePrivateProfileSectionW method

int WritePrivateProfileSectionW(
  1. Pointer<Uint16> lpAppName,
  2. Pointer<Uint16> lpString,
  3. Pointer<Uint16> lpFileName
)

Implementation

int WritePrivateProfileSectionW(
  ffi.Pointer<ffi.Uint16> lpAppName,
  ffi.Pointer<ffi.Uint16> lpString,
  ffi.Pointer<ffi.Uint16> lpFileName,
) {
  return _WritePrivateProfileSectionW(
    lpAppName,
    lpString,
    lpFileName,
  );
}