mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
16 lines
288 B
C
16 lines
288 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <windows.h>
|
||
|
|
#include <TraceLoggingActivity.h>
|
||
|
|
#include <common/telemetry/ProjectTelemetry.h>
|
||
|
|
|
||
|
|
TRACELOGGING_DECLARE_PROVIDER(g_hProvider);
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider();
|
||
|
|
static void UnregisterProvider();
|
||
|
|
static void MyEvent();
|
||
|
|
};
|