Trace.h
 1  #pragma once
 2  
 3  #include "pch.h"
 4  
 5  #include <common/Telemetry/TraceBase.h>
 6  
 7  class Trace : public telemetry::TraceBase
 8  {
 9  public:
10      static void EnableFileLocksmith(_In_ bool enabled) noexcept;
11      static void Invoked() noexcept;
12      static void InvokedRet(_In_ HRESULT hr) noexcept;
13      static void QueryContextMenuError(_In_ HRESULT hr) noexcept;
14  };