mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
15 lines
230 B
C
15 lines
230 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider() noexcept;
|
||
|
|
static void UnregisterProvider() noexcept;
|
||
|
|
|
||
|
|
class AlwaysOnTop
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void Enable(bool enabled) noexcept;
|
||
|
|
};
|
||
|
|
};
|