mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
18 lines
369 B
C++
18 lines
369 B
C++
#pragma once
|
|
|
|
class Trace
|
|
{
|
|
public:
|
|
enum class SettingsInitErrorCause : int32_t
|
|
{
|
|
WebViewInitAsyncError,
|
|
WebViewInitWinRTException,
|
|
FailedToDropPrivileges,
|
|
};
|
|
|
|
static void SettingsInitError(const SettingsInitErrorCause error_cause);
|
|
|
|
static void RegisterProvider() noexcept;
|
|
static void UnregisterProvider() noexcept;
|
|
};
|