diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-02-26 12:36:50 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-02-26 12:36:50 +0000 |
commit | b25601a5044b7f5ecbc0b70c5f6e556a80be0873 (patch) | |
tree | 3cd8104a519d9ff6909c7fb1cfe0947aa86ee176 /plugins/Dropbox/src/dropbox.h | |
parent | 05a9c3c86be1b43c657ec84365a0de8ca162aaa0 (diff) |
Dropbox: support to file description
git-svn-id: http://svn.miranda-ng.org/main/trunk@16346 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox.h')
-rw-r--r-- | plugins/Dropbox/src/dropbox.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Dropbox/src/dropbox.h b/plugins/Dropbox/src/dropbox.h index dba4681042..5f9ff2e6b5 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -120,10 +120,10 @@ private: 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(const char* data);
- void Report(MCONTACT hContact, const char* data);
+ void SendToContact(MCONTACT hContact, const char *data, const TCHAR *description = NULL);
+ void PasteToInputArea(MCONTACT hContact, const char *data, const TCHAR *description = NULL);
+ void PasteToClipboard(const char *data, const TCHAR *description = NULL);
+ void Report(MCONTACT hContact, const char *data, const TCHAR *description = NULL);
template<int(CDropbox::*Event)(WPARAM, LPARAM)>
static int GlobalEvent(void *obj, WPARAM wParam, LPARAM lParam)
|