PowerToys/tools/HandlesExperiment/FileLocksmithLib/pch.h

16 lines
260 B
C
Raw Normal View History

2022-09-14 00:20:07 +08:00
#pragma once
2022-09-13 17:30:19 +08:00
// 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>
2022-09-13 19:45:07 +08:00
#include <iostream>
#include <string>
#include <set>