diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-03 12:31:44 +0200 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-03 12:32:36 +0200 |
commit | 48cb59cb5687303a608903259bb10eb9e6a9ee36 (patch) | |
tree | e7ef1bda96cac9fb9ed59ce7a29477a3d262c50e /plugins/CloudFile/src/Services/dropbox_service.h | |
parent | 89a1dbcab6947a68d81dd048e5d91cebdb0c2510 (diff) |
CloudFile: thread functions rewritten using PROTO::ForkThread
Diffstat (limited to 'plugins/CloudFile/src/Services/dropbox_service.h')
-rw-r--r-- | plugins/CloudFile/src/Services/dropbox_service.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CloudFile/src/Services/dropbox_service.h b/plugins/CloudFile/src/Services/dropbox_service.h index 793a27d52b..b6c5a7dfcd 100644 --- a/plugins/CloudFile/src/Services/dropbox_service.h +++ b/plugins/CloudFile/src/Services/dropbox_service.h @@ -4,8 +4,8 @@ class CDropboxService : public CCloudService { private: - static unsigned RequestAccessTokenThread(void *owner, void *param); - static unsigned __stdcall RevokeAccessTokenThread(void *param); + void __cdecl RequestAccessTokenThread(void *); + void __cdecl RevokeAccessTokenThread(void *); void HandleJsonError(JSONNode &node) override; |