diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-11-21 15:07:23 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-11-21 15:07:23 +0000 |
commit | 02ee191a693f13f868c67dd548114375af13f261 (patch) | |
tree | bbdd4880a98ff1ee89db90ff45e7b35e5cf10034 | |
parent | 84c6ccfafbfe7b320443294ac78b3033774602cf (diff) |
consistent hash generation fix - part 5
git-svn-id: http://svn.miranda-ng.org/main/trunk@2416 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
47 files changed, 346 insertions, 17 deletions
diff --git a/cleaner.bat b/cleaner.bat index 46af6c93de..a548c4be23 100644 --- a/cleaner.bat +++ b/cleaner.bat @@ -1 +1 @@ -del /F /S /Q /A RHS *.sdf *.suo *.user
\ No newline at end of file +del /F /S /Q /A RHS *.sdf *.suo *.user include\m_version.h
\ No newline at end of file diff --git a/plugins/Nudge/nudge_10.vcxproj b/plugins/Nudge/nudge_10.vcxproj index 85e9f7e947..7a36db20ec 100644 --- a/plugins/Nudge/nudge_10.vcxproj +++ b/plugins/Nudge/nudge_10.vcxproj @@ -179,12 +179,13 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\nudge.cpp" />
<ClCompile Include="src\options.cpp" />
<ClCompile Include="src\shake.cpp" />
+ <ClCompile Include="src\main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\headers.h" />
diff --git a/plugins/Nudge/nudge_10.vcxproj.filters b/plugins/Nudge/nudge_10.vcxproj.filters index 87af4fd86d..3d4bf3c005 100644 --- a/plugins/Nudge/nudge_10.vcxproj.filters +++ b/plugins/Nudge/nudge_10.vcxproj.filters @@ -24,6 +24,9 @@ <ClCompile Include="src\nudge.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\headers.h">
diff --git a/plugins/Nudge/src/stdafx.cpp b/plugins/Nudge/src/stdafx.cpp new file mode 100644 index 0000000000..881465e5d9 --- /dev/null +++ b/plugins/Nudge/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "headers.h"
\ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_10.vcxproj b/plugins/PackUpdater/PackUpdater_10.vcxproj index c371db10c5..8a47c23c12 100644 --- a/plugins/PackUpdater/PackUpdater_10.vcxproj +++ b/plugins/PackUpdater/PackUpdater_10.vcxproj @@ -178,9 +178,10 @@ <ClCompile Include="Src\Events.cpp" />
<ClCompile Include="Src\Notifications.cpp" />
<ClCompile Include="Src\Options.cpp" />
- <ClCompile Include="Src\PackUpdater.cpp">
+ <ClCompile Include="Src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="Src\PackUpdater.cpp" />
<ClCompile Include="Src\Utils.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/PackUpdater/PackUpdater_10.vcxproj.filters b/plugins/PackUpdater/PackUpdater_10.vcxproj.filters index 315c784e80..54a9c78af0 100644 --- a/plugins/PackUpdater/PackUpdater_10.vcxproj.filters +++ b/plugins/PackUpdater/PackUpdater_10.vcxproj.filters @@ -44,6 +44,9 @@ <ClCompile Include="Src\Events.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="Src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="res\menu.ico">
diff --git a/plugins/PackUpdater/Src/stdafx.cpp b/plugins/PackUpdater/Src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/PackUpdater/Src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "common.h"
\ No newline at end of file diff --git a/plugins/PasteIt/PasteIt.vcxproj b/plugins/PasteIt/PasteIt.vcxproj index 029298d392..718f70c643 100644 --- a/plugins/PasteIt/PasteIt.vcxproj +++ b/plugins/PasteIt/PasteIt.vcxproj @@ -176,12 +176,13 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="src\Options.cpp" />
- <ClCompile Include="src\PasteIt.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\PasteToWeb.cpp" />
<ClCompile Include="src\PasteToWeb1.cpp" />
<ClCompile Include="src\PasteToWeb2.cpp" />
+ <ClCompile Include="src\PasteIt.cpp" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\PasteIt.rc" />
diff --git a/plugins/PasteIt/PasteIt.vcxproj.filters b/plugins/PasteIt/PasteIt.vcxproj.filters index ff39f578c7..a830818136 100644 --- a/plugins/PasteIt/PasteIt.vcxproj.filters +++ b/plugins/PasteIt/PasteIt.vcxproj.filters @@ -56,6 +56,9 @@ <ClCompile Include="src\Options.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\version.rc">
diff --git a/plugins/PasteIt/src/stdafx.cpp b/plugins/PasteIt/src/stdafx.cpp new file mode 100644 index 0000000000..94b7fd5648 --- /dev/null +++ b/plugins/PasteIt/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "stdafx.h"
\ No newline at end of file diff --git a/plugins/PluginUpdater/PluginUpdater_10.vcxproj b/plugins/PluginUpdater/PluginUpdater_10.vcxproj index 3542a23e8b..e2781551d3 100644 --- a/plugins/PluginUpdater/PluginUpdater_10.vcxproj +++ b/plugins/PluginUpdater/PluginUpdater_10.vcxproj @@ -204,10 +204,11 @@ </ClCompile>
<ClCompile Include="src\Notifications.cpp" />
<ClCompile Include="src\Options.cpp" />
- <ClCompile Include="src\PluginUpdater.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\Scanner.cpp" />
+ <ClCompile Include="src\PluginUpdater.cpp" />
<ClCompile Include="src\unzipfile.cpp" />
<ClCompile Include="src\Utils.cpp" />
</ItemGroup>
diff --git a/plugins/PluginUpdater/PluginUpdater_10.vcxproj.filters b/plugins/PluginUpdater/PluginUpdater_10.vcxproj.filters index 595ed68903..ca82a85264 100644 --- a/plugins/PluginUpdater/PluginUpdater_10.vcxproj.filters +++ b/plugins/PluginUpdater/PluginUpdater_10.vcxproj.filters @@ -94,6 +94,9 @@ <ClCompile Include="src\Scanner.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<None Include="res\menu.ico">
diff --git a/plugins/PluginUpdater/src/stdafx.cpp b/plugins/PluginUpdater/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/PluginUpdater/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "common.h"
\ No newline at end of file diff --git a/plugins/Popup/PopUp_10.vcxproj b/plugins/Popup/PopUp_10.vcxproj index 1230fe856a..ca01474120 100644 --- a/plugins/Popup/PopUp_10.vcxproj +++ b/plugins/Popup/PopUp_10.vcxproj @@ -192,7 +192,7 @@ <ClCompile Include="src\headers.cpp" />
<ClCompile Include="src\history.cpp" />
<ClCompile Include="src\icons.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\notifications.cpp" />
@@ -208,6 +208,7 @@ <ClCompile Include="src\opt_gen.cpp" />
<ClCompile Include="src\opt_skins.cpp" />
<ClCompile Include="src\opttree.cpp" />
+ <ClCompile Include="src\main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\actions.h" />
diff --git a/plugins/Popup/PopUp_10.vcxproj.filters b/plugins/Popup/PopUp_10.vcxproj.filters index dc4eb987d8..4003792550 100644 --- a/plugins/Popup/PopUp_10.vcxproj.filters +++ b/plugins/Popup/PopUp_10.vcxproj.filters @@ -99,6 +99,9 @@ <ClCompile Include="src\opttree.cpp">
<Filter>Option Pages</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\actions.h">
diff --git a/plugins/Popup/src/stdafx.cpp b/plugins/Popup/src/stdafx.cpp new file mode 100644 index 0000000000..881465e5d9 --- /dev/null +++ b/plugins/Popup/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "headers.h"
\ No newline at end of file diff --git a/plugins/RecentContacts/RecentContacts.vcxproj b/plugins/RecentContacts/RecentContacts.vcxproj index ffce4354f1..233564f662 100644 --- a/plugins/RecentContacts/RecentContacts.vcxproj +++ b/plugins/RecentContacts/RecentContacts.vcxproj @@ -175,9 +175,10 @@ </ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\options.cpp" />
- <ClCompile Include="src\RecentContacts.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\RecentContacts.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\resource.h" />
diff --git a/plugins/RecentContacts/RecentContacts.vcxproj.filters b/plugins/RecentContacts/RecentContacts.vcxproj.filters index bb7496f749..1fa5431ddd 100644 --- a/plugins/RecentContacts/RecentContacts.vcxproj.filters +++ b/plugins/RecentContacts/RecentContacts.vcxproj.filters @@ -21,6 +21,9 @@ <ClCompile Include="src\RecentContacts.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\resource.h">
diff --git a/plugins/RecentContacts/src/stdafx.cpp b/plugins/RecentContacts/src/stdafx.cpp new file mode 100644 index 0000000000..51b54f9509 --- /dev/null +++ b/plugins/RecentContacts/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "RecentContacts.h"
\ No newline at end of file diff --git a/plugins/Scriver/scriver_10.vcxproj b/plugins/Scriver/scriver_10.vcxproj index 99fcc14dde..3dbd766bbb 100644 --- a/plugins/Scriver/scriver_10.vcxproj +++ b/plugins/Scriver/scriver_10.vcxproj @@ -201,10 +201,11 @@ <ClCompile Include="src\msgwindow.cpp" />
<ClCompile Include="src\richutil.cpp" />
<ClCompile Include="src\sendqueue.cpp" />
- <ClCompile Include="src\srmm.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\statusicon.cpp" />
+ <ClCompile Include="src\srmm.cpp" />
<ClCompile Include="src\utils.cpp" />
<ClCompile Include="src\chat\clist.cpp">
<PrecompiledHeaderFile>..\commonheaders.h</PrecompiledHeaderFile>
diff --git a/plugins/Scriver/scriver_10.vcxproj.filters b/plugins/Scriver/scriver_10.vcxproj.filters index 8421968630..67edc8cb9e 100644 --- a/plugins/Scriver/scriver_10.vcxproj.filters +++ b/plugins/Scriver/scriver_10.vcxproj.filters @@ -96,6 +96,9 @@ <ClCompile Include="src\chat\window.cpp">
<Filter>Source Files\chat</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\cmdlist.h">
diff --git a/plugins/Scriver/src/stdafx.cpp b/plugins/Scriver/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/Scriver/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "commonheaders.h"
\ No newline at end of file diff --git a/plugins/SecureIM/secureim_10.vcxproj b/plugins/SecureIM/secureim_10.vcxproj index dab509523b..4a3e72fdff 100644 --- a/plugins/SecureIM/secureim_10.vcxproj +++ b/plugins/SecureIM/secureim_10.vcxproj @@ -211,7 +211,7 @@ <ClInclude Include="src\version.h" />
</ItemGroup>
<ItemGroup>
- <ClCompile Include="src\commonheaders.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\crypt_check.cpp" />
@@ -233,6 +233,7 @@ <ClCompile Include="src\popupOptions.cpp" />
<ClCompile Include="src\rtfconv.cpp" />
<ClCompile Include="src\splitmsg.cpp" />
+ <ClCompile Include="src\commonheaders.cpp" />
<ClCompile Include="src\svcs_clist.cpp" />
<ClCompile Include="src\svcs_menu.cpp" />
<ClCompile Include="src\svcs_proto.cpp" />
diff --git a/plugins/SecureIM/secureim_10.vcxproj.filters b/plugins/SecureIM/secureim_10.vcxproj.filters index 737f043152..74d648b4d8 100644 --- a/plugins/SecureIM/secureim_10.vcxproj.filters +++ b/plugins/SecureIM/secureim_10.vcxproj.filters @@ -166,5 +166,8 @@ <ClCompile Include="src\svcs_srmm.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/plugins/SecureIM/src/stdafx.cpp b/plugins/SecureIM/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/SecureIM/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "commonheaders.h"
\ No newline at end of file diff --git a/plugins/SeenPlugin/seenplugin_10.vcxproj b/plugins/SeenPlugin/seenplugin_10.vcxproj index 988b1ca1a9..b50a5d8a05 100644 --- a/plugins/SeenPlugin/seenplugin_10.vcxproj +++ b/plugins/SeenPlugin/seenplugin_10.vcxproj @@ -184,12 +184,13 @@ <ItemGroup>
<ClCompile Include="src\file.cpp" />
<ClCompile Include="src\history.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\menu.cpp" />
<ClCompile Include="src\missed.cpp" />
<ClCompile Include="src\options.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\userinfo.cpp" />
<ClCompile Include="src\utils.cpp" />
</ItemGroup>
diff --git a/plugins/SeenPlugin/seenplugin_10.vcxproj.filters b/plugins/SeenPlugin/seenplugin_10.vcxproj.filters index 9c321cd123..cd2baa5aba 100644 --- a/plugins/SeenPlugin/seenplugin_10.vcxproj.filters +++ b/plugins/SeenPlugin/seenplugin_10.vcxproj.filters @@ -39,6 +39,9 @@ <ClCompile Include="src\utils.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\resource.h">
diff --git a/plugins/SeenPlugin/src/stdafx.cpp b/plugins/SeenPlugin/src/stdafx.cpp new file mode 100644 index 0000000000..9110c318be --- /dev/null +++ b/plugins/SeenPlugin/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "seen.h"
\ No newline at end of file diff --git a/plugins/Sessions/Sessions_10.vcxproj b/plugins/Sessions/Sessions_10.vcxproj index 05776e8eaa..24b6bf4c32 100644 --- a/plugins/Sessions/Sessions_10.vcxproj +++ b/plugins/Sessions/Sessions_10.vcxproj @@ -177,10 +177,11 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="Src\Main.cpp">
+ <ClCompile Include="Src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="Src\Options.cpp" />
+ <ClCompile Include="Src\Main.cpp" />
<ClCompile Include="Src\Utils.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/Sessions/Sessions_10.vcxproj.filters b/plugins/Sessions/Sessions_10.vcxproj.filters index 41b3127e59..8119802ffc 100644 --- a/plugins/Sessions/Sessions_10.vcxproj.filters +++ b/plugins/Sessions/Sessions_10.vcxproj.filters @@ -24,6 +24,9 @@ <ClCompile Include="Src\Utils.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="Src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\resource.h">
diff --git a/plugins/Sessions/Src/stdafx.cpp b/plugins/Sessions/Src/stdafx.cpp new file mode 100644 index 0000000000..d84905a574 --- /dev/null +++ b/plugins/Sessions/Src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "Sessions.h"
\ No newline at end of file diff --git a/plugins/SimpleAR/SimpleAR_10.vcxproj b/plugins/SimpleAR/SimpleAR_10.vcxproj index 9d16113d83..fb39f71e98 100644 --- a/plugins/SimpleAR/SimpleAR_10.vcxproj +++ b/plugins/SimpleAR/SimpleAR_10.vcxproj @@ -169,10 +169,11 @@ </ResourceCompile>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\Main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\Options.cpp" />
+ <ClCompile Include="src\Main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Common.h" />
diff --git a/plugins/SimpleAR/SimpleAR_10.vcxproj.filters b/plugins/SimpleAR/SimpleAR_10.vcxproj.filters index 9990568c06..59b6032bc6 100644 --- a/plugins/SimpleAR/SimpleAR_10.vcxproj.filters +++ b/plugins/SimpleAR/SimpleAR_10.vcxproj.filters @@ -21,6 +21,9 @@ <ClCompile Include="src\Options.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Common.h">
diff --git a/plugins/SimpleAR/src/stdafx.cpp b/plugins/SimpleAR/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/SimpleAR/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "common.h"
\ No newline at end of file diff --git a/plugins/SpellChecker/spellchecker.vcxproj b/plugins/SpellChecker/spellchecker.vcxproj index 21ab8ff955..5e9d389389 100644 --- a/plugins/SpellChecker/spellchecker.vcxproj +++ b/plugins/SpellChecker/spellchecker.vcxproj @@ -224,7 +224,7 @@ </ClCompile>
<ClCompile Include="src\options.cpp" />
<ClCompile Include="src\RichEdit.cpp" />
- <ClCompile Include="src\spellchecker.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\hunspell\affentry.cxx">
@@ -260,6 +260,7 @@ <ClCompile Include="src\hunspell\suggestmgr.cxx">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\SpellChecker.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
diff --git a/plugins/SpellChecker/spellchecker.vcxproj.filters b/plugins/SpellChecker/spellchecker.vcxproj.filters index f46574b63c..257a7bccd2 100644 --- a/plugins/SpellChecker/spellchecker.vcxproj.filters +++ b/plugins/SpellChecker/spellchecker.vcxproj.filters @@ -172,5 +172,8 @@ <ClCompile Include="src\hunspell\suggestmgr.cxx">
<Filter>Source Files\hunspell Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/plugins/SpellChecker/src/stdafx.cpp b/plugins/SpellChecker/src/stdafx.cpp new file mode 100644 index 0000000000..20208e0410 --- /dev/null +++ b/plugins/SpellChecker/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "commons.h"
\ No newline at end of file diff --git a/protocols/NewsAggregator/NewsAggregator_10.vcxproj b/protocols/NewsAggregator/NewsAggregator_10.vcxproj index d75af19cd9..78450a3189 100644 --- a/protocols/NewsAggregator/NewsAggregator_10.vcxproj +++ b/protocols/NewsAggregator/NewsAggregator_10.vcxproj @@ -185,10 +185,11 @@ <ClCompile Include="Src\Icons.cpp" />
<ClCompile Include="Src\Menus.cpp" />
<ClCompile Include="Src\Options.cpp" />
- <ClCompile Include="Src\NewsAggregator.cpp">
+ <ClCompile Include="Src\Stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="Src\Services.cpp" />
+ <ClCompile Include="Src\NewsAggregator.cpp" />
<ClCompile Include="Src\Update.cpp" />
<ClCompile Include="Src\Utils.cpp" />
</ItemGroup>
diff --git a/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters b/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters index 758967e47d..e02b0ce97e 100644 --- a/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters +++ b/protocols/NewsAggregator/NewsAggregator_10.vcxproj.filters @@ -55,5 +55,8 @@ <ClCompile Include="Src\NewsAggregator.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="Src\Stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/protocols/NewsAggregator/Src/Stdafx.cpp b/protocols/NewsAggregator/Src/Stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/protocols/NewsAggregator/Src/Stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "common.h"
\ No newline at end of file diff --git a/protocols/Omegle/omegle_10.vcxproj b/protocols/Omegle/omegle_10.vcxproj index ec48e58699..81722fe4f9 100644 --- a/protocols/Omegle/omegle_10.vcxproj +++ b/protocols/Omegle/omegle_10.vcxproj @@ -180,11 +180,12 @@ <ClCompile Include="src\dialogs.cpp" />
<ClCompile Include="src\events.cpp" />
<ClCompile Include="src\http.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\messages.cpp" />
<ClCompile Include="src\proto.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\stubs.cpp" />
<ClCompile Include="src\theme.cpp" />
<ClCompile Include="src\utils.cpp" />
diff --git a/protocols/Omegle/omegle_10.vcxproj.filters b/protocols/Omegle/omegle_10.vcxproj.filters index 3f60176dad..1dbee5e29b 100644 --- a/protocols/Omegle/omegle_10.vcxproj.filters +++ b/protocols/Omegle/omegle_10.vcxproj.filters @@ -51,6 +51,9 @@ <ClCompile Include="src\dialogs.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\client.h">
diff --git a/protocols/Omegle/src/common.h b/protocols/Omegle/src/common.h index acd913f180..c2d5be0c2e 100644 --- a/protocols/Omegle/src/common.h +++ b/protocols/Omegle/src/common.h @@ -45,7 +45,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <commctrl.h>
#include <newpluginapi.h>
-#include <m_version.h>
#include <m_system.h>
#include <m_system_cpp.h>
#include <m_chat.h>
diff --git a/protocols/Omegle/src/stdafx.cpp b/protocols/Omegle/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/protocols/Omegle/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "common.h"
\ No newline at end of file diff --git a/src/core/stdchat/src/stdafx.cpp b/src/core/stdchat/src/stdafx.cpp new file mode 100644 index 0000000000..c732eca816 --- /dev/null +++ b/src/core/stdchat/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (http://miranda-ng.org)
+
+This program 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 version 2
+of the License.
+
+This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "chat.h"
\ No newline at end of file diff --git a/src/core/stdchat/stdchat.vcxproj b/src/core/stdchat/stdchat.vcxproj index 707f108cd3..5124c57a3c 100644 --- a/src/core/stdchat/stdchat.vcxproj +++ b/src/core/stdchat/stdchat.vcxproj @@ -202,7 +202,7 @@ <ClCompile Include="src\clist.cpp" />
<ClCompile Include="src\colorchooser.cpp" />
<ClCompile Include="src\log.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\manager.cpp" />
@@ -212,6 +212,7 @@ <PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\services.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\tools.cpp" />
<ClCompile Include="src\window.cpp" />
</ItemGroup>
diff --git a/src/core/stdchat/stdchat.vcxproj.filters b/src/core/stdchat/stdchat.vcxproj.filters index f0744d306e..539873fd5b 100644 --- a/src/core/stdchat/stdchat.vcxproj.filters +++ b/src/core/stdchat/stdchat.vcxproj.filters @@ -52,6 +52,9 @@ <ClCompile Include="src\window.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\chat.h">
|