mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
18 lines
378 B
C++
18 lines
378 B
C++
#pragma once
|
|
|
|
#include <modules/interface/powertoy_module_interface.h>
|
|
|
|
class Trace
|
|
{
|
|
public:
|
|
static void RegisterProvider() noexcept;
|
|
static void UnregisterProvider() noexcept;
|
|
|
|
class Projects
|
|
{
|
|
public:
|
|
static void Enable(bool enabled) noexcept;
|
|
static void SettingsTelemetry(const PowertoyModuleIface::HotkeyEx& hotkey) noexcept;
|
|
};
|
|
};
|