mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
15 lines
369 B
C
15 lines
369 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "pch.h"
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider() noexcept;
|
||
|
|
static void UnregisterProvider() noexcept;
|
||
|
|
static void EnableFileLocksmith(_In_ bool enabled) noexcept;
|
||
|
|
static void Invoked() noexcept;
|
||
|
|
static void InvokedRet(_In_ HRESULT hr) noexcept;
|
||
|
|
static void QueryContextMenuError(_In_ HRESULT hr) noexcept;
|
||
|
|
};
|