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