-
-
Notifications
You must be signed in to change notification settings - Fork 549
Expand file tree
/
Copy pathCoreKey.h
More file actions
30 lines (27 loc) · 1.06 KB
/
CoreKey.h
File metadata and controls
30 lines (27 loc) · 1.06 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
#pragma once
#include "CoreKey.g.h"
namespace winrt::Notepads::Core::implementation
{
struct CoreKey : CoreKeyT<CoreKey>
{
CoreKey() = default;
static hstring PackageSidStr();
static hstring AppCenterInstallIdStr();
static hstring LastChangedSettingsKeyStr();
static hstring LastChangedSettingsAppInstanceIdStr();
static hstring LaunchElevatedProcessSuccessStr();
static hstring LaunchElevatedProcessFailedStr();
static hstring ExtensionProcessLifetimeObjNameStr();
static hstring ElevatedProcessLifetimeObjNameStr();
static hstring ExtensionUnblockEventNameStr();
static hstring ElevatedWriteEventNameStr();
static hstring ElevatedRenameEventNameStr();
static hstring ExtensionUnblockPipeConnectionNameStr();
static hstring ElevatedWritePipeConnectionNameStr();
static hstring ElevatedRenamePipeConnectionNameStr();
};
}
namespace winrt::Notepads::Core::factory_implementation
{
struct CoreKey : CoreKeyT<CoreKey, implementation::CoreKey> { };
}