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 ??= _dylib.lookupFunction<
      _c_WritePrivateProfileSectionW,
      _dart_WritePrivateProfileSectionW>('WritePrivateProfileSectionW'))(
    lpAppName,
    lpString,
    lpFileName,
  );
}