Rename stdafx.h to pch.h

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2020-02-10 14:09:21 +01:00
parent 76f3bba849
commit 302c7c9adb
13 changed files with 34 additions and 34 deletions

View File

@ -20,7 +20,7 @@
<ClCompile Include="..\src\OpTS.cpp"> <ClCompile Include="..\src\OpTS.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\src\stdafx.cpp"> <ClCompile Include="..\src\pch.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\src\OpReg.cpp"> <ClCompile Include="..\src\OpReg.cpp">
@ -40,7 +40,7 @@
<ClInclude Include="..\include\MSICALib.h"> <ClInclude Include="..\include\MSICALib.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\src\stdafx.h"> <ClInclude Include="..\src\pch.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
</ItemGroup> </ItemGroup>

View File

@ -20,7 +20,7 @@
<ClCompile Include="..\src\OpTS.cpp"> <ClCompile Include="..\src\OpTS.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\src\stdafx.cpp"> <ClCompile Include="..\src\pch.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\src\OpReg.cpp"> <ClCompile Include="..\src\OpReg.cpp">
@ -40,7 +40,7 @@
<ClInclude Include="..\include\MSICALib.h"> <ClInclude Include="..\include\MSICALib.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\src\stdafx.h"> <ClInclude Include="..\src\pch.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
</ItemGroup> </ItemGroup>

View File

@ -20,7 +20,7 @@
<ClCompile Include="..\src\OpTS.cpp"> <ClCompile Include="..\src\OpTS.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\src\stdafx.cpp"> <ClCompile Include="..\src\pch.cpp">
<Filter>Source Files</Filter> <Filter>Source Files</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="..\src\OpReg.cpp"> <ClCompile Include="..\src\OpReg.cpp">
@ -40,7 +40,7 @@
<ClInclude Include="..\include\MSICALib.h"> <ClInclude Include="..\include\MSICALib.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="..\src\stdafx.h"> <ClInclude Include="..\src\pch.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
</ItemGroup> </ItemGroup>

View File

@ -1,21 +1,21 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- <!--
Copyright 1991-2017 Amebis Copyright 1991-2017 Amebis
This file is part of MSICA. This file is part of MSICA.
MSICA is free software: you can redistribute it and/or modify MSICA is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or the Free Software Foundation, either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
MSICA is distributed in the hope that it will be useful, MSICA is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
--> -->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets"> <ImportGroup Label="PropertySheets">
@ -38,7 +38,7 @@
<ClCompile> <ClCompile>
<AdditionalIncludeDirectories>..\include;..\..\WinStd\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>..\include;..\..\WinStd\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PrecompiledHeader>Use</PrecompiledHeader> <PrecompiledHeader>Use</PrecompiledHeader>
<PrecompiledHeaderFile>stdafx.h</PrecompiledHeaderFile> <PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile>
</ClCompile> </ClCompile>
<Lib> <Lib>
<LinkTimeCodeGeneration>false</LinkTimeCodeGeneration> <LinkTimeCodeGeneration>false</LinkTimeCodeGeneration>
@ -52,12 +52,12 @@
<ClCompile Include="..\src\OpTS.cpp" /> <ClCompile Include="..\src\OpTS.cpp" />
<ClCompile Include="..\src\OpReg.cpp" /> <ClCompile Include="..\src\OpReg.cpp" />
<ClCompile Include="..\src\OpWLAN.cpp" /> <ClCompile Include="..\src\OpWLAN.cpp" />
<ClCompile Include="..\src\stdafx.cpp"> <ClCompile Include="..\src\pch.cpp">
<PrecompiledHeader>Create</PrecompiledHeader> <PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile> </ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="..\include\MSICALib.h" /> <ClInclude Include="..\include\MSICALib.h" />
<ClInclude Include="..\src\stdafx.h" /> <ClInclude Include="..\src\pch.h" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
#pragma comment(lib, "msi.lib") #pragma comment(lib, "msi.lib")
#pragma comment(lib, "shlwapi.lib") #pragma comment(lib, "shlwapi.lib")

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
#pragma comment(lib, "crypt32.lib") #pragma comment(lib, "crypt32.lib")

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
namespace MSICA { namespace MSICA {

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
namespace MSICA { namespace MSICA {

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
#pragma comment(lib, "advapi32.lib") #pragma comment(lib, "advapi32.lib")

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
#pragma comment(lib, "mstask.lib") #pragma comment(lib, "mstask.lib")
#pragma comment(lib, "taskschd.lib") #pragma comment(lib, "taskschd.lib")

View File

@ -17,7 +17,7 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"
namespace MSICA { namespace MSICA {

View File

@ -17,4 +17,4 @@
along with MSICA. If not, see <http://www.gnu.org/licenses/>. along with MSICA. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "stdafx.h" #include "pch.h"