mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-22 08:02:24 +08:00
12 lines
327 B
C
12 lines
327 B
C
|
#pragma once
|
||
|
|
||
|
class Trace
|
||
|
{
|
||
|
public:
|
||
|
static void RegisterProvider() noexcept;
|
||
|
static void UnregisterProvider() noexcept;
|
||
|
|
||
|
// Log if the user has KBM enabled or disabled - Can also be used to see how often users have to restart the keyboard hook
|
||
|
static void EnableKeyboardManager(const bool enabled) noexcept;
|
||
|
};
|