mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
15 lines
400 B
C
15 lines
400 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider() noexcept;
|
||
|
|
static void UnregisterProvider() noexcept;
|
||
|
|
|
||
|
|
// Log if the user has MouseHighlighter enabled or disabled
|
||
|
|
static void EnableMouseHighlighter(const bool enabled) noexcept;
|
||
|
|
|
||
|
|
// Log that the user activated the module by starting a highlighting session
|
||
|
|
static void StartHighlightingSession() noexcept;
|
||
|
|
};
|