diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-11-21 11:26:23 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-11-21 11:26:23 +0000 |
commit | 52245921c5eb8d6e77d2f18ac692e33622af3915 (patch) | |
tree | b215a9aead7c63dd20dbbd16eca9e50650b91208 | |
parent | 1a1264bf4fb2ebd9dbf445662b9e8a4e38081e05 (diff) |
consistent hash generation fix - part 4
git-svn-id: http://svn.miranda-ng.org/main/trunk@2412 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
97 files changed, 752 insertions, 88 deletions
diff --git a/include/m_version.h b/include/m_version.h new file mode 100644 index 0000000000..909de43f1c --- /dev/null +++ b/include/m_version.h @@ -0,0 +1,37 @@ +/*
+
+Miranda IM: the free IM client for Microsoft* Windows*
+
+Copyright 2000-2010 Miranda ICQ/IM project,
+all portions of this codebase are copyrighted to the people
+listed in contributors.txt.
+
+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; either version 2
+of the License, or (at your option) any later version.
+
+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, write to the Free Software
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+*/
+#ifndef M_VERSION_H__
+#define M_VERSION_H__
+
+#ifndef MIRANDA_MAKE_VERSION
+#define MIRANDA_MAKE_VERSION(a,b,c,d) (((((DWORD)(a))&0xFF)<<24)|((((DWORD)(b))&0xFF)<<16)|((((DWORD)(c))&0xFF)<<8)|(((DWORD)(d))&0xFF))
+#endif
+
+#define MIRANDA_VERSION_FILEVERSION 0,93,4,2410
+#define MIRANDA_VERSION_STRING "0.93.4.2410"
+#define MIRANDA_VERSION_DISPLAY "0.93.4 alpha build #2410"
+#define MIRANDA_VERSION_DWORD MIRANDA_MAKE_VERSION(0, 93, 4, 2410)
+#define MIRANDA_VERSION_CORE MIRANDA_MAKE_VERSION(0, 93, 4, 0)
+#define MIRANDA_VERSION_CORE_STRING "0.93.4.0"
+
+#endif // M_VERSION_H__
diff --git a/plugins/CmdLine/MimCmd/MimCmd.vcxproj b/plugins/CmdLine/MimCmd/MimCmd.vcxproj index ca259e0dbc..78547cd4de 100644 --- a/plugins/CmdLine/MimCmd/MimCmd.vcxproj +++ b/plugins/CmdLine/MimCmd/MimCmd.vcxproj @@ -169,12 +169,13 @@ </ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\commands.cpp" />
- <ClCompile Include="src\MimCmd.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="..\src\mimcmd_ipc.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\MimCmd.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commands.h" />
diff --git a/plugins/CmdLine/MimCmd/MimCmd.vcxproj.filters b/plugins/CmdLine/MimCmd/MimCmd.vcxproj.filters index 4352e86988..1dbcda6f3e 100644 --- a/plugins/CmdLine/MimCmd/MimCmd.vcxproj.filters +++ b/plugins/CmdLine/MimCmd/MimCmd.vcxproj.filters @@ -24,6 +24,9 @@ <ClCompile Include="..\src\mimcmd_ipc.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commands.h">
diff --git a/plugins/CmdLine/MimCmd/src/stdafx.cpp b/plugins/CmdLine/MimCmd/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/CmdLine/MimCmd/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/CryptoPP/cryptopp_10.vcxproj b/plugins/CryptoPP/cryptopp_10.vcxproj index 1d14ecb0f5..8323a9c862 100644 --- a/plugins/CryptoPP/cryptopp_10.vcxproj +++ b/plugins/CryptoPP/cryptopp_10.vcxproj @@ -180,7 +180,7 @@ <ItemGroup>
<ClCompile Include="src\base16.cpp" />
<ClCompile Include="src\base64.cpp" />
- <ClCompile Include="src\commonheaders.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\cpp_cntx.cpp" />
@@ -196,6 +196,7 @@ <ClCompile Include="src\gettime.cpp" />
<ClCompile Include="src\main.cpp" />
<ClCompile Include="src\mmi.cpp" />
+ <ClCompile Include="src\commonheaders.cpp" />
<ClCompile Include="src\utf8.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/CryptoPP/cryptopp_10.vcxproj.filters b/plugins/CryptoPP/cryptopp_10.vcxproj.filters index 2d664a50f3..328dfb7b06 100644 --- a/plugins/CryptoPP/cryptopp_10.vcxproj.filters +++ b/plugins/CryptoPP/cryptopp_10.vcxproj.filters @@ -66,6 +66,9 @@ <ClCompile Include="src\base64.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\base16.h">
diff --git a/plugins/CryptoPP/src/stdafx.cpp b/plugins/CryptoPP/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/CryptoPP/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/Db3x/db3x_10.vcxproj b/plugins/Db3x/db3x_10.vcxproj index 9f57074acf..4619ef383d 100644 --- a/plugins/Db3x/db3x_10.vcxproj +++ b/plugins/Db3x/db3x_10.vcxproj @@ -225,9 +225,10 @@ </ClCompile>
<ClCompile Include="src\dbcache3x.cpp" />
<ClCompile Include="src\dbintf3x.cpp" />
- <ClCompile Include="src\init.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\init.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\Db3x_mmap\src\dbintf.h" />
diff --git a/plugins/Db3x/db3x_10.vcxproj.filters b/plugins/Db3x/db3x_10.vcxproj.filters index 838112c5f2..928ca8ebc6 100644 --- a/plugins/Db3x/db3x_10.vcxproj.filters +++ b/plugins/Db3x/db3x_10.vcxproj.filters @@ -78,6 +78,9 @@ <ClCompile Include="..\db3x_mmap\src\dbtool\settingschain.cpp">
<Filter>Mmap\Checker</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/Db3x/src/stdafx.cpp b/plugins/Db3x/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/Db3x/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/Db3x_mmap/db3x_mmap_10.vcxproj b/plugins/Db3x_mmap/db3x_mmap_10.vcxproj index c2b926713a..256b415fc5 100644 --- a/plugins/Db3x_mmap/db3x_mmap_10.vcxproj +++ b/plugins/Db3x_mmap/db3x_mmap_10.vcxproj @@ -225,9 +225,10 @@ <ClCompile Include="src\dbtool\user.cpp">
<PrecompiledHeaderFile>..\commonheaders.h</PrecompiledHeaderFile>
</ClCompile>
- <ClCompile Include="src\init.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\init.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h" />
diff --git a/plugins/Db3x_mmap/db3x_mmap_10.vcxproj.filters b/plugins/Db3x_mmap/db3x_mmap_10.vcxproj.filters index 302caf3045..d965eacf7d 100644 --- a/plugins/Db3x_mmap/db3x_mmap_10.vcxproj.filters +++ b/plugins/Db3x_mmap/db3x_mmap_10.vcxproj.filters @@ -75,6 +75,9 @@ <ClCompile Include="src\dbtool\disk.cpp">
<Filter>Source Files\Checker</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/Db3x_mmap/src/stdafx.cpp b/plugins/Db3x_mmap/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/Db3x_mmap/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/DbChecker/dbchecker_10.vcxproj b/plugins/DbChecker/dbchecker_10.vcxproj index d27e7e4abd..675b83379e 100644 --- a/plugins/DbChecker/dbchecker_10.vcxproj +++ b/plugins/DbChecker/dbchecker_10.vcxproj @@ -189,9 +189,10 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\wizard.cpp" />
<ClCompile Include="src\worker.cpp" />
<ClCompile Include="src\cleaning.cpp" />
diff --git a/plugins/DbChecker/dbchecker_10.vcxproj.filters b/plugins/DbChecker/dbchecker_10.vcxproj.filters index e421e1eff8..6825c82e39 100644 --- a/plugins/DbChecker/dbchecker_10.vcxproj.filters +++ b/plugins/DbChecker/dbchecker_10.vcxproj.filters @@ -48,6 +48,9 @@ <ClCompile Include="src\wizard.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\dbchecker.h">
diff --git a/plugins/DbChecker/src/stdafx.cpp b/plugins/DbChecker/src/stdafx.cpp new file mode 100644 index 0000000000..c2399c432d --- /dev/null +++ b/plugins/DbChecker/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 "dbchecker.h"
\ No newline at end of file diff --git a/plugins/DbEditorPP/dbeditorpp_10.vcxproj b/plugins/DbEditorPP/dbeditorpp_10.vcxproj index f54b54806a..c987ae8a6e 100644 --- a/plugins/DbEditorPP/dbeditorpp_10.vcxproj +++ b/plugins/DbEditorPP/dbeditorpp_10.vcxproj @@ -180,7 +180,7 @@ <ClCompile Include="src\exportimport.cpp" />
<ClCompile Include="src\icons.cpp" />
<ClCompile Include="src\knownmodules.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\modules.cpp" />
@@ -193,6 +193,7 @@ <ClCompile Include="src\moduletree.cpp" />
<ClCompile Include="src\options.cpp" />
<ClCompile Include="src\settinglist.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\watchedvars.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/DbEditorPP/dbeditorpp_10.vcxproj.filters b/plugins/DbEditorPP/dbeditorpp_10.vcxproj.filters index b8701822ca..a23baf1b16 100644 --- a/plugins/DbEditorPP/dbeditorpp_10.vcxproj.filters +++ b/plugins/DbEditorPP/dbeditorpp_10.vcxproj.filters @@ -66,6 +66,9 @@ <ClCompile Include="src\watchedvars.cpp">
<Filter>Source Files\dialogs</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\modsettingenum.h">
diff --git a/plugins/DbEditorPP/src/stdafx.cpp b/plugins/DbEditorPP/src/stdafx.cpp new file mode 100644 index 0000000000..881465e5d9 --- /dev/null +++ b/plugins/DbEditorPP/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/Db_autobackups/db_autobackups_10.vcxproj b/plugins/Db_autobackups/db_autobackups_10.vcxproj index 4dcb7e7bd7..d1fd2e7422 100644 --- a/plugins/Db_autobackups/db_autobackups_10.vcxproj +++ b/plugins/Db_autobackups/db_autobackups_10.vcxproj @@ -171,9 +171,10 @@ <ItemGroup>
<ClCompile Include="src\backup.cpp" />
<ClCompile Include="src\options.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\headers.h" />
diff --git a/plugins/Db_autobackups/db_autobackups_10.vcxproj.filters b/plugins/Db_autobackups/db_autobackups_10.vcxproj.filters index ed336c2e02..5573147fcd 100644 --- a/plugins/Db_autobackups/db_autobackups_10.vcxproj.filters +++ b/plugins/Db_autobackups/db_autobackups_10.vcxproj.filters @@ -24,6 +24,9 @@ <ClCompile Include="src\main.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/Db_autobackups/src/stdafx.cpp b/plugins/Db_autobackups/src/stdafx.cpp new file mode 100644 index 0000000000..881465e5d9 --- /dev/null +++ b/plugins/Db_autobackups/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/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj index ff910f49bb..4bc925956f 100644 --- a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj +++ b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj @@ -226,10 +226,11 @@ <ClCompile Include="src\dbintf_sa.cpp" />
<ClCompile Include="src\dbpreset.cpp" />
<ClCompile Include="src\dialogs.cpp" />
- <ClCompile Include="src\init.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\security.cpp" />
+ <ClCompile Include="src\init.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\Db3x_mmap\src\dbintf.h" />
diff --git a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters index 24a03b456a..ece164e77b 100644 --- a/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters +++ b/plugins/Dbx_mmap_SA/db3x_mmap_sa_10.vcxproj.filters @@ -90,6 +90,9 @@ <ClCompile Include="..\db3x_mmap\src\dbtool\user.cpp">
<Filter>Mmap files\Checker</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/Dbx_mmap_SA/src/stdafx.cpp b/plugins/Dbx_mmap_SA/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/Dbx_mmap_SA/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/FTPFileYM/ftpfile_10.vcxproj b/plugins/FTPFileYM/ftpfile_10.vcxproj index f680e943cd..1fe006ac5c 100644 --- a/plugins/FTPFileYM/ftpfile_10.vcxproj +++ b/plugins/FTPFileYM/ftpfile_10.vcxproj @@ -180,7 +180,7 @@ <ClCompile Include="src\dbentry.cpp" />
<ClCompile Include="src\deletetimer.cpp" />
<ClCompile Include="src\dialog.cpp" />
- <ClCompile Include="src\ftpfile.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\job_delete.cpp" />
@@ -192,6 +192,7 @@ <ClCompile Include="src\mir_db.cpp" />
<ClCompile Include="src\options.cpp" />
<ClCompile Include="src\serverlist.cpp" />
+ <ClCompile Include="src\ftpfile.cpp" />
<ClCompile Include="src\utils.cpp" />
<ClCompile Include="src\zip\ioapi.c">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
diff --git a/plugins/FTPFileYM/ftpfile_10.vcxproj.filters b/plugins/FTPFileYM/ftpfile_10.vcxproj.filters index 1dcfc39ba4..a31a3d4652 100644 --- a/plugins/FTPFileYM/ftpfile_10.vcxproj.filters +++ b/plugins/FTPFileYM/ftpfile_10.vcxproj.filters @@ -69,6 +69,9 @@ <ClCompile Include="src\zip\zip.c">
<Filter>Source Files\zip</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\common.h">
diff --git a/plugins/FTPFileYM/src/stdafx.cpp b/plugins/FTPFileYM/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/FTPFileYM/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/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj b/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj index 0ddc8af7cf..8c17289c1f 100644 --- a/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj +++ b/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj @@ -183,11 +183,12 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="src\fingerprint.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\masks.cpp" />
<ClCompile Include="src\options.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\utilities.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj.filters b/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj.filters index a161c72d3f..99f40472b4 100644 --- a/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj.filters +++ b/plugins/FingerPrintModPlus/fingerprint_mod_vs2010.vcxproj.filters @@ -44,6 +44,9 @@ <ClCompile Include="src\masks.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\icons.rc">
diff --git a/plugins/FingerPrintModPlus/src/stdafx.cpp b/plugins/FingerPrintModPlus/src/stdafx.cpp new file mode 100644 index 0000000000..b09d93b85a --- /dev/null +++ b/plugins/FingerPrintModPlus/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 "global.h"
\ No newline at end of file diff --git a/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj b/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj index 2980521309..94cb92f249 100644 --- a/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj +++ b/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj @@ -184,11 +184,12 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="src\fingerprint.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\masks.cpp" />
<ClCompile Include="src\options.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\utilities.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj.filters b/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj.filters index 7c22bd0780..936866f2ed 100644 --- a/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj.filters +++ b/plugins/FingerprintNG/fingerprint_ng_vs2010.vcxproj.filters @@ -45,6 +45,9 @@ <ClCompile Include="src\masks.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\icons.rc">
diff --git a/plugins/FingerprintNG/src/stdafx.cpp b/plugins/FingerprintNG/src/stdafx.cpp new file mode 100644 index 0000000000..b09d93b85a --- /dev/null +++ b/plugins/FingerprintNG/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 "global.h"
\ No newline at end of file diff --git a/plugins/FlashAvatars/FlashAvatars_10.vcxproj b/plugins/FlashAvatars/FlashAvatars_10.vcxproj index 7fdc5a8c4a..ed46626f37 100644 --- a/plugins/FlashAvatars/FlashAvatars_10.vcxproj +++ b/plugins/FlashAvatars/FlashAvatars_10.vcxproj @@ -189,10 +189,10 @@ <ResourceCompile Include="res\FlashAvatars.rc" />
</ItemGroup>
<ItemGroup>
- <ClCompile Include="src\cflash.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
- <ClCompile Include="src\stdafx.cpp" />
+ <ClCompile Include="src\cflash.cpp" />
<ClCompile Include="src\TigerHash.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
diff --git a/plugins/FloatingContacts/FltCont_10.vcxproj b/plugins/FloatingContacts/FltCont_10.vcxproj index e5452eb5df..c533d93e12 100644 --- a/plugins/FloatingContacts/FltCont_10.vcxproj +++ b/plugins/FloatingContacts/FltCont_10.vcxproj @@ -180,10 +180,11 @@ <ItemGroup>
<ClCompile Include="src\bitmap_funcs.cpp" />
<ClCompile Include="src\filedrop.cpp" />
- <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\thumbs.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/FloatingContacts/FltCont_10.vcxproj.filters b/plugins/FloatingContacts/FltCont_10.vcxproj.filters index 9e23c2e2e6..c7098e7c3c 100644 --- a/plugins/FloatingContacts/FltCont_10.vcxproj.filters +++ b/plugins/FloatingContacts/FltCont_10.vcxproj.filters @@ -30,6 +30,9 @@ <ClCompile Include="src\thumbs.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\bitmap_funcs.h">
diff --git a/plugins/FloatingContacts/src/stdafx.cpp b/plugins/FloatingContacts/src/stdafx.cpp new file mode 100644 index 0000000000..a73b90a1a2 --- /dev/null +++ b/plugins/FloatingContacts/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 "stdhdr.h"
\ No newline at end of file diff --git a/plugins/IgnoreState/ignore_10.vcxproj b/plugins/IgnoreState/ignore_10.vcxproj index 394f37d49b..e140df83fd 100644 --- a/plugins/IgnoreState/ignore_10.vcxproj +++ b/plugins/IgnoreState/ignore_10.vcxproj @@ -175,10 +175,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\commonheaders.h" />
diff --git a/plugins/IgnoreState/ignore_10.vcxproj.filters b/plugins/IgnoreState/ignore_10.vcxproj.filters index 03b607d0ac..4d5052657b 100644 --- a/plugins/IgnoreState/ignore_10.vcxproj.filters +++ b/plugins/IgnoreState/ignore_10.vcxproj.filters @@ -24,6 +24,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\commonheaders.h">
diff --git a/plugins/IgnoreState/src/stdafx.cpp b/plugins/IgnoreState/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/IgnoreState/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/Import/import_10.vcxproj b/plugins/Import/import_10.vcxproj index cac38e6e71..c544c951f4 100644 --- a/plugins/Import/import_10.vcxproj +++ b/plugins/Import/import_10.vcxproj @@ -198,11 +198,12 @@ <PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\import.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\miranda.cpp" />
<ClCompile Include="src\progress.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\utils.cpp" />
<ClCompile Include="src\wizard.cpp" />
</ItemGroup>
diff --git a/plugins/Import/import_10.vcxproj.filters b/plugins/Import/import_10.vcxproj.filters index f7ed0a68e6..3495d1e132 100644 --- a/plugins/Import/import_10.vcxproj.filters +++ b/plugins/Import/import_10.vcxproj.filters @@ -39,6 +39,9 @@ <ClCompile Include="src\import.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\import.h">
diff --git a/plugins/Import/src/stdafx.cpp b/plugins/Import/src/stdafx.cpp new file mode 100644 index 0000000000..f20859bbbf --- /dev/null +++ b/plugins/Import/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 "import.h"
\ No newline at end of file diff --git a/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj b/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj index b87684367d..62c53cb478 100644 --- a/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj +++ b/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj @@ -189,10 +189,11 @@ <ClCompile Include="src\ignore.cpp" />
<ClCompile Include="src\keyboard.cpp" />
<ClCompile Include="src\keypresses.cpp" />
- <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\trigger.cpp" />
<ClCompile Include="src\utils.cpp" />
</ItemGroup>
diff --git a/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj.filters b/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj.filters index 0f6f581618..c3af05e4ea 100644 --- a/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj.filters +++ b/plugins/KeyboardNotify/KeyboardNotify_10.vcxproj.filters @@ -68,6 +68,9 @@ <ClCompile Include="src\trigger.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\resources.rc">
diff --git a/plugins/KeyboardNotify/src/stdafx.cpp b/plugins/KeyboardNotify/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/KeyboardNotify/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/LangMan/langman.vcxproj b/plugins/LangMan/langman.vcxproj index f9dee33e7f..5f81542f74 100644 --- a/plugins/LangMan/langman.vcxproj +++ b/plugins/LangMan/langman.vcxproj @@ -190,10 +190,11 @@ </ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="src\langpack.cpp" />
- <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/LangMan/langman.vcxproj.filters b/plugins/LangMan/langman.vcxproj.filters index 55ef3aee7a..438fac2d70 100644 --- a/plugins/LangMan/langman.vcxproj.filters +++ b/plugins/LangMan/langman.vcxproj.filters @@ -27,6 +27,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\common.h">
diff --git a/plugins/LangMan/src/stdafx.cpp b/plugins/LangMan/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/LangMan/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/MetaContacts/MetaContacts_10.vcxproj b/plugins/MetaContacts/MetaContacts_10.vcxproj index 8b3f4e8fba..2688d89597 100644 --- a/plugins/MetaContacts/MetaContacts_10.vcxproj +++ b/plugins/MetaContacts/MetaContacts_10.vcxproj @@ -187,13 +187,14 @@ <ClCompile Include="src\edit.cpp" />
<ClCompile Include="src\icons.cpp" />
<ClCompile Include="src\meta_api.cpp" />
- <ClCompile Include="src\meta_main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\meta_menu.cpp" />
<ClCompile Include="src\meta_options.cpp" />
<ClCompile Include="src\meta_services.cpp" />
<ClCompile Include="src\meta_utils.cpp" />
+ <ClCompile Include="src\meta_main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\metacontacts.h" />
diff --git a/plugins/MetaContacts/MetaContacts_10.vcxproj.filters b/plugins/MetaContacts/MetaContacts_10.vcxproj.filters index 06d109be1b..0a42f2de52 100644 --- a/plugins/MetaContacts/MetaContacts_10.vcxproj.filters +++ b/plugins/MetaContacts/MetaContacts_10.vcxproj.filters @@ -42,6 +42,9 @@ <ClCompile Include="src\meta_utils.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\metacontacts.h">
diff --git a/plugins/MetaContacts/src/stdafx.cpp b/plugins/MetaContacts/src/stdafx.cpp new file mode 100644 index 0000000000..f0011d406d --- /dev/null +++ b/plugins/MetaContacts/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 "metacontacts.h"
\ No newline at end of file diff --git a/plugins/MobileState/mobilestate_10.vcxproj b/plugins/MobileState/mobilestate_10.vcxproj index 1dba33d229..379b552767 100644 --- a/plugins/MobileState/mobilestate_10.vcxproj +++ b/plugins/MobileState/mobilestate_10.vcxproj @@ -175,9 +175,10 @@ </ResourceCompile>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h" />
diff --git a/plugins/MobileState/mobilestate_10.vcxproj.filters b/plugins/MobileState/mobilestate_10.vcxproj.filters index 047378a1ce..23cdf025c5 100644 --- a/plugins/MobileState/mobilestate_10.vcxproj.filters +++ b/plugins/MobileState/mobilestate_10.vcxproj.filters @@ -18,6 +18,9 @@ <ClCompile Include="src\main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/MobileState/src/stdafx.cpp b/plugins/MobileState/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/MobileState/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/ModernOpt/modernopt_10.vcxproj b/plugins/ModernOpt/modernopt_10.vcxproj index fcf9eb57c2..34615ad5cf 100644 --- a/plugins/ModernOpt/modernopt_10.vcxproj +++ b/plugins/ModernOpt/modernopt_10.vcxproj @@ -184,13 +184,14 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\modernopt.cpp" />
<ClCompile Include="src\mopt_home.cpp" />
<ClCompile Include="src\mopt_ignore.cpp" />
<ClCompile Include="src\mopt_selector.cpp" />
+ <ClCompile Include="src\main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h" />
diff --git a/plugins/ModernOpt/modernopt_10.vcxproj.filters b/plugins/ModernOpt/modernopt_10.vcxproj.filters index c911c441d5..9a9cee9982 100644 --- a/plugins/ModernOpt/modernopt_10.vcxproj.filters +++ b/plugins/ModernOpt/modernopt_10.vcxproj.filters @@ -30,6 +30,9 @@ <ClCompile Include="src\mopt_selector.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/ModernOpt/src/stdafx.cpp b/plugins/ModernOpt/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/ModernOpt/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/MyDetails/mydetails.vcxproj b/plugins/MyDetails/mydetails.vcxproj index ca160226b0..92a6459622 100644 --- a/plugins/MyDetails/mydetails.vcxproj +++ b/plugins/MyDetails/mydetails.vcxproj @@ -194,10 +194,11 @@ <ClCompile Include="..\utils\mir_smileys.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
- <ClCompile Include="src\mydetails.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\options.cpp" />
+ <ClCompile Include="src\mydetails.cpp" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\resource.rc" />
diff --git a/plugins/MyDetails/mydetails.vcxproj.filters b/plugins/MyDetails/mydetails.vcxproj.filters index 6551fafecb..0187ba07a1 100644 --- a/plugins/MyDetails/mydetails.vcxproj.filters +++ b/plugins/MyDetails/mydetails.vcxproj.filters @@ -36,6 +36,9 @@ <ClCompile Include="..\Utils\mir_dblists.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\resource.rc">
diff --git a/plugins/MyDetails/src/stdafx.cpp b/plugins/MyDetails/src/stdafx.cpp new file mode 100644 index 0000000000..20208e0410 --- /dev/null +++ b/plugins/MyDetails/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/plugins/New_GPG/Makefile b/plugins/New_GPG/Makefile deleted file mode 100755 index 183390389b..0000000000 --- a/plugins/New_GPG/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -CFLAGS=-g -mdll -mwindows -I../miranda-im/miranda/include -I./ -I/home/sss/temp/windows/libs/utf8cpp/include -D DEBUG -D _UNICODE -D UNICODE -DBOOST_SYSTEM_STATIC_LINK=1 -DBOOST_THREAD_USE_LIB
-CXXFLAGS=${CFLAGS}
-LDFLAGS=-static-libgcc -Wl,-O1 -shared -s -Wl,--subsystem,windows,--kill-at -lshlwapi -lcomdlg32 -lboost_system-mt -lboost_thread_win32-mt -lboost_random-mt -lboost_date_time-mt
-CPPFLAGS =
-CC=i686-pc-mingw32-gcc
-CXX=i686-pc-mingw32-g++
-STRIP=i686-pc-mingw32-strip
-LD=i686-pc-mingw32-ld
-LNK_COMMON=-lkernel32
- -MAINOBJS=jabber_account.o clist.o init.o options.o gpg_wrapper.o srmm.o messages.o utilities.o metacontacts.o main.o log.o icons.o - -WINDRES=i686-pc-mingw32-windres
-
-all: main
-main: $(MAINOBJS)
- $(WINDRES) -i new_gpg.rc -o resources.o
- $(CXX) $(MAINOBJS) resources.o $(LNK_COMMON) $(LDFLAGS) -o new_gpg.dll
- $(STRIP) new_gpg.dll
- upx --best --compress-icons=0 new_gpg.dll
-clean:
- rm *.o
- rm new_gpg.dll
diff --git a/plugins/New_GPG/new_gpg_10.vcxproj b/plugins/New_GPG/new_gpg_10.vcxproj index 0e5660cfe2..a437bbe66a 100755 --- a/plugins/New_GPG/new_gpg_10.vcxproj +++ b/plugins/New_GPG/new_gpg_10.vcxproj @@ -25,16 +25,14 @@ <ClCompile Include="src\init.cpp" />
<ClCompile Include="src\jabber_account.cpp" />
<ClCompile Include="src\log.cpp" />
- <ClCompile Include="src\main.cpp">
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|X64'">Create</PrecompiledHeader>
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|X64'">Create</PrecompiledHeader>
+ <ClCompile Include="src\stdafx.cpp">
+ <PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\messages.cpp" />
<ClCompile Include="src\metacontacts.cpp" />
<ClCompile Include="src\options.cpp" />
<ClCompile Include="src\srmm.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\utilities.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/New_GPG/new_gpg_10.vcxproj.filters b/plugins/New_GPG/new_gpg_10.vcxproj.filters index 96cb8c90fe..692179cf66 100755 --- a/plugins/New_GPG/new_gpg_10.vcxproj.filters +++ b/plugins/New_GPG/new_gpg_10.vcxproj.filters @@ -48,6 +48,9 @@ <ClCompile Include="src\utilities.cpp">
<Filter>Sources</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Sources</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\commonheaders.h">
diff --git a/plugins/New_GPG/src/stdafx.cpp b/plugins/New_GPG/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/New_GPG/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/StopSpamMod/Makefile b/plugins/StopSpamMod/Makefile deleted file mode 100755 index 4df12dca59..0000000000 --- a/plugins/StopSpamMod/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -CFLAGS=-Os -fomit-frame-pointer -pipe -march=i686 -mdll -mwin32 -mwindows -I../miranda-im/miranda/include -I/home/sss/temp/windows/libs/utf8cpp/include -D UNICODE -D _UNICODE -DBUILD_DLL -CXXFLAGS=${CFLAGS} -LDFLAGS=-shared -Wl,--subsystem,windows,--kill-at -CPPFLAGS = -CC=i686-pc-mingw32-gcc -CXX=i686-pc-mingw32-g++ -STRIP=i686-pc-mingw32-strip -WINDRES=i686-pc-mingw32-windres -LD=i686-pc-mingw32-ld -LNK_COMMON=-lkernel32 -lboost_thread_win32-mt -lboost_system-mt -lboost_random-mt -lboost_regex-mt -MAINOBJS=eventhooker.o init.o options.o utilities.o stopspam.o -RESOURCES=stopspam.rc - -all: main -main: $(MAINOBJS) - $(WINDRES) -i $(RESOURCES) -o stopspam_res.o - $(CXX) $(MAINOBJS) stopspam_res.o $(LNK_COMMON) $(LDFLAGS) -o stopspam.dll - $(STRIP) stopspam.dll -# upx -9 stopspam.dll -clean: - rm *.o - rm stopspam.dll - - diff --git a/plugins/mTextControl/mtextcontrol_10.vcxproj b/plugins/mTextControl/mtextcontrol_10.vcxproj index 3ca4c68d90..ea3f131e06 100644 --- a/plugins/mTextControl/mtextcontrol_10.vcxproj +++ b/plugins/mTextControl/mtextcontrol_10.vcxproj @@ -184,11 +184,12 @@ <ClCompile Include="src\fancy_rtf.cpp" />
<ClCompile Include="src\FormattedTextDraw.cpp" />
<ClCompile Include="src\ImageDataObjectHlp.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\richeditutils.cpp" />
<ClCompile Include="src\services.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\textcontrol.cpp" />
<ClCompile Include="src\textusers.cpp" />
</ItemGroup>
diff --git a/plugins/mTextControl/mtextcontrol_10.vcxproj.filters b/plugins/mTextControl/mtextcontrol_10.vcxproj.filters index de103894c9..025321cd55 100644 --- a/plugins/mTextControl/mtextcontrol_10.vcxproj.filters +++ b/plugins/mTextControl/mtextcontrol_10.vcxproj.filters @@ -45,6 +45,9 @@ <ClCompile Include="src\textusers.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\fancy_rtf.h">
diff --git a/plugins/mTextControl/src/stdafx.cpp b/plugins/mTextControl/src/stdafx.cpp new file mode 100644 index 0000000000..881465e5d9 --- /dev/null +++ b/plugins/mTextControl/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/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 diff --git a/src/core/stdafx.cpp b/src/core/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/src/core/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/src/mir_core/mir_core_10.vcxproj b/src/mir_core/mir_core_10.vcxproj index ad96a2ac2c..edabb2b74f 100644 --- a/src/mir_core/mir_core_10.vcxproj +++ b/src/mir_core/mir_core_10.vcxproj @@ -27,11 +27,8 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="cmdline.cpp" />
- <ClCompile Include="commonheaders.cpp">
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader>
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader>
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader>
- <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader>
+ <ClCompile Include="stdafx.cpp">
+ <PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="db.cpp" />
<ClCompile Include="langpack.cpp" />
@@ -42,6 +39,7 @@ <ClCompile Include="modules.cpp" />
<ClCompile Include="path.cpp" />
<ClCompile Include="sha1.cpp" />
+ <ClCompile Include="commonheaders.cpp" />
<ClCompile Include="threads.cpp" />
<ClCompile Include="utf.cpp" />
<ClCompile Include="utils.cpp" />
diff --git a/src/mir_core/mir_core_10.vcxproj.filters b/src/mir_core/mir_core_10.vcxproj.filters index d0a280985a..61188b5100 100644 --- a/src/mir_core/mir_core_10.vcxproj.filters +++ b/src/mir_core/mir_core_10.vcxproj.filters @@ -52,6 +52,9 @@ <ClCompile Include="cmdline.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="commonheaders.h">
diff --git a/src/mir_core/stdafx.cpp b/src/mir_core/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/src/mir_core/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/src/miranda32_10.vcxproj b/src/miranda32_10.vcxproj index 6cbc520f14..006a9ee102 100644 --- a/src/miranda32_10.vcxproj +++ b/src/miranda32_10.vcxproj @@ -279,11 +279,12 @@ <ClInclude Include="modules\xml\xmlParser.h" />
</ItemGroup>
<ItemGroup>
- <ClCompile Include="core\commonheaders.cpp">
+ <ClCompile Include="core\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="core\miranda.cpp" />
<ClCompile Include="core\modules.cpp" />
+ <ClCompile Include="core\commonheaders.cpp" />
<ClCompile Include="modules\addcontact\addcontact.cpp">
<PrecompiledHeaderFile>..\..\core\commonheaders.h</PrecompiledHeaderFile>
</ClCompile>
diff --git a/src/miranda32_10.vcxproj.filters b/src/miranda32_10.vcxproj.filters index 98881de7bf..2a08b590be 100644 --- a/src/miranda32_10.vcxproj.filters +++ b/src/miranda32_10.vcxproj.filters @@ -632,6 +632,9 @@ <ClCompile Include="modules\extraicons\options_ei.cpp">
<Filter>Modules\extraicons</Filter>
</ClCompile>
+ <ClCompile Include="core\stdafx.cpp">
+ <Filter>Core</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="resource.rc">
|