mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-27 11:21:27 +08:00
10 lines
149 B
C
10 lines
149 B
C
|
#pragma once
|
||
|
|
||
|
class Trace
|
||
|
{
|
||
|
public:
|
||
|
static void RegisterProvider();
|
||
|
static void UnregisterProvider();
|
||
|
static void MyEvent();
|
||
|
};
|