mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
11 lines
246 B
C
11 lines
246 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <common/Telemetry/TraceBase.h>
|
||
|
|
|
||
|
|
class Trace : public telemetry::TraceBase
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider();
|
||
|
|
static void UnregisterProvider();
|
||
|
|
static void EnableCursorWrap(const bool enabled) noexcept;
|
||
|
|
};
|