From 3803f35ac244f74e50edc3854fa4278d0e5d405d Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Tue, 20 Nov 2012 22:16:32 +0000 Subject: consistent hash generation fix - part 2 git-svn-id: http://svn.miranda-ng.org/main/trunk@2406 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AVS/avs_10.vcxproj | 3 ++- plugins/AVS/avs_10.vcxproj.filters | 3 +++ plugins/AVS/src/stdafx.cpp | 18 ++++++++++++++++++ plugins/AssocMgr/assocmgr.vcxproj | 3 ++- plugins/AssocMgr/assocmgr.vcxproj.filters | 3 +++ plugins/AssocMgr/src/stdafx.cpp | 18 ++++++++++++++++++ plugins/AuthState/authstate_10.vcxproj | 3 ++- plugins/AuthState/authstate_10.vcxproj.filters | 3 +++ plugins/AuthState/src/stdafx.cpp | 18 ++++++++++++++++++ plugins/AutoShutdown/shutdown.vcxproj | 3 ++- plugins/AutoShutdown/shutdown.vcxproj.filters | 3 +++ plugins/AutoShutdown/src/stdafx.cpp | 18 ++++++++++++++++++ plugins/AvatarHistory/AvatarHistory.vcxproj | 3 ++- plugins/AvatarHistory/AvatarHistory.vcxproj.filters | 3 +++ plugins/AvatarHistory/src/stdafx.cpp | 18 ++++++++++++++++++ .../ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj | 8 +++----- .../ChangeKeyboardLayout.vcxproj.filters | 3 +++ plugins/ChangeKeyboardLayout/src/stdafx.cpp | 18 ++++++++++++++++++ plugins/ClientChangeNotify/ClientChangeNotify.vcxproj | 3 ++- .../ClientChangeNotify.vcxproj.filters | 3 +++ plugins/ClientChangeNotify/src/stdafx.cpp | 18 ++++++++++++++++++ 21 files changed, 162 insertions(+), 11 deletions(-) create mode 100644 plugins/AVS/src/stdafx.cpp create mode 100644 plugins/AssocMgr/src/stdafx.cpp create mode 100644 plugins/AuthState/src/stdafx.cpp create mode 100644 plugins/AutoShutdown/src/stdafx.cpp create mode 100644 plugins/AvatarHistory/src/stdafx.cpp create mode 100644 plugins/ChangeKeyboardLayout/src/stdafx.cpp create mode 100644 plugins/ClientChangeNotify/src/stdafx.cpp diff --git a/plugins/AVS/avs_10.vcxproj b/plugins/AVS/avs_10.vcxproj index ae429625da..f7a01303f1 100644 --- a/plugins/AVS/avs_10.vcxproj +++ b/plugins/AVS/avs_10.vcxproj @@ -206,12 +206,13 @@ - + Create + diff --git a/plugins/AVS/avs_10.vcxproj.filters b/plugins/AVS/avs_10.vcxproj.filters index 1c30d7fc83..7402455039 100644 --- a/plugins/AVS/avs_10.vcxproj.filters +++ b/plugins/AVS/avs_10.vcxproj.filters @@ -33,6 +33,9 @@ Source Files + + Source Files + diff --git a/plugins/AVS/src/stdafx.cpp b/plugins/AVS/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/AVS/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 . +*/ + +#include "commonheaders.h" \ No newline at end of file diff --git a/plugins/AssocMgr/assocmgr.vcxproj b/plugins/AssocMgr/assocmgr.vcxproj index 520cf58cbd..5d24a29552 100644 --- a/plugins/AssocMgr/assocmgr.vcxproj +++ b/plugins/AssocMgr/assocmgr.vcxproj @@ -191,10 +191,11 @@ - + Create + diff --git a/plugins/AssocMgr/assocmgr.vcxproj.filters b/plugins/AssocMgr/assocmgr.vcxproj.filters index 6d23c19728..01b8308a70 100644 --- a/plugins/AssocMgr/assocmgr.vcxproj.filters +++ b/plugins/AssocMgr/assocmgr.vcxproj.filters @@ -33,6 +33,9 @@ Source Files + + Source Files + diff --git a/plugins/AssocMgr/src/stdafx.cpp b/plugins/AssocMgr/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/AssocMgr/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 . +*/ + +#include "common.h" \ No newline at end of file diff --git a/plugins/AuthState/authstate_10.vcxproj b/plugins/AuthState/authstate_10.vcxproj index c2dd94ab4d..af7fd742e6 100644 --- a/plugins/AuthState/authstate_10.vcxproj +++ b/plugins/AuthState/authstate_10.vcxproj @@ -175,10 +175,11 @@ - + Create + diff --git a/plugins/AuthState/authstate_10.vcxproj.filters b/plugins/AuthState/authstate_10.vcxproj.filters index 102c9142b2..5ce6616c08 100644 --- a/plugins/AuthState/authstate_10.vcxproj.filters +++ b/plugins/AuthState/authstate_10.vcxproj.filters @@ -21,6 +21,9 @@ Source Files + + Source Files + diff --git a/plugins/AuthState/src/stdafx.cpp b/plugins/AuthState/src/stdafx.cpp new file mode 100644 index 0000000000..c7cb1f9f19 --- /dev/null +++ b/plugins/AuthState/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 . +*/ + +#include "Commonheaders.h" \ No newline at end of file diff --git a/plugins/AutoShutdown/shutdown.vcxproj b/plugins/AutoShutdown/shutdown.vcxproj index aec6e146ec..a8ac725aac 100644 --- a/plugins/AutoShutdown/shutdown.vcxproj +++ b/plugins/AutoShutdown/shutdown.vcxproj @@ -190,12 +190,13 @@ - + Create + diff --git a/plugins/AutoShutdown/shutdown.vcxproj.filters b/plugins/AutoShutdown/shutdown.vcxproj.filters index f769086cdd..645304991a 100644 --- a/plugins/AutoShutdown/shutdown.vcxproj.filters +++ b/plugins/AutoShutdown/shutdown.vcxproj.filters @@ -39,6 +39,9 @@ Source Files + + Source Files + diff --git a/plugins/AutoShutdown/src/stdafx.cpp b/plugins/AutoShutdown/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/AutoShutdown/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 . +*/ + +#include "common.h" \ No newline at end of file diff --git a/plugins/AvatarHistory/AvatarHistory.vcxproj b/plugins/AvatarHistory/AvatarHistory.vcxproj index 16b6d86fef..b1059a9771 100644 --- a/plugins/AvatarHistory/AvatarHistory.vcxproj +++ b/plugins/AvatarHistory/AvatarHistory.vcxproj @@ -185,7 +185,7 @@ - + Create @@ -194,6 +194,7 @@ + diff --git a/plugins/AvatarHistory/AvatarHistory.vcxproj.filters b/plugins/AvatarHistory/AvatarHistory.vcxproj.filters index f416979a19..876c924e34 100644 --- a/plugins/AvatarHistory/AvatarHistory.vcxproj.filters +++ b/plugins/AvatarHistory/AvatarHistory.vcxproj.filters @@ -33,6 +33,9 @@ Source Files + + Source Files + diff --git a/plugins/AvatarHistory/src/stdafx.cpp b/plugins/AvatarHistory/src/stdafx.cpp new file mode 100644 index 0000000000..9241e6327f --- /dev/null +++ b/plugins/AvatarHistory/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 . +*/ + +#include "AvatarHistory.h" \ No newline at end of file diff --git a/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj b/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj index e75bfa1b03..b9231c1337 100644 --- a/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj +++ b/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj @@ -185,13 +185,11 @@ - - Create - Create - Create - Create + + Create + diff --git a/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj.filters b/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj.filters index 4b7f4bd650..9afa94a98c 100644 --- a/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj.filters +++ b/plugins/ChangeKeyboardLayout/ChangeKeyboardLayout.vcxproj.filters @@ -27,6 +27,9 @@ Source Files + + Source Files + diff --git a/plugins/ChangeKeyboardLayout/src/stdafx.cpp b/plugins/ChangeKeyboardLayout/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/ChangeKeyboardLayout/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 . +*/ + +#include "commonheaders.h" \ No newline at end of file diff --git a/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj b/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj index 65f974c0c0..5c6ce58b0f 100644 --- a/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj +++ b/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj @@ -176,13 +176,14 @@ - + Create + diff --git a/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj.filters b/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj.filters index a9792f238d..6e25d96890 100644 --- a/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj.filters +++ b/plugins/ClientChangeNotify/ClientChangeNotify.vcxproj.filters @@ -30,6 +30,9 @@ Source Files + + Source Files + diff --git a/plugins/ClientChangeNotify/src/stdafx.cpp b/plugins/ClientChangeNotify/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/ClientChangeNotify/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 . +*/ + +#include "common.h" \ No newline at end of file -- cgit v1.2.3