From c7f4afbd3109c59adc0acdc391ac46a3ff11cc49 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Thu, 20 Feb 2014 07:55:02 +0000 Subject: precompiled headers revert git-svn-id: http://svn.miranda-ng.org/main/trunk@8185 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dropbox/src/common.h | 1 + plugins/Dropbox/src/dropbox.cpp | 2 +- plugins/Dropbox/src/dropbox_dialogs.cpp | 2 +- plugins/Dropbox/src/dropbox_events.cpp | 2 +- plugins/Dropbox/src/dropbox_icons.cpp | 2 +- plugins/Dropbox/src/dropbox_menus.cpp | 2 +- plugins/Dropbox/src/dropbox_services.cpp | 2 +- plugins/Dropbox/src/dropbox_transfers.cpp | 2 +- plugins/Dropbox/src/dropbox_utils.cpp | 2 +- plugins/Dropbox/src/main.cpp | 2 +- plugins/Dropbox/src/stdafx.cpp | 18 ++++++++++++++++++ 11 files changed, 28 insertions(+), 9 deletions(-) create mode 100644 plugins/Dropbox/src/stdafx.cpp (limited to 'plugins/Dropbox/src') diff --git a/plugins/Dropbox/src/common.h b/plugins/Dropbox/src/common.h index 89afef0c2c..d30863a33b 100644 --- a/plugins/Dropbox/src/common.h +++ b/plugins/Dropbox/src/common.h @@ -26,6 +26,7 @@ #include "version.h" #include "resource.h" +#include "dropbox.h" #define MODULE "Dropbox" diff --git a/plugins/Dropbox/src/dropbox.cpp b/plugins/Dropbox/src/dropbox.cpp index ed705d6dea..d6a6bd65d9 100644 --- a/plugins/Dropbox/src/dropbox.cpp +++ b/plugins/Dropbox/src/dropbox.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" void CDropbox::Init() { diff --git a/plugins/Dropbox/src/dropbox_dialogs.cpp b/plugins/Dropbox/src/dropbox_dialogs.cpp index 1bbe8af20c..6c07e4f0bf 100644 --- a/plugins/Dropbox/src/dropbox_dialogs.cpp +++ b/plugins/Dropbox/src/dropbox_dialogs.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" INT_PTR CALLBACK CDropbox::TokenRequestProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam) { diff --git a/plugins/Dropbox/src/dropbox_events.cpp b/plugins/Dropbox/src/dropbox_events.cpp index 62684d66d5..02e2a788bd 100644 --- a/plugins/Dropbox/src/dropbox_events.cpp +++ b/plugins/Dropbox/src/dropbox_events.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" int CDropbox::OnModulesLoaded(WPARAM wParam, LPARAM lParam) { diff --git a/plugins/Dropbox/src/dropbox_icons.cpp b/plugins/Dropbox/src/dropbox_icons.cpp index c781369f8e..d13ed695f7 100644 --- a/plugins/Dropbox/src/dropbox_icons.cpp +++ b/plugins/Dropbox/src/dropbox_icons.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" void CDropbox::InitIcons() { diff --git a/plugins/Dropbox/src/dropbox_menus.cpp b/plugins/Dropbox/src/dropbox_menus.cpp index b111e51884..7ae155bcf5 100644 --- a/plugins/Dropbox/src/dropbox_menus.cpp +++ b/plugins/Dropbox/src/dropbox_menus.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" HGENMENU CDropbox::ContactMenuItems[CMI_MAX]; diff --git a/plugins/Dropbox/src/dropbox_services.cpp b/plugins/Dropbox/src/dropbox_services.cpp index 0389021920..124a76b4e3 100644 --- a/plugins/Dropbox/src/dropbox_services.cpp +++ b/plugins/Dropbox/src/dropbox_services.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" INT_PTR CDropbox::GetCaps(WPARAM wParam, LPARAM lParam) { diff --git a/plugins/Dropbox/src/dropbox_transfers.cpp b/plugins/Dropbox/src/dropbox_transfers.cpp index 6a0d885894..54c2f854af 100644 --- a/plugins/Dropbox/src/dropbox_transfers.cpp +++ b/plugins/Dropbox/src/dropbox_transfers.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" HttpRequest *CDropbox::CreateFileSendChunkedRequest(const char *data, int length) { diff --git a/plugins/Dropbox/src/dropbox_utils.cpp b/plugins/Dropbox/src/dropbox_utils.cpp index caf4d9c980..eaed860e19 100644 --- a/plugins/Dropbox/src/dropbox_utils.cpp +++ b/plugins/Dropbox/src/dropbox_utils.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" void CDropbox::ShowNotification(const wchar_t *caption, const wchar_t *message, int flags, MCONTACT hContact) { diff --git a/plugins/Dropbox/src/main.cpp b/plugins/Dropbox/src/main.cpp index c5bfbd358a..30ce75dc2a 100644 --- a/plugins/Dropbox/src/main.cpp +++ b/plugins/Dropbox/src/main.cpp @@ -1,4 +1,4 @@ -#include "dropbox.h" +#include "common.h" int hLangpack; HINSTANCE g_hInstance; diff --git a/plugins/Dropbox/src/stdafx.cpp b/plugins/Dropbox/src/stdafx.cpp new file mode 100644 index 0000000000..2aa7ce281e --- /dev/null +++ b/plugins/Dropbox/src/stdafx.cpp @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-14 Miranda NG project (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