mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
10 lines
219 B
C
10 lines
219 B
C
|
#pragma once
|
||
|
|
||
|
class Trace {
|
||
|
public:
|
||
|
static void RegisterProvider();
|
||
|
static void UnregisterProvider();
|
||
|
static void EventShow();
|
||
|
static void EventHide(const __int64 duration_ms, std::vector<int> &key_pressed);
|
||
|
};
|