From a9cac7156871d656b33b4e918d8f520bedcb219b Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Thu, 6 Feb 2020 15:34:11 +0100 Subject: [PATCH] Rename StdAfx.h to PCH.h Signed-off-by: Simon Rozman --- build/WinStd-15.0.vcxproj.filters | 4 ++-- build/WinStd-16.0.vcxproj.filters | 4 ++-- build/WinStd.props | 6 +++--- src/Base64.cpp | 2 +- src/COM.cpp | 2 +- src/Crypt.cpp | 2 +- src/EAP.cpp | 2 +- src/ETW.cpp | 2 +- src/{StdAfx.cpp => PCH.cpp} | 2 +- src/{StdAfx.h => PCH.h} | 0 src/Sec.cpp | 2 +- src/SetupAPI.cpp | 2 +- src/WLAN.cpp | 2 +- src/Win.cpp | 2 +- src/WinSock2.cpp | 2 +- src/WinTrust.cpp | 2 +- 16 files changed, 19 insertions(+), 19 deletions(-) rename src/{StdAfx.cpp => PCH.cpp} (94%) rename src/{StdAfx.h => PCH.h} (100%) diff --git a/build/WinStd-15.0.vcxproj.filters b/build/WinStd-15.0.vcxproj.filters index 1e83773e..898934f5 100644 --- a/build/WinStd-15.0.vcxproj.filters +++ b/build/WinStd-15.0.vcxproj.filters @@ -11,7 +11,7 @@ - + Source Files @@ -49,7 +49,7 @@ - + Header Files diff --git a/build/WinStd-16.0.vcxproj.filters b/build/WinStd-16.0.vcxproj.filters index 1e83773e..898934f5 100644 --- a/build/WinStd-16.0.vcxproj.filters +++ b/build/WinStd-16.0.vcxproj.filters @@ -11,7 +11,7 @@ - + Source Files @@ -49,7 +49,7 @@ - + Header Files diff --git a/build/WinStd.props b/build/WinStd.props index b1055c1c..f41e3911 100644 --- a/build/WinStd.props +++ b/build/WinStd.props @@ -9,7 +9,7 @@ Use - StdAfx.h + PCH.h false @@ -28,7 +28,7 @@ - + Create @@ -53,6 +53,6 @@ - + \ No newline at end of file diff --git a/src/Base64.cpp b/src/Base64.cpp index 24dcc8bb..3557d2e4 100644 --- a/src/Base64.cpp +++ b/src/Base64.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" ////////////////////////////////////////////////////////////////////// diff --git a/src/COM.cpp b/src/COM.cpp index f633706e..b96681fb 100644 --- a/src/COM.cpp +++ b/src/COM.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" ////////////////////////////////////////////////////////////////////// diff --git a/src/Crypt.cpp b/src/Crypt.cpp index 602fe594..f28a3d4d 100644 --- a/src/Crypt.cpp +++ b/src/Crypt.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #pragma comment(lib, "Crypt32.lib") diff --git a/src/EAP.cpp b/src/EAP.cpp index 3f09b67c..c08547b6 100644 --- a/src/EAP.cpp +++ b/src/EAP.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #pragma comment(lib, "Eappcfg.lib") diff --git a/src/ETW.cpp b/src/ETW.cpp index 65e33ac1..42973080 100644 --- a/src/ETW.cpp +++ b/src/ETW.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #if _WIN32_WINNT >= _WIN32_WINNT_VISTA diff --git a/src/StdAfx.cpp b/src/PCH.cpp similarity index 94% rename from src/StdAfx.cpp rename to src/PCH.cpp index 056337c7..15b30441 100644 --- a/src/StdAfx.cpp +++ b/src/PCH.cpp @@ -18,4 +18,4 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" diff --git a/src/StdAfx.h b/src/PCH.h similarity index 100% rename from src/StdAfx.h rename to src/PCH.h diff --git a/src/Sec.cpp b/src/Sec.cpp index 16258505..fa15b314 100644 --- a/src/Sec.cpp +++ b/src/Sec.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #if defined(SECURITY_WIN32) || defined(SECURITY_KERNEL) || defined(SECURITY_MAC) diff --git a/src/SetupAPI.cpp b/src/SetupAPI.cpp index 802b99f5..dfd99b88 100644 --- a/src/SetupAPI.cpp +++ b/src/SetupAPI.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #pragma comment(lib, "Setupapi.lib") diff --git a/src/WLAN.cpp b/src/WLAN.cpp index 2812ac70..8b0e8bb2 100644 --- a/src/WLAN.cpp +++ b/src/WLAN.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" ////////////////////////////////////////////////////////////////////// diff --git a/src/Win.cpp b/src/Win.cpp index f40a252d..e24fbdaf 100644 --- a/src/Win.cpp +++ b/src/Win.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" ////////////////////////////////////////////////////////////////////// diff --git a/src/WinSock2.cpp b/src/WinSock2.cpp index cf54ff29..3981a3fe 100644 --- a/src/WinSock2.cpp +++ b/src/WinSock2.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #if (NTDDI_VERSION >= NTDDI_WINXPSP2) || (_WIN32_WINNT >= 0x0502) diff --git a/src/WinTrust.cpp b/src/WinTrust.cpp index 4ff4ef32..f40dc872 100644 --- a/src/WinTrust.cpp +++ b/src/WinTrust.cpp @@ -18,7 +18,7 @@ along with Setup. If not, see . */ -#include "StdAfx.h" +#include "PCH.h" #pragma comment(lib, "Wintrust.lib")