mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
- include nonstd::expected library for modern error-handling - add localized strings - refactor updating.cpp
21 lines
380 B
C
21 lines
380 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>
|
|
#include <shellapi.h>
|
|
#include <filesystem>
|
|
#include <expected.hpp>
|
|
|
|
#endif //PCH_H
|