mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
15 lines
332 B
C
15 lines
332 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider();
|
||
|
|
static void UnregisterProvider();
|
||
|
|
|
||
|
|
// Log if the user has enabled or disabled the app
|
||
|
|
static void EnableRegistryPreview(const bool enabled) noexcept;
|
||
|
|
|
||
|
|
// Log that the user tried to activate the app
|
||
|
|
static void ActivateEditor() noexcept;
|
||
|
|
};
|