microsoft--powertoys
79031da543
Spell checking / Check Spelling (push) Has been cancelled
Spell checking / Update PR (push) Has been cancelled
Publish Dev Docs Website / build (push) Failing after 1s
Publish Dev Docs Website / deploy (push) Has been skipped
Spell checking / Report (Push) (push) Has been cancelled
Spell checking / Report (PR) (push) Has been cancelled
38 行
808 B
C++
38 行
808 B
C++
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
#define DPSAPI_VERSION 1
|
|
// Windows Header Files:
|
|
#include <windows.h>
|
|
#include <newdev.h>
|
|
#include <strsafe.h>
|
|
#include <msiquery.h>
|
|
#include <Msi.h>
|
|
#include <shlobj_core.h>
|
|
|
|
// WiX Header Files:
|
|
#include <wcautil.h>
|
|
|
|
#define SECURITY_WIN32
|
|
#include <Security.h>
|
|
#include <Lmcons.h>
|
|
|
|
#include <comdef.h>
|
|
#include <taskschd.h>
|
|
#include <iostream>
|
|
#include <strutil.h>
|
|
#include <string>
|
|
#include <optional>
|
|
#include <pathcch.h>
|
|
|
|
#include <psapi.h>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <mutex>
|
|
|
|
#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>
|