mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
20 lines
341 B
C
20 lines
341 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
// System headers
|
||
|
|
#define NOMINMAX
|
||
|
|
#define WIN32_LEAN_AND_MEAN
|
||
|
|
#include <Windows.h>
|
||
|
|
#include <winternl.h>
|
||
|
|
#include <Psapi.h>
|
||
|
|
#include <shellapi.h>
|
||
|
|
|
||
|
|
// C++ standard library headers
|
||
|
|
#include <stdexcept>
|
||
|
|
#include <vector>
|
||
|
|
#include <map>
|
||
|
|
#include <iostream>
|
||
|
|
#include <string>
|
||
|
|
#include <set>
|
||
|
|
#include <algorithm>
|
||
|
|
#include <fstream>
|