mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 10:46:33 +02:00
15 lines
380 B
C
15 lines
380 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider() noexcept;
|
||
|
|
static void UnregisterProvider() noexcept;
|
||
|
|
|
||
|
|
// Log if the user has FindMyMouse enabled or disabled
|
||
|
|
static void EnableFindMyMouse(const bool enabled) noexcept;
|
||
|
|
|
||
|
|
// Log that the user activated the module by focusing the mouse pointer
|
||
|
|
static void MousePointerFocused() noexcept;
|
||
|
|
};
|