mirror of
https://github.com/microsoft/PowerToys
synced 2025-09-05 17:05:12 +00:00
18 lines
524 B
C
18 lines
524 B
C
![]() |
#pragma once
|
||
|
|
||
|
class Trace {
|
||
|
public:
|
||
|
static void RegisterProvider() noexcept;
|
||
|
static void UnregisterProvider() noexcept;
|
||
|
static void Invoked() noexcept;
|
||
|
static void InvokedRet(_In_ HRESULT hr) noexcept;
|
||
|
static void EnablePowerRename(_In_ bool enabled) noexcept;
|
||
|
static void UIShownRet(_In_ HRESULT hr) noexcept;
|
||
|
static void RenameOperation(
|
||
|
_In_ UINT totalItemCount,
|
||
|
_In_ UINT selectedItemCount,
|
||
|
_In_ UINT renameItemCount,
|
||
|
_In_ DWORD flags,
|
||
|
_In_ PCWSTR extensionList) noexcept;
|
||
|
};
|