PowerToys/tools/HandlesExperiment/FileLocksmithLib/pch.h
2022-10-20 16:40:52 +02:00

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>