summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-11-21 11:26:23 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-11-21 11:26:23 +0000
commit52245921c5eb8d6e77d2f18ac692e33622af3915 (patch)
treeb215a9aead7c63dd20dbbd16eca9e50650b91208 /protocols
parent1a1264bf4fb2ebd9dbf445662b9e8a4e38081e05 (diff)
consistent hash generation fix - part 4
git-svn-id: http://svn.miranda-ng.org/main/trunk@2412 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r--protocols/FacebookRM/facebook_10.vcxproj3
-rw-r--r--protocols/FacebookRM/facebook_10.vcxproj.filters3
-rw-r--r--protocols/FacebookRM/src/stdafx.cpp18
-rw-r--r--protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj3
-rw-r--r--protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj.filters3
-rw-r--r--protocols/Gadu-Gadu/src/stdafx.cpp18
-rw-r--r--protocols/IRCG/IRC_10.vcxproj3
-rw-r--r--protocols/IRCG/IRC_10.vcxproj.filters3
-rw-r--r--protocols/IRCG/src/stdafx.cpp18
-rw-r--r--protocols/IcqOscarJ/icqoscar8_10.vcxproj3
-rw-r--r--protocols/IcqOscarJ/icqoscar8_10.vcxproj.filters1
-rw-r--r--protocols/IcqOscarJ/src/stdafx.cpp18
-rw-r--r--protocols/JabberG/jabber_10.vcxproj3
-rw-r--r--protocols/JabberG/jabber_10.vcxproj.filters3
-rw-r--r--protocols/JabberG/src/stdafx.cpp18
-rw-r--r--protocols/MRA/Mra.vcxproj3
-rw-r--r--protocols/MRA/Mra.vcxproj.filters3
-rw-r--r--protocols/MRA/src/stdafx.cpp18
-rw-r--r--protocols/MSN/msn_10.vcxproj3
-rw-r--r--protocols/MSN/msn_10.vcxproj.filters3
-rw-r--r--protocols/MSN/src/stdafx.cpp18
21 files changed, 159 insertions, 7 deletions
diff --git a/protocols/FacebookRM/facebook_10.vcxproj b/protocols/FacebookRM/facebook_10.vcxproj
index 29c6d06952..042a5b54da 100644
--- a/protocols/FacebookRM/facebook_10.vcxproj
+++ b/protocols/FacebookRM/facebook_10.vcxproj
@@ -183,12 +183,13 @@
<ClCompile Include="src\events.cpp" />
<ClCompile Include="src\http.cpp" />
<ClCompile Include="src\json.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\messages.cpp" />
<ClCompile Include="src\process.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/FacebookRM/facebook_10.vcxproj.filters b/protocols/FacebookRM/facebook_10.vcxproj.filters
index ab557b3fa2..326a245303 100644
--- a/protocols/FacebookRM/facebook_10.vcxproj.filters
+++ b/protocols/FacebookRM/facebook_10.vcxproj.filters
@@ -66,6 +66,9 @@
<ClCompile Include="src\chat.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\JSON_CAJUN\elements.h">
diff --git a/protocols/FacebookRM/src/stdafx.cpp b/protocols/FacebookRM/src/stdafx.cpp
new file mode 100644
index 0000000000..7a516adf58
--- /dev/null
+++ b/protocols/FacebookRM/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/Gadu-Gadu/Gadu-Gadu_10.vcxproj b/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj
index 9e993fbe79..d6c0bfbee8 100644
--- a/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj
+++ b/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj
@@ -198,7 +198,7 @@
<ClCompile Include="src\dialogs.cpp" />
<ClCompile Include="src\dynstuff.cpp" />
<ClCompile Include="src\filetransfer.cpp" />
- <ClCompile Include="src\gg.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\gg_proto.cpp" />
@@ -213,6 +213,7 @@
<ClCompile Include="src\popups.cpp" />
<ClCompile Include="src\services.cpp" />
<ClCompile Include="src\sessions.cpp" />
+ <ClCompile Include="src\gg.cpp" />
<ClCompile Include="src\token.cpp" />
<ClCompile Include="src\userutils.cpp" />
<ClCompile Include="src\libgadu\common.c">
diff --git a/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj.filters b/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj.filters
index 227066cb83..2d86916e71 100644
--- a/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj.filters
+++ b/protocols/Gadu-Gadu/Gadu-Gadu_10.vcxproj.filters
@@ -114,6 +114,9 @@
<ClCompile Include="src\gg_proto.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\libgadu\compat.h">
diff --git a/protocols/Gadu-Gadu/src/stdafx.cpp b/protocols/Gadu-Gadu/src/stdafx.cpp
new file mode 100644
index 0000000000..72d920cdfb
--- /dev/null
+++ b/protocols/Gadu-Gadu/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 "gg.h" \ No newline at end of file
diff --git a/protocols/IRCG/IRC_10.vcxproj b/protocols/IRCG/IRC_10.vcxproj
index b9ab8cf992..ab4f3ea0f0 100644
--- a/protocols/IRCG/IRC_10.vcxproj
+++ b/protocols/IRCG/IRC_10.vcxproj
@@ -198,7 +198,7 @@
<ClCompile Include="src\input.cpp" />
<ClCompile Include="src\irclib.cpp" />
<ClCompile Include="src\ircproto.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\MString.cpp" />
@@ -206,6 +206,7 @@
<ClCompile Include="src\output.cpp" />
<ClCompile Include="src\scripting.cpp" />
<ClCompile Include="src\services.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\tools.cpp" />
<ClCompile Include="src\ui_utils.cpp" />
<ClCompile Include="src\userinfo.cpp" />
diff --git a/protocols/IRCG/IRC_10.vcxproj.filters b/protocols/IRCG/IRC_10.vcxproj.filters
index fcd43c9931..3fe7a31e89 100644
--- a/protocols/IRCG/IRC_10.vcxproj.filters
+++ b/protocols/IRCG/IRC_10.vcxproj.filters
@@ -64,6 +64,9 @@
<ClCompile Include="src\windows.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commandmonitor.h">
diff --git a/protocols/IRCG/src/stdafx.cpp b/protocols/IRCG/src/stdafx.cpp
new file mode 100644
index 0000000000..4f24336022
--- /dev/null
+++ b/protocols/IRCG/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 "irc.h" \ No newline at end of file
diff --git a/protocols/IcqOscarJ/icqoscar8_10.vcxproj b/protocols/IcqOscarJ/icqoscar8_10.vcxproj
index 21e715acbb..ee61603f7b 100644
--- a/protocols/IcqOscarJ/icqoscar8_10.vcxproj
+++ b/protocols/IcqOscarJ/icqoscar8_10.vcxproj
@@ -259,6 +259,7 @@
<ClCompile Include="src\icqosc_svcs.cpp" />
<ClCompile Include="src\init.cpp" />
<ClCompile Include="src\log.cpp" />
+ <ClCompile Include="src\icqoscar.cpp" />
<ClCompile Include="src\UI\askauthentication.cpp" />
<ClCompile Include="src\icq_firstrun.cpp" />
<ClCompile Include="src\icq_opts.cpp" />
@@ -287,7 +288,7 @@
<ClCompile Include="src\icq_server.cpp" />
<ClCompile Include="src\icq_servlist.cpp" />
<ClCompile Include="src\icq_xtraz.cpp" />
- <ClCompile Include="src\icqoscar.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\stdpackets.cpp" />
diff --git a/protocols/IcqOscarJ/icqoscar8_10.vcxproj.filters b/protocols/IcqOscarJ/icqoscar8_10.vcxproj.filters
index 8d5fae987d..37a312cb95 100644
--- a/protocols/IcqOscarJ/icqoscar8_10.vcxproj.filters
+++ b/protocols/IcqOscarJ/icqoscar8_10.vcxproj.filters
@@ -265,5 +265,6 @@
<ClCompile Include="src\icq_menu.cpp">
<Filter>Miranda Bits</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp" />
</ItemGroup>
</Project> \ No newline at end of file
diff --git a/protocols/IcqOscarJ/src/stdafx.cpp b/protocols/IcqOscarJ/src/stdafx.cpp
new file mode 100644
index 0000000000..a2b5f7f48b
--- /dev/null
+++ b/protocols/IcqOscarJ/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 "icqoscar.h" \ No newline at end of file
diff --git a/protocols/JabberG/jabber_10.vcxproj b/protocols/JabberG/jabber_10.vcxproj
index 35c897cac7..5fcf10234e 100644
--- a/protocols/JabberG/jabber_10.vcxproj
+++ b/protocols/JabberG/jabber_10.vcxproj
@@ -199,7 +199,7 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\jabber.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\jabber_adhoc.cpp" />
@@ -253,6 +253,7 @@
<ClCompile Include="src\jabber_xstatus.cpp" />
<ClCompile Include="src\jabber_zstream.cpp" />
<ClCompile Include="src\MString.cpp" />
+ <ClCompile Include="src\jabber.cpp" />
<ClCompile Include="src\ui_utils.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/protocols/JabberG/jabber_10.vcxproj.filters b/protocols/JabberG/jabber_10.vcxproj.filters
index a560a62fc1..9b905f80ff 100644
--- a/protocols/JabberG/jabber_10.vcxproj.filters
+++ b/protocols/JabberG/jabber_10.vcxproj.filters
@@ -174,6 +174,9 @@
<ClCompile Include="src\jabber_frame.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\jabber.h">
diff --git a/protocols/JabberG/src/stdafx.cpp b/protocols/JabberG/src/stdafx.cpp
new file mode 100644
index 0000000000..b019bed7ab
--- /dev/null
+++ b/protocols/JabberG/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 "jabber.h" \ No newline at end of file
diff --git a/protocols/MRA/Mra.vcxproj b/protocols/MRA/Mra.vcxproj
index 52e49b129f..165b5bb5a2 100644
--- a/protocols/MRA/Mra.vcxproj
+++ b/protocols/MRA/Mra.vcxproj
@@ -184,7 +184,7 @@
</ResourceCompile>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\Mra.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\MraProto.cpp" />
@@ -206,6 +206,7 @@
<ClCompile Include="src\MraSelectEMail.cpp" />
<ClCompile Include="src\MraSendCommand.cpp" />
<ClCompile Include="src\MraSendQueue.cpp" />
+ <ClCompile Include="src\Mra.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Mra.h" />
diff --git a/protocols/MRA/Mra.vcxproj.filters b/protocols/MRA/Mra.vcxproj.filters
index c4251eca48..f53bbf5b56 100644
--- a/protocols/MRA/Mra.vcxproj.filters
+++ b/protocols/MRA/Mra.vcxproj.filters
@@ -75,6 +75,9 @@
<ClCompile Include="src\MraProto.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Mra.h">
diff --git a/protocols/MRA/src/stdafx.cpp b/protocols/MRA/src/stdafx.cpp
new file mode 100644
index 0000000000..b9e22e9c92
--- /dev/null
+++ b/protocols/MRA/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 "Mra.h" \ No newline at end of file
diff --git a/protocols/MSN/msn_10.vcxproj b/protocols/MSN/msn_10.vcxproj
index 1a00b70269..83bd1e3855 100644
--- a/protocols/MSN/msn_10.vcxproj
+++ b/protocols/MSN/msn_10.vcxproj
@@ -204,7 +204,7 @@
<ClCompile Include="src\ezxml.c">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
- <ClCompile Include="src\msn.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\msn_auth.cpp" />
@@ -238,6 +238,7 @@
<ClCompile Include="src\msn_threads.cpp" />
<ClCompile Include="src\msn_useropts.cpp" />
<ClCompile Include="src\msn_ws.cpp" />
+ <ClCompile Include="src\msn.cpp" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\msn.rc" />
diff --git a/protocols/MSN/msn_10.vcxproj.filters b/protocols/MSN/msn_10.vcxproj.filters
index 41799e2ef5..739be1ce0b 100644
--- a/protocols/MSN/msn_10.vcxproj.filters
+++ b/protocols/MSN/msn_10.vcxproj.filters
@@ -116,6 +116,9 @@
<ClCompile Include="src\msn_ws.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\msn.rc">
diff --git a/protocols/MSN/src/stdafx.cpp b/protocols/MSN/src/stdafx.cpp
new file mode 100644
index 0000000000..6607524f0f
--- /dev/null
+++ b/protocols/MSN/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 "msn_global.h" \ No newline at end of file