From b9b62932fab3d7107c81097de974d51ff710be15 Mon Sep 17 00:00:00 2001 From: Justin Kotalik Date: Thu, 14 Jun 2018 16:27:00 -0700 Subject: [PATCH] Deleting commented out file --- .../AspNetCore/src/precomp.hxx | 160 ------------------ 1 file changed, 160 deletions(-) delete mode 100644 src/AspNetCoreModuleV2/AspNetCore/src/precomp.hxx diff --git a/src/AspNetCoreModuleV2/AspNetCore/src/precomp.hxx b/src/AspNetCoreModuleV2/AspNetCore/src/precomp.hxx deleted file mode 100644 index 64b579339f..0000000000 --- a/src/AspNetCoreModuleV2/AspNetCore/src/precomp.hxx +++ /dev/null @@ -1,160 +0,0 @@ -// // Copyright (c) .NET Foundation. All rights reserved. -// // Licensed under the MIT License. See License.txt in the project root for license information. - -// #pragma once -// #pragma warning( disable : 4091) - -// // -// // System related headers -// // -// #define _WINSOCKAPI_ - -// #define NTDDI_VERSION 0x06010000 -// #define WINVER 0x0601 -// #define _WIN32_WINNT 0x0601 - -// #include -// #include -// #include - -// //#include -// #include -// #include - -// // This should remove our issue of compiling for win7 without header files. -// // We force the Windows 8 version check logic in iiswebsocket.h to succeed even though we're compiling for Windows 7. -// // Then, we set the version defines back to Windows 7 to for the remainder of the compilation. -// #undef NTDDI_VERSION -// #undef WINVER -// #undef _WIN32_WINNT -// #define NTDDI_VERSION 0x06020000 -// #define WINVER 0x0602 -// #define _WIN32_WINNT 0x0602 -// #include -// #undef NTDDI_VERSION -// #undef WINVER -// #undef _WIN32_WINNT - -// #define NTDDI_VERSION 0x06010000 -// #define WINVER 0x0601 -// #define _WIN32_WINNT 0x0601 - -// #include -// #include - -// #include -// #include -// #include - -// // -// // Option available starting Windows 8. -// // 111 is the value in SDK on May 15, 2012. -// // -// #ifndef WINHTTP_OPTION_ASSURED_NON_BLOCKING_CALLBACKS -// #define WINHTTP_OPTION_ASSURED_NON_BLOCKING_CALLBACKS 111 -// #endif - -// #ifdef max -// #undef max -// template inline T max(T a, T b) -// { -// return a > b ? a : b; -// } -// #endif - -// #ifdef min -// #undef min -// template inline T min(T a, T b) -// { -// return a < b ? a : b; -// } -// #endif - -// inline bool IsSpace(char ch) -// { -// switch(ch) -// { -// case 32: // ' ' -// case 9: // '\t' -// case 10: // '\n' -// case 13: // '\r' -// case 11: // '\v' -// case 12: // '\f' -// return true; -// default: -// return false; -// } -// } - -// #include -// #include -// #include "stringa.h" -// #include "stringu.h" -// #include "dbgutil.h" -// #include "ahutil.h" -// #include "multisz.h" -// #include "multisza.h" -// #include "base64.h" -// #include -// #include -// #include -// #include -// #include - -// #include "environmentvariablehash.h" -// #include "hostfxr_utility.h" -// #include "utility.h" -// #include "debugutil.h" -// #include "requesthandler.h" -// #include "resources.h" -// #include "aspnetcore_msg.h" -// //#include "aspnetcore_event.h" -// #include "aspnetcore_shim_config.h" -// #include "fx_ver.h" - -// #include "appoffline.h" -// #include "filewatcher.h" -// #include "applicationinfo.h" -// #include "applicationmanager.h" -// #include "globalmodule.h" -// #include "proxymodule.h" -// #include "applicationinfo.h" -// #include "hostfxroptions.h" - -// FORCEINLINE -// DWORD -// WIN32_FROM_HRESULT( -// HRESULT hr -// ) -// { -// if ((FAILED(hr)) && -// (HRESULT_FACILITY(hr) == FACILITY_WIN32)) -// { -// return HRESULT_CODE(hr); -// } -// return hr; -// } - -// FORCEINLINE -// HRESULT -// HRESULT_FROM_GETLASTERROR() -// { -// return ( GetLastError() != NO_ERROR ) -// ? HRESULT_FROM_WIN32( GetLastError() ) -// : E_FAIL; -// } - -// extern PVOID g_pModuleId; -// extern BOOL g_fAspnetcoreRHAssemblyLoaded; -// extern BOOL g_fAspnetcoreRHLoadedError; -// extern BOOL g_fInShutdown; -// extern BOOL g_fEnableReferenceCountTracing; -// extern DWORD g_dwActiveServerProcesses; -// extern HINSTANCE g_hModule; -// extern HMODULE g_hAspnetCoreRH; -// extern SRWLOCK g_srwLock; -// extern HANDLE g_hEventLog; -// extern PCWSTR g_pwzAspnetcoreInProcessRequestHandlerName; -// extern PCWSTR g_pwzAspnetcoreOutOfProcessRequestHandlerName; -// extern PFN_ASPNETCORE_CREATE_APPLICATION g_pfnAspNetCoreCreateApplication; -// #pragma warning( error : 4091)