mirror of
https://github.com/microsoft/PowerToys
synced 2025-08-23 10:37:43 +00:00
9 lines
134 B
C
9 lines
134 B
C
|
#pragma once
|
||
|
|
||
|
class Trace {
|
||
|
public:
|
||
|
static void RegisterProvider();
|
||
|
static void UnregisterProvider();
|
||
|
static void MyEvent();
|
||
|
};
|