From 302c7c9adb06312779ca9a9e5b684cc4a5aeb73f Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Mon, 10 Feb 2020 14:09:21 +0100 Subject: [PATCH] Rename stdafx.h to pch.h Signed-off-by: Simon Rozman --- build/MSICALib-10.0.vcxproj.filters | 4 +-- build/MSICALib-15.0.vcxproj.filters | 4 +-- build/MSICALib-16.0.vcxproj.filters | 4 +-- build/MSICALib.props | 40 ++++++++++++++--------------- src/MSICALib.cpp | 2 +- src/OpCert.cpp | 2 +- src/OpFile.cpp | 2 +- src/OpReg.cpp | 2 +- src/OpSvc.cpp | 2 +- src/OpTS.cpp | 2 +- src/OpWLAN.cpp | 2 +- src/{stdafx.cpp => pch.cpp} | 2 +- src/{stdafx.h => pch.h} | 0 13 files changed, 34 insertions(+), 34 deletions(-) rename src/{stdafx.cpp => pch.cpp} (94%) rename src/{stdafx.h => pch.h} (100%) diff --git a/build/MSICALib-10.0.vcxproj.filters b/build/MSICALib-10.0.vcxproj.filters index 269a1c3..27f8e2b 100644 --- a/build/MSICALib-10.0.vcxproj.filters +++ b/build/MSICALib-10.0.vcxproj.filters @@ -20,7 +20,7 @@ Source Files - + Source Files @@ -40,7 +40,7 @@ Header Files - + Header Files diff --git a/build/MSICALib-15.0.vcxproj.filters b/build/MSICALib-15.0.vcxproj.filters index 86c100c..fa60c8d 100644 --- a/build/MSICALib-15.0.vcxproj.filters +++ b/build/MSICALib-15.0.vcxproj.filters @@ -20,7 +20,7 @@ Source Files - + Source Files @@ -40,7 +40,7 @@ Header Files - + Header Files diff --git a/build/MSICALib-16.0.vcxproj.filters b/build/MSICALib-16.0.vcxproj.filters index 86c100c..fa60c8d 100644 --- a/build/MSICALib-16.0.vcxproj.filters +++ b/build/MSICALib-16.0.vcxproj.filters @@ -20,7 +20,7 @@ Source Files - + Source Files @@ -40,7 +40,7 @@ Header Files - + Header Files diff --git a/build/MSICALib.props b/build/MSICALib.props index e415d28..c44db75 100644 --- a/build/MSICALib.props +++ b/build/MSICALib.props @@ -1,21 +1,21 @@  - @@ -38,7 +38,7 @@ ..\include;..\..\WinStd\include;%(AdditionalIncludeDirectories) Use - stdafx.h + pch.h false @@ -52,12 +52,12 @@ - + Create - + \ No newline at end of file diff --git a/src/MSICALib.cpp b/src/MSICALib.cpp index 328e60d..31ea54a 100644 --- a/src/MSICALib.cpp +++ b/src/MSICALib.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" #pragma comment(lib, "msi.lib") #pragma comment(lib, "shlwapi.lib") diff --git a/src/OpCert.cpp b/src/OpCert.cpp index 2307d80..57cebaa 100644 --- a/src/OpCert.cpp +++ b/src/OpCert.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" #pragma comment(lib, "crypt32.lib") diff --git a/src/OpFile.cpp b/src/OpFile.cpp index b0dc347..d4358ca 100644 --- a/src/OpFile.cpp +++ b/src/OpFile.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" namespace MSICA { diff --git a/src/OpReg.cpp b/src/OpReg.cpp index fd1412e..5a9823f 100644 --- a/src/OpReg.cpp +++ b/src/OpReg.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" namespace MSICA { diff --git a/src/OpSvc.cpp b/src/OpSvc.cpp index bc490e2..54f3ca6 100644 --- a/src/OpSvc.cpp +++ b/src/OpSvc.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" #pragma comment(lib, "advapi32.lib") diff --git a/src/OpTS.cpp b/src/OpTS.cpp index af96907..a33f547 100644 --- a/src/OpTS.cpp +++ b/src/OpTS.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" #pragma comment(lib, "mstask.lib") #pragma comment(lib, "taskschd.lib") diff --git a/src/OpWLAN.cpp b/src/OpWLAN.cpp index 3bb3db5..47447ca 100644 --- a/src/OpWLAN.cpp +++ b/src/OpWLAN.cpp @@ -17,7 +17,7 @@ along with MSICA. If not, see . */ -#include "stdafx.h" +#include "pch.h" namespace MSICA { diff --git a/src/stdafx.cpp b/src/pch.cpp similarity index 94% rename from src/stdafx.cpp rename to src/pch.cpp index 6b139d9..2001179 100644 --- a/src/stdafx.cpp +++ b/src/pch.cpp @@ -17,4 +17,4 @@ along with MSICA. 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