mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
17 lines
281 B
C++
17 lines
281 B
C++
#pragma once
|
|
|
|
// System headers
|
|
#define NOMINMAX
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <Windows.h>
|
|
#include <winternl.h>
|
|
|
|
// C++ standard library headers
|
|
#include <stdexcept>
|
|
#include <vector>
|
|
#include <map>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <set>
|
|
#include <algorithm>
|