/*
* Copyright (c) 2024 ETH Zürich, IT Services
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
using System;
namespace SafeExamBrowser.WindowsApi.Constants
{
///
/// See http://www.pinvoke.net/default.aspx/Enums/SPIF.html.
///
[Flags]
internal enum SPIF
{
NONE = 0x00,
///
/// Writes the new system-wide parameter setting to the user profile.
///
UPDATEINIFILE = 0x01,
///
/// Broadcasts the WM_SETTINGCHANGE message after updating the user profile.
///
SENDCHANGE = 0x02,
///
/// Performs UPDATEINIFILE and SENDCHANGE.
///
UPDATEANDCHANGE = 0x03
}
}