diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-01 18:28:13 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-01 18:28:13 +0000 |
commit | 140039aa214f240421dc3b629d15d5ed506c72af (patch) | |
tree | ffc2687e88b3854fbbc14fc815510e016e2279ef /plugins/Dropbox/src/dropbox.h | |
parent | 981c8fa2b7348484507ff13488ace6db2c79b611 (diff) |
Dropbox: chat support
git-svn-id: http://svn.miranda-ng.org/main/trunk@15138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox.h')
-rw-r--r-- | plugins/Dropbox/src/dropbox.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/dropbox.h b/plugins/Dropbox/src/dropbox.h index 8cad46c4ea..31167ff7aa 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -113,6 +113,13 @@ private: static char* HttpStatusToText(HTTP_STATUS status);
static void HandleHttpResponseError(NETLIBHTTPREQUEST *response);
+ static MEVENT AddEventToDb(MCONTACT hContact, WORD type, DWORD flags, DWORD cbBlob, PBYTE pBlob);
+
+ void SendToContact(MCONTACT hContact, const char* data);
+ void PasteToInputArea(MCONTACT hContact, const char* data);
+ void PasteToClipboard(MCONTACT hContact, const char* data);
+ void Report(MCONTACT hContact, const char* data);
+
template<int(CDropbox::*Event)(WPARAM, LPARAM)>
static int GlobalEvent(void *obj, WPARAM wParam, LPARAM lParam)
{
|