mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-11-24 04:12:32 +08:00
7e91121a33
* Add PowerToy project template to the PowerToys solution * Update PowerToy project template and create a separate solution for it
10 lines
140 B
C++
10 lines
140 B
C++
#pragma once
|
|
|
|
class Trace
|
|
{
|
|
public:
|
|
static void RegisterProvider();
|
|
static void UnregisterProvider();
|
|
static void MyEvent();
|
|
};
|