2020-08-05 22:20:50 +08:00
|
|
|
#pragma once
|
|
|
|
|
2020-09-07 21:42:15 +08:00
|
|
|
#define NOMINMAX
|
2020-08-05 22:20:50 +08:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#include <Windows.h>
|
|
|
|
#include <shellapi.h>
|
|
|
|
|
|
|
|
#include <string_view>
|
|
|
|
#include <optional>
|
|
|
|
#include <fstream>
|
|
|
|
#include <wil/resource.h>
|
2020-08-07 17:00:14 +08:00
|
|
|
#include <Msi.h>
|
|
|
|
|
|
|
|
#include <unordered_set>
|
2020-08-26 18:46:19 +08:00
|
|
|
#include <tuple>
|
|
|
|
#include <sstream>
|
2020-10-14 22:36:03 +08: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>
|
|
|
|
|
|
|
|
#include <cxxopts.hpp>
|