mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 02:09:24 +08:00
9735459552
* bootstrapper: use WinAPI progress bar window instead of toast notifications * remove obsolete msi action
30 lines
598 B
C++
30 lines
598 B
C++
#pragma once
|
|
|
|
#define NOMINMAX
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
#include <shellapi.h>
|
|
#include <commctrl.h>
|
|
|
|
#include <string_view>
|
|
#include <optional>
|
|
#include <fstream>
|
|
#include <wil/resource.h>
|
|
#include <Msi.h>
|
|
|
|
#include <unordered_set>
|
|
#include <thread>
|
|
#include <tuple>
|
|
#include <sstream>
|
|
|
|
#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 <winrt/base.h>
|
|
#include <winrt/Windows.Foundation.h>
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
|
|
#include <cxxopts.hpp>
|