mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-09 04:37:30 +02:00
18 lines
312 B
C
18 lines
312 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef PCH_H
|
||
|
|
#define PCH_H
|
||
|
|
|
||
|
|
#pragma warning(disable : 5205)
|
||
|
|
#include <winrt/base.h>
|
||
|
|
#pragma warning(default : 5205)
|
||
|
|
#define WIN32_LEAN_AND_MEAN
|
||
|
|
#include <Windows.h>
|
||
|
|
#include <MsiQuery.h>
|
||
|
|
#include <Shlwapi.h>
|
||
|
|
#include <Shobjidl.h>
|
||
|
|
#include <Knownfolders.h>
|
||
|
|
#include <ShlObj_core.h>
|
||
|
|
|
||
|
|
#endif //PCH_H
|