diff options
author | aunsane <aunsane@gmail.com> | 2018-02-19 00:00:03 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2018-02-19 00:00:20 +0300 |
commit | 46e398c0d295f3d33fe4c0450c36e1fc45a95616 (patch) | |
tree | 727617421cce4e6cc7f0863b4c4fcf367e135a10 /plugins/CloudFile/src/stdafx.h | |
parent | 66c4ae72a70a6e155c4a2a6d14c91c532cdb3974 (diff) |
CloudFile: added support for the usual accounts system(#1144)
Diffstat (limited to 'plugins/CloudFile/src/stdafx.h')
-rw-r--r-- | plugins/CloudFile/src/stdafx.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/plugins/CloudFile/src/stdafx.h b/plugins/CloudFile/src/stdafx.h index a002e334c2..dd5d93f088 100644 --- a/plugins/CloudFile/src/stdafx.h +++ b/plugins/CloudFile/src/stdafx.h @@ -5,6 +5,9 @@ #include <shlwapi.h> #include <commctrl.h> +#include <exdisp.h> +#include <msapi/comptr.h> + #include <malloc.h> #include <time.h> @@ -63,7 +66,7 @@ public: #include "file_transfer.h" // services -#include "cloud_service.h" +#include "cloud_file.h" #include "oauth.h" #include "Services\dropbox_service.h" #include "Services\google_service.h" @@ -99,15 +102,11 @@ int OnOptionsInitialized(WPARAM wParam, LPARAM); // transfers extern LIST<FileTransferParam> Transfers; -INT_PTR ProtoSendFile(void *obj, WPARAM, LPARAM lParam); -INT_PTR ProtoSendFileInterceptor(void *obj, WPARAM wParam, LPARAM lParam); -INT_PTR ProtoCancelFile(WPARAM, LPARAM lParam); UINT UploadAndReportProgressThread(void *owner, void *arg); // utils void ShowNotification(const wchar_t *caption, const wchar_t *message, int flags, MCONTACT hContact = NULL); void ShowNotification(const wchar_t *message, int flags, MCONTACT hContact = NULL); -MEVENT AddEventToDb(MCONTACT hContact, WORD type, DWORD flags, DWORD cbBlob, PBYTE pBlob); bool CanSendToContact(MCONTACT hContact); void SendToContact(MCONTACT hContact, const wchar_t *data); void PasteToInputArea(MCONTACT hContact, const wchar_t *data); |