2020-04-21 10:30:12 +03:00
|
|
|
#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>
|
2020-07-27 19:53:29 +03:00
|
|
|
#include <shellapi.h>
|
|
|
|
|
#include <filesystem>
|
2020-11-18 17:31:15 +03:00
|
|
|
#include <expected.hpp>
|
2020-04-21 10:30:12 +03:00
|
|
|
|
2020-11-27 00:31:00 +03:00
|
|
|
#include <optional>
|
|
|
|
|
|
2020-04-21 10:30:12 +03:00
|
|
|
#endif //PCH_H
|