mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-20 23:07:55 +08:00
24 lines
537 B
C
24 lines
537 B
C
|
#pragma once
|
||
|
#include "resource.h"
|
||
|
|
||
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||
|
#include <Unknwn.h>
|
||
|
#include <winrt/base.h>
|
||
|
#include <windows.h>
|
||
|
#include <windowsx.h>
|
||
|
#include <dwmapi.h>
|
||
|
#include <ProjectTelemetry.h>
|
||
|
#include <shellapi.h>
|
||
|
#include <strsafe.h>
|
||
|
#include <TraceLoggingActivity.h>
|
||
|
#include <wil\resource.h>
|
||
|
#include <wil\result.h>
|
||
|
#include <windows.foundation.h>
|
||
|
#include <psapi.h>
|
||
|
|
||
|
#pragma comment(lib, "windowsapp")
|
||
|
|
||
|
namespace winrt
|
||
|
{
|
||
|
using namespace ::winrt;
|
||
|
}
|