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

View File

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

View File

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

View File

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

View File

@ -17,7 +17,7 @@
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, "shlwapi.lib")

View File

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

View File

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

View File

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

View File

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

View File

@ -17,7 +17,7 @@
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, "taskschd.lib")

View File

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

View File

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