2019-09-04 16:26:26 +00:00
|
|
|
#pragma once
|
|
|
|
|
2020-04-21 17:52:28 +00:00
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
2020-05-14 16:20:06 +00:00
|
|
|
#define DPSAPI_VERSION 1
|
2019-09-04 16:26:26 +00:00
|
|
|
// Windows Header Files:
|
|
|
|
#include <windows.h>
|
2021-06-29 10:06:12 +00:00
|
|
|
#include <newdev.h>
|
2019-09-04 16:26:26 +00:00
|
|
|
#include <strsafe.h>
|
|
|
|
#include <msiquery.h>
|
2020-04-21 17:52:28 +00:00
|
|
|
#include <Msi.h>
|
2019-09-04 16:26:26 +00:00
|
|
|
|
|
|
|
// WiX Header Files:
|
|
|
|
#include <wcautil.h>
|
|
|
|
|
2020-04-21 17:52:28 +00:00
|
|
|
#define SECURITY_WIN32
|
|
|
|
#include <Security.h>
|
|
|
|
#include <Lmcons.h>
|
2019-09-04 16:26:26 +00:00
|
|
|
|
2020-04-21 17:52:28 +00:00
|
|
|
#include <comdef.h>
|
|
|
|
#include <taskschd.h>
|
|
|
|
#include <iostream>
|
|
|
|
#include <strutil.h>
|
|
|
|
#include <string>
|
|
|
|
#include <optional>
|
|
|
|
#include <pathcch.h>
|
2020-05-14 16:20:06 +00:00
|
|
|
|
|
|
|
#include <psapi.h>
|
|
|
|
#include <vector>
|
|
|
|
#include <array>
|
2021-11-09 19:48:07 +00:00
|
|
|
#include <mutex>
|
2021-09-21 12:15:59 +00:00
|
|
|
|
|
|
|
#include <winrt/Windows.Foundation.h>
|
|
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
|
|
#include <winrt/Windows.ApplicationModel.h>
|
|
|
|
#include <winrt/Windows.Management.Deployment.h>
|
|
|
|
#include <winrt/Windows.System.h>
|