mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02: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;
|
||
|
|
};
|