mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
15 lines
312 B
C
15 lines
312 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||
|
|
#include <Unknwn.h>
|
||
|
|
#include <winrt/base.h>
|
||
|
|
#include <ProjectTelemetry.h>
|
||
|
|
#include <TraceLoggingActivity.h>
|
||
|
|
#include <wil\common.h>
|
||
|
|
#include <wil\result.h>
|
||
|
|
|
||
|
|
|
||
|
|
namespace winrt
|
||
|
|
{
|
||
|
|
using namespace ::winrt;
|
||
|
|
}
|