diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-13 19:32:08 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-13 19:32:08 +0000 |
commit | 3e9e349a53492e5377154b8518803058d72e37ed (patch) | |
tree | 4bc613530728ee890c0e521654c004efd581d799 /plugins/Dropbox/src/dropbox.h | |
parent | d333cb91eb0fb51faf34772258a5084e95f047d8 (diff) |
Dropbox: moved to core ui
git-svn-id: http://svn.miranda-ng.org/main/trunk@13574 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox.h')
-rw-r--r-- | plugins/Dropbox/src/dropbox.h | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/plugins/Dropbox/src/dropbox.h b/plugins/Dropbox/src/dropbox.h index 1036ff5e04..e8340d5fcd 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -1,22 +1,6 @@ #ifndef _DROPBOX_PROTO_H_
#define _DROPBOX_PROTO_H_
-#include "http_request.h"
-#include "file_transfer.h"
-
-#define DROPBOX_API_VER "1"
-#define DROPBOX_API_ROOT "sandbox"
-#define DROPBOX_WWW_URL "https://www.dropbox.com/"
-#define DROPBOX_API_URL "https://api.dropbox.com/" DROPBOX_API_VER
-#define DROPBOX_APICONTENT_URL "https://api-content.dropbox.com/" DROPBOX_API_VER
-
-#define DROPBOX_APP_KEY "fa8du7gkf2q8xzg"
-#include "..\..\..\miranda-private-keys\Dropbox\secret_key.h"
-
-#define DROPBOX_FILE_CHUNK_SIZE 4 * 1024 * 1024 //4 MB
-
-#define BBB_ID_FILE_SEND 10001
-
enum
{
CMI_SEND_FILES,
@@ -25,6 +9,8 @@ enum class CDropbox : public MZeroedObject
{
+ friend CDropboxOptionsMain;
+
struct CommandParam
{
CDropbox *instance;
|