2020-08-05 17:20:50 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-09-07 16:42:15 +03:00
|
|
|
#define NOMINMAX
|
2020-08-05 17:20:50 +03:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
#include <shellapi.h>
|
2020-11-27 00:31:00 +03:00
|
|
|
#include <commctrl.h>
|
2020-08-05 17:20:50 +03:00
|
|
|
|
2021-06-14 12:55:59 +03:00
|
|
|
#include <charconv>
|
2020-08-05 17:20:50 +03:00
|
|
|
#include <string_view>
|
|
|
|
|
#include <optional>
|
|
|
|
|
#include <fstream>
|
|
|
|
|
#include <wil/resource.h>
|
2020-08-07 12:00:14 +03:00
|
|
|
#include <Msi.h>
|
|
|
|
|
|
|
|
|
|
#include <unordered_set>
|
2020-11-27 00:31:00 +03:00
|
|
|
#include <thread>
|
2020-08-26 13:46:19 +03:00
|
|
|
#include <tuple>
|
|
|
|
|
#include <sstream>
|
2020-10-14 17:36:03 +03:00
|
|
|
|
|
|
|
|
#include <spdlog/spdlog.h>
|
|
|
|
|
#include <spdlog/sinks/basic_file_sink.h>
|
|
|
|
|
#include <spdlog/sinks/null_sink.h>
|
|
|
|
|
#include <spdlog/sinks/stdout_color_sinks.h>
|
|
|
|
|
|
2021-06-14 12:55:59 +03:00
|
|
|
#pragma warning(push, 0)
|
2020-11-20 11:34:34 +03:00
|
|
|
#include <winrt/base.h>
|
|
|
|
|
#include <winrt/Windows.Foundation.h>
|
|
|
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
2021-06-14 12:55:59 +03:00
|
|
|
#pragma warning(pop)
|
2020-11-20 11:34:34 +03:00
|
|
|
|
2020-10-14 17:36:03 +03:00
|
|
|
#include <cxxopts.hpp>
|