forked from microsoft/winget-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettingsFlow.h
More file actions
43 lines (37 loc) · 1.21 KB
/
Copy pathSettingsFlow.h
File metadata and controls
43 lines (37 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#pragma once
#include "ExecutionContext.h"
namespace AppInstaller::CLI::Workflow
{
// Enables an admin setting.
// Required Args: AdminSettingEnable
// Inputs: None
// Outputs: None
void EnableAdminSetting(Execution::Context& context);
// Disables an admin setting.
// Required Args: AdminSettingDisable
// Inputs: None
// Outputs: None
void DisableAdminSetting(Execution::Context& context);
// Sets the value of an admin setting.
// Required Args: SettingName, SettingValue
// Inputs: None
// Outputs: None
void SetAdminSetting(Execution::Context& context);
// Resets an admin setting to the default.
// Required Args: SettingName
// Inputs: None
// Outputs: None
void ResetAdminSetting(Execution::Context& context);
// Opens the user settings.
// Required Args: None
// Inputs: None
// Outputs: None
void OpenUserSetting(Execution::Context& context);
// Lists the state of settings.
// Required Args: None
// Inputs: None
// Outputs: None
void ExportSettings(Execution::Context& context);
}