mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-19 22:37:58 +08:00
7f1a854769
* Update logic of settings for File Explorer preview * Updated logic and added Unit tests * Fix compiler warning for powerpreview project * Update enable logic * Update Disable logic * Updated telemetry events
15 lines
567 B
C++
15 lines
567 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 EnabledPowerPreview(bool enabled);
|
|
static void PowerPreviewSettingsUpdated(LPCWSTR SettingsName, bool oldState, bool newState, bool globalState);
|
|
static void PowerPreviewSettingsUpdateFailed(LPCWSTR SettingsName, bool oldState, bool newState, bool globalState);
|
|
static void Destroyed();
|
|
};
|