Files
PowerToys/src/runner/trace.h

13 lines
292 B
C
Raw Normal View History

#pragma once
struct GeneralSettings;
2019-12-26 17:26:11 +01:00
class Trace
{
public:
2019-12-26 17:26:11 +01:00
static void RegisterProvider();
static void UnregisterProvider();
static void EventLaunch(const std::wstring& versionNumber, bool isProcessElevated);
static void SettingsChanged(const GeneralSettings& settings);
};