diff options
39 files changed, 279 insertions, 20 deletions
diff --git a/plugins/TabSRMM/src/stdafx.cpp b/plugins/TabSRMM/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/TabSRMM/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/TabSRMM/tabsrmm_10.vcxproj b/plugins/TabSRMM/tabsrmm_10.vcxproj index e058323d4d..5b1c2b1280 100644 --- a/plugins/TabSRMM/tabsrmm_10.vcxproj +++ b/plugins/TabSRMM/tabsrmm_10.vcxproj @@ -220,9 +220,10 @@ <ClCompile Include="src\selectcontainer.cpp" />
<ClCompile Include="src\sendqueue.cpp" />
<ClCompile Include="src\sidebar.cpp" />
- <ClCompile Include="src\srmm.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\srmm.cpp" />
<ClCompile Include="src\tabctrl.cpp" />
<ClCompile Include="src\taskbar.cpp" />
<ClCompile Include="src\templates.cpp" />
diff --git a/plugins/TabSRMM/tabsrmm_10.vcxproj.filters b/plugins/TabSRMM/tabsrmm_10.vcxproj.filters index c6a1954ab4..780545c9b8 100644 --- a/plugins/TabSRMM/tabsrmm_10.vcxproj.filters +++ b/plugins/TabSRMM/tabsrmm_10.vcxproj.filters @@ -165,6 +165,9 @@ <ClCompile Include="src\sendlater.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\chat\chat.h">
diff --git a/plugins/TipperYM/src/stdafx.cpp b/plugins/TipperYM/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/TipperYM/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/TipperYM/tipper_ym_10.vcxproj b/plugins/TipperYM/tipper_ym_10.vcxproj index 615930dc43..aabbebc2cf 100644 --- a/plugins/TipperYM/tipper_ym_10.vcxproj +++ b/plugins/TipperYM/tipper_ym_10.vcxproj @@ -185,9 +185,10 @@ <ClCompile Include="src\popwin.cpp" />
<ClCompile Include="src\preset_items.cpp" />
<ClCompile Include="src\skin_parser.cpp" />
+ <ClCompile Include="src\tipper.cpp" />
<ClCompile Include="src\str_utils.cpp" />
<ClCompile Include="src\subst.cpp" />
- <ClCompile Include="src\tipper.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\translations.cpp" />
diff --git a/plugins/TipperYM/tipper_ym_10.vcxproj.filters b/plugins/TipperYM/tipper_ym_10.vcxproj.filters index 9cd122d83e..34451d4c41 100644 --- a/plugins/TipperYM/tipper_ym_10.vcxproj.filters +++ b/plugins/TipperYM/tipper_ym_10.vcxproj.filters @@ -48,6 +48,9 @@ <ClCompile Include="src\translations.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\bitmap_func.h">
diff --git a/plugins/TopToolBar/TopToolBar.vcxproj b/plugins/TopToolBar/TopToolBar.vcxproj index fd726d75fa..97ce6f8155 100644 --- a/plugins/TopToolBar/TopToolBar.vcxproj +++ b/plugins/TopToolBar/TopToolBar.vcxproj @@ -194,9 +194,10 @@ </ItemGroup>
<ItemGroup>
<ClCompile Include="src\InternalButtons.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\toolbar.cpp" />
<ClCompile Include="src\toolbarwnd.cpp" />
<ClCompile Include="src\topbutton.cpp" />
diff --git a/plugins/TopToolBar/TopToolBar.vcxproj.filters b/plugins/TopToolBar/TopToolBar.vcxproj.filters index bd1465a04d..bbb0f350ff 100644 --- a/plugins/TopToolBar/TopToolBar.vcxproj.filters +++ b/plugins/TopToolBar/TopToolBar.vcxproj.filters @@ -55,5 +55,8 @@ <ClCompile Include="src\toolbarwnd.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
</Project>
\ No newline at end of file diff --git a/plugins/TopToolBar/src/stdafx.cpp b/plugins/TopToolBar/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/TopToolBar/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/UserInfoEx/UInfoEx_10.vcxproj b/plugins/UserInfoEx/UInfoEx_10.vcxproj index fc43f17ae6..e815010090 100644 --- a/plugins/UserInfoEx/UInfoEx_10.vcxproj +++ b/plugins/UserInfoEx/UInfoEx_10.vcxproj @@ -183,7 +183,7 @@ <ClCompile Include="src\classMTime.cpp" />
<ClCompile Include="src\classPsTree.cpp" />
<ClCompile Include="src\classPsTreeItem.cpp" />
- <ClCompile Include="src\commonheaders.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\init.cpp" />
@@ -193,6 +193,7 @@ <ClCompile Include="src\mir_menuitems.cpp" />
<ClCompile Include="src\mir_string.cpp" />
<ClCompile Include="src\psp_options.cpp" />
+ <ClCompile Include="src\commonheaders.cpp" />
<ClCompile Include="src\svc_avatar.cpp" />
<ClCompile Include="src\svc_constants.cpp" />
<ClCompile Include="src\svc_contactinfo.cpp" />
diff --git a/plugins/UserInfoEx/UInfoEx_10.vcxproj.filters b/plugins/UserInfoEx/UInfoEx_10.vcxproj.filters index bbe6c5dde2..39015149ac 100644 --- a/plugins/UserInfoEx/UInfoEx_10.vcxproj.filters +++ b/plugins/UserInfoEx/UInfoEx_10.vcxproj.filters @@ -200,6 +200,9 @@ <ClCompile Include="src\ctrl_tzcombo.cpp">
<Filter>Source Files\Controls</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\classMAnnivDate.h">
diff --git a/plugins/UserInfoEx/src/stdafx.cpp b/plugins/UserInfoEx/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/UserInfoEx/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/Variables/Variables_10.vcxproj b/plugins/Variables/Variables_10.vcxproj index d58d6ba537..015d2f5972 100644 --- a/plugins/Variables/Variables_10.vcxproj +++ b/plugins/Variables/Variables_10.vcxproj @@ -182,10 +182,11 @@ <ClCompile Include="src\lookup3.cpp">
<PrecompiledHeader>NotUsing</PrecompiledHeader>
</ClCompile>
- <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\tokenregister.cpp" />
<ClCompile Include="src\variables.cpp" />
<ClCompile Include="src\enumprocs.cpp">
diff --git a/plugins/Variables/Variables_10.vcxproj.filters b/plugins/Variables/Variables_10.vcxproj.filters index 5a19c2154c..0a7ba127c0 100644 --- a/plugins/Variables/Variables_10.vcxproj.filters +++ b/plugins/Variables/Variables_10.vcxproj.filters @@ -97,6 +97,9 @@ <ClCompile Include="..\helpers\gen_helpers.cpp">
<Filter>External</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\contact.h">
diff --git a/plugins/Variables/src/stdafx.cpp b/plugins/Variables/src/stdafx.cpp new file mode 100644 index 0000000000..d2a769d004 --- /dev/null +++ b/plugins/Variables/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 "variables.h"
\ No newline at end of file diff --git a/plugins/VersionInfo/VersionInfo_10.vcxproj b/plugins/VersionInfo/VersionInfo_10.vcxproj index f98174029f..e25ce41abe 100644 --- a/plugins/VersionInfo/VersionInfo_10.vcxproj +++ b/plugins/VersionInfo/VersionInfo_10.vcxproj @@ -185,10 +185,11 @@ <ClCompile Include="src\CVersionInfo.cpp" />
<ClCompile Include="src\dlgHandlers.cpp" />
<ClCompile Include="src\hooked_events.cpp" />
- <ClCompile Include="src\main.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\services.cpp" />
+ <ClCompile Include="src\main.cpp" />
<ClCompile Include="src\utils.cpp" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/VersionInfo/VersionInfo_10.vcxproj.filters b/plugins/VersionInfo/VersionInfo_10.vcxproj.filters index b5f5a05d9b..e84a5904c6 100644 --- a/plugins/VersionInfo/VersionInfo_10.vcxproj.filters +++ b/plugins/VersionInfo/VersionInfo_10.vcxproj.filters @@ -36,6 +36,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\CPlugin.h">
diff --git a/plugins/VersionInfo/src/common.h b/plugins/VersionInfo/src/common.h index 3182abc660..20d48e5f3b 100644 --- a/plugins/VersionInfo/src/common.h +++ b/plugins/VersionInfo/src/common.h @@ -18,6 +18,9 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#define STRICT
+#define WIN32_LEAN_AND_MEAN
+
#ifndef M_VERSIONINFO_COMMON_H
#define M_VERSIONINFO_COMMON_H
diff --git a/plugins/VersionInfo/src/main.cpp b/plugins/VersionInfo/src/main.cpp index 53c75be86f..91e29e650e 100644 --- a/plugins/VersionInfo/src/main.cpp +++ b/plugins/VersionInfo/src/main.cpp @@ -18,11 +18,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
-#define STRICT
-#define WIN32_LEAN_AND_MEAN
-
-#define _CRT_SECURE_NO_DEPRECATE
-
#include "common.h"
#include "CVersionInfo.h"
diff --git a/plugins/VersionInfo/src/stdafx.cpp b/plugins/VersionInfo/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/VersionInfo/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/VersionInfo/src/utils.cpp b/plugins/VersionInfo/src/utils.cpp index 9be552c8cc..bb63a3cf3f 100644 --- a/plugins/VersionInfo/src/utils.cpp +++ b/plugins/VersionInfo/src/utils.cpp @@ -20,9 +20,6 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. //#define USE_LOG_FUNCTIONS
-#define STRICT
-#define WIN32_LEAN_AND_MEAN
-
#include "common.h"
#include "utils.h"
diff --git a/plugins/WhenWasIt/WhenWasIt_10.vcxproj b/plugins/WhenWasIt/WhenWasIt_10.vcxproj index 0ababa0edc..02e9e15e00 100644 --- a/plugins/WhenWasIt/WhenWasIt_10.vcxproj +++ b/plugins/WhenWasIt/WhenWasIt_10.vcxproj @@ -188,8 +188,9 @@ <ClCompile Include="src\icons.cpp" />
<ClCompile Include="src\notifiers.cpp" />
<ClCompile Include="src\services.cpp" />
+ <ClCompile Include="src\WhenWasIt.cpp" />
<ClCompile Include="src\utils.cpp" />
- <ClCompile Include="src\WhenWasIt.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
</ItemGroup>
diff --git a/plugins/WhenWasIt/WhenWasIt_10.vcxproj.filters b/plugins/WhenWasIt/WhenWasIt_10.vcxproj.filters index 37586cc1e5..2ccc920e34 100644 --- a/plugins/WhenWasIt/WhenWasIt_10.vcxproj.filters +++ b/plugins/WhenWasIt/WhenWasIt_10.vcxproj.filters @@ -45,6 +45,9 @@ <ClCompile Include="src\dlg_handlers.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\birthdays.h">
diff --git a/plugins/WhenWasIt/src/stdafx.cpp b/plugins/WhenWasIt/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/plugins/WhenWasIt/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/YAPP/src/stdafx.cpp b/plugins/YAPP/src/stdafx.cpp new file mode 100644 index 0000000000..7a516adf58 --- /dev/null +++ b/plugins/YAPP/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/YAPP/yapp_10.vcxproj b/plugins/YAPP/yapp_10.vcxproj index d37db7512e..c315dae157 100644 --- a/plugins/YAPP/yapp_10.vcxproj +++ b/plugins/YAPP/yapp_10.vcxproj @@ -179,9 +179,10 @@ <ClCompile Include="src\message_pump.cpp" />
<ClCompile Include="src\notify_imp.cpp" />
<ClCompile Include="src\options.cpp" />
+ <ClCompile Include="src\yapp.cpp" />
<ClCompile Include="src\yapp_history.cpp" />
<ClCompile Include="src\yapp_history_dlg.cpp" />
- <ClCompile Include="src\yapp.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\popwin.cpp" />
diff --git a/plugins/YAPP/yapp_10.vcxproj.filters b/plugins/YAPP/yapp_10.vcxproj.filters index cb0d887b30..e1420633dc 100644 --- a/plugins/YAPP/yapp_10.vcxproj.filters +++ b/plugins/YAPP/yapp_10.vcxproj.filters @@ -39,6 +39,9 @@ <ClCompile Include="src\services.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/protocols/Weather/src/stdafx.cpp b/protocols/Weather/src/stdafx.cpp new file mode 100644 index 0000000000..67ade34c29 --- /dev/null +++ b/protocols/Weather/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 "weather.h"
\ No newline at end of file diff --git a/protocols/Weather/weather_10.vcxproj b/protocols/Weather/weather_10.vcxproj index 1450a2f2d1..d09c5d1cb1 100644 --- a/protocols/Weather/weather_10.vcxproj +++ b/protocols/Weather/weather_10.vcxproj @@ -185,7 +185,8 @@ </Link>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\weather.cpp">
+ <ClCompile Include="src\weather.cpp" />
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\weather_addstn.cpp" />
diff --git a/protocols/Weather/weather_10.vcxproj.filters b/protocols/Weather/weather_10.vcxproj.filters index 00fc2391f5..385b06f839 100644 --- a/protocols/Weather/weather_10.vcxproj.filters +++ b/protocols/Weather/weather_10.vcxproj.filters @@ -63,6 +63,9 @@ <ClCompile Include="src\weather_userinfo.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\resource.h">
diff --git a/protocols/Yahoo/Yahoo_10.vcxproj b/protocols/Yahoo/Yahoo_10.vcxproj index 5d3ba435b3..b31abeaaf1 100644 --- a/protocols/Yahoo/Yahoo_10.vcxproj +++ b/protocols/Yahoo/Yahoo_10.vcxproj @@ -205,10 +205,11 @@ <ClCompile Include="src\search.cpp" />
<ClCompile Include="src\server.cpp" />
<ClCompile Include="src\services.cpp" />
+ <ClCompile Include="src\yahoo.cpp" />
<ClCompile Include="src\user_info.cpp" />
<ClCompile Include="src\util.cpp" />
<ClCompile Include="src\webcam.cpp" />
- <ClCompile Include="src\yahoo.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\libyahoo2\crypt.c">
diff --git a/protocols/Yahoo/Yahoo_10.vcxproj.filters b/protocols/Yahoo/Yahoo_10.vcxproj.filters index 27ba01ff18..41fbf12816 100644 --- a/protocols/Yahoo/Yahoo_10.vcxproj.filters +++ b/protocols/Yahoo/Yahoo_10.vcxproj.filters @@ -87,6 +87,9 @@ <ClCompile Include="src\links.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\libyahoo2\config.h">
diff --git a/protocols/Yahoo/src/stdafx.cpp b/protocols/Yahoo/src/stdafx.cpp new file mode 100644 index 0000000000..54d3b5de4e --- /dev/null +++ b/protocols/Yahoo/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 "yahoo.h"
\ No newline at end of file diff --git a/src/core/stdclist/src/stdafx.cpp b/src/core/stdclist/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/src/core/stdclist/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/src/core/stdclist/stdclist.vcxproj b/src/core/stdclist/stdclist.vcxproj index 116d68bd24..6267a6d738 100644 --- a/src/core/stdclist/stdclist.vcxproj +++ b/src/core/stdclist/stdclist.vcxproj @@ -201,9 +201,10 @@ <ClCompile Include="src\clistmenus.cpp" />
<ClCompile Include="src\clistopts.cpp" />
<ClCompile Include="src\cluiopts.cpp" />
- <ClCompile Include="src\init.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\init.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\clc.h" />
diff --git a/src/core/stdclist/stdclist.vcxproj.filters b/src/core/stdclist/stdclist.vcxproj.filters index fa8001046e..03237b7fe3 100644 --- a/src/core/stdclist/stdclist.vcxproj.filters +++ b/src/core/stdclist/stdclist.vcxproj.filters @@ -36,6 +36,9 @@ <ClCompile Include="src\init.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\clc.h">
diff --git a/src/core/stdmsg/src/stdafx.cpp b/src/core/stdmsg/src/stdafx.cpp new file mode 100644 index 0000000000..b985a910cd --- /dev/null +++ b/src/core/stdmsg/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/src/core/stdmsg/stdmsg.vcxproj b/src/core/stdmsg/stdmsg.vcxproj index 50a6284f00..313a2924c5 100644 --- a/src/core/stdmsg/stdmsg.vcxproj +++ b/src/core/stdmsg/stdmsg.vcxproj @@ -197,10 +197,11 @@ <ClCompile Include="src\msgs.cpp" />
<ClCompile Include="src\msgtimedout.cpp" />
<ClCompile Include="src\richutil.cpp" />
- <ClCompile Include="src\srmm.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\statusicon.cpp" />
+ <ClCompile Include="src\srmm.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\cmdlist.h" />
diff --git a/src/core/stdmsg/stdmsg.vcxproj.filters b/src/core/stdmsg/stdmsg.vcxproj.filters index 751ea7199a..27fb189312 100644 --- a/src/core/stdmsg/stdmsg.vcxproj.filters +++ b/src/core/stdmsg/stdmsg.vcxproj.filters @@ -45,6 +45,9 @@ <ClCompile Include="src\statusicon.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\cmdlist.h">
|