/*++ Copyright (c) Microsoft Corporation Licensed under the MIT license. --*/ #pragma once // Block minwindef.h min/max macros to prevent conflict #define NOMINMAX #define WIN32_LEAN_AND_MEAN #define NOMCX #define NOHELP #define NOCOMM #include #include // Manually include til after we include Windows.Foundation to give it winrt superpowers #define BLOCK_TIL // This includes support libraries from the CRT, STL, WIL, and GSL #include "LibraryIncludes.h" // This is inexplicable, but for whatever reason, cppwinrt conflicts with the // SDK definition of this function, so the only fix is to undef it. // from WinBase.h // Windows::UI::Xaml::Media::Animation::IStoryboard::GetCurrentTime #ifdef GetCurrentTime #undef GetCurrentTime #endif #include #include #include #include #include "consoletaeftemplates.hpp" #include #include #include #include // Manually include til after we include Windows.Foundation to give it winrt superpowers #include "til.h" // Common includes for most tests: #include "../../inc/argb.h" #include "../../inc/conattrs.hpp" #include "../../types/inc/utils.hpp" #include "../../inc/DefaultSettings.h"