mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 19:57:57 +01:00
12 lines
237 B
C
12 lines
237 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider();
|
||
|
|
static void UnregisterProvider();
|
||
|
|
|
||
|
|
// Log if the user has PowerAccent enabled or disabled
|
||
|
|
static void EnablePowerAccent(const bool enabled) noexcept;
|
||
|
|
};
|