/*++ Copyright (c) Microsoft Corporation Licensed under the MIT license. Module Name: - pch.h Abstract: - Contains external headers to include in the precompile phase of console build process. - Avoid including internal project headers. Instead include them only in the classes that need them (helps with test project building). --*/ #pragma once // Ignore checked iterators warning from VC compiler. #define _SCL_SECURE_NO_WARNINGS // Block minwindef.h min/max macros to prevent conflict #define NOMINMAX #define WIN32_LEAN_AND_MEAN #include #define NT_SUCCESS(Status) (((NTSTATUS)(Status)) >= 0) #include #include "../inc/LibraryIncludes.h" #include #include #include #include #include