mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-20 06:47:56 +08:00
14 lines
434 B
C
14 lines
434 B
C
|
#pragma once
|
||
|
|
||
|
class Trace
|
||
|
{
|
||
|
public:
|
||
|
static void RegisterProvider();
|
||
|
static void UnregisterProvider();
|
||
|
static void SetConfigInvalidJSON(const char* exceptionMessage);
|
||
|
static void InitSetErrorLoadingFile(const char* exceptionMessage);
|
||
|
static void PreviewHandlerEnabled(bool enabled, LPCWSTR previewHandlerName);
|
||
|
static void PowerPreviewSettingsUpDateFailed(LPCWSTR SettingsName);
|
||
|
static void Destroyed();
|
||
|
};
|