summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-02-20 07:55:02 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-02-20 07:55:02 +0000
commitc7f4afbd3109c59adc0acdc391ac46a3ff11cc49 (patch)
tree9b52c8c3235f7fabf4a49695f66b25341c3c4ad0 /plugins/Dropbox/src
parentbd101972a977edb38fc0c12f4c5b556eb7a2ac99 (diff)
precompiled headers revert
git-svn-id: http://svn.miranda-ng.org/main/trunk@8185 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src')
-rw-r--r--plugins/Dropbox/src/common.h1
-rw-r--r--plugins/Dropbox/src/dropbox.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_dialogs.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_events.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_icons.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_menus.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_services.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_transfers.cpp2
-rw-r--r--plugins/Dropbox/src/dropbox_utils.cpp2
-rw-r--r--plugins/Dropbox/src/main.cpp2
-rw-r--r--plugins/Dropbox/src/stdafx.cpp18
11 files changed, 28 insertions, 9 deletions
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 <http://www.gnu.org/licenses/>.
+*/
+
+#include "common.h" \ No newline at end of file