summaryrefslogtreecommitdiff
path: root/plugins/Dropbox/src/stdafx.h
diff options
context:
space:
mode:
authorKirill Volinsky <Mataes2007@gmail.com>2017-11-30 08:28:00 +0300
committerKirill Volinsky <Mataes2007@gmail.com>2017-11-30 08:28:53 +0300
commit0a95d1c9e2791898c03eab04a06932ec65f3a934 (patch)
treed6da4343c1926c92d2ffe2b5600ce92047aca449 /plugins/Dropbox/src/stdafx.h
parent4c1b34caa7f00625b944b58ec9d69f4670cc4595 (diff)
Dropbox moved to deprecated (use CloudFile)
Diffstat (limited to 'plugins/Dropbox/src/stdafx.h')
-rw-r--r--plugins/Dropbox/src/stdafx.h87
1 files changed, 0 insertions, 87 deletions
diff --git a/plugins/Dropbox/src/stdafx.h b/plugins/Dropbox/src/stdafx.h
deleted file mode 100644
index 84aeb6e2a2..0000000000
--- a/plugins/Dropbox/src/stdafx.h
+++ /dev/null
@@ -1,87 +0,0 @@
-#ifndef _COMMON_H_
-#define _COMMON_H_
-
-#include <windows.h>
-#include <shlwapi.h>
-#include <commctrl.h>
-
-#include <malloc.h>
-#include <time.h>
-
-#include <map>
-
-#include <newpluginapi.h>
-
-#include <m_options.h>
-#include <m_database.h>
-#include <m_netlib.h>
-#include <m_clist.h>
-#include <m_skin.h>
-#include <m_icolib.h>
-#include <m_popup.h>
-#include <m_file.h>
-#include <m_json.h>
-#include <m_langpack.h>
-#include <m_message.h>
-#include <m_string.h>
-#include <m_gui.h>
-#include <m_chat.h>
-
-#include <m_protoint.h>
-#include <m_protosvc.h>
-
-#include <m_dropbox.h>
-
-#include "version.h"
-#include "resource.h"
-
-class CDropbox;
-
-#define DROPBOX_API_VER "/2"
-#define DROPBOX_WWW_URL "https://www.dropbox.com"
-#define DROPBOX_API "https://api.dropboxapi.com"
-#define DROPBOX_API_RPC DROPBOX_API DROPBOX_API_VER
-#define DROPBOX_CONTENT "https://content.dropboxapi.com"
-#define DROPBOX_API_CU DROPBOX_CONTENT DROPBOX_API_VER
-
-#define DROPBOX_APP_KEY "fa8du7gkf2q8xzg"
-#include "../../../miranda-private-keys/Dropbox/secret_key.h"
-
-class DropboxException
-{
- CMStringA message;
-
-public:
- DropboxException(const char *message) :
- message(message)
- {
- }
-
- const char* what() const throw()
- {
- return message.c_str();
- }
-};
-
-#define MODULE "Dropbox"
-
-#include "dropbox_options.h"
-#include "http_request.h"
-#include "api/account.h"
-#include "api/upload.h"
-#include "api/operations.h"
-#include "file_transfer.h"
-#include "dropbox.h"
-
-extern HINSTANCE g_hInstance;
-
-#define DROPBOX_FILE_CHUNK_SIZE 1024 * 1024 //1 MB
-
-#define BBB_ID_FILE_SEND 10001
-
-// icons
-void InitializeIcons();
-HANDLE GetIconHandleByName(const char *name);
-HICON LoadIconEx(int iconId, bool big = false);
-
-#endif //_COMMON_H_ \ No newline at end of file