mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02: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);
|
||
|
|
};
|