mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
12 lines
240 B
C
12 lines
240 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
class Trace
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
static void RegisterProvider();
|
||
|
|
static void UnregisterProvider();
|
||
|
|
|
||
|
|
// Log if the user has CmdNotFound enabled or disabled
|
||
|
|
static void EnableCmdNotFoundGpo(const bool enabled) noexcept;
|
||
|
|
};
|