mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-04 20:21:18 +08:00
24 lines
450 B
C++
24 lines
450 B
C++
#pragma once
|
|
|
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
|
// Windows Header Files:
|
|
#include <windows.h>
|
|
#include <strsafe.h>
|
|
#include <msiquery.h>
|
|
#include <Msi.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>
|