diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-17 09:52:42 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-17 09:52:42 +0000 |
commit | b84ed6e7c85a8a59379aedae5501074fcfc9b161 (patch) | |
tree | 040fcfe3885d053d849b5dc2915d667682589f82 /plugins/Dropbox/src/dropbox.h | |
parent | b9e3d0d154f994e77091e250a412415a2c454140 (diff) |
dropbox: small improvments
git-svn-id: http://svn.miranda-ng.org/main/trunk@12880 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox/src/dropbox.h')
-rw-r--r-- | plugins/Dropbox/src/dropbox.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/Dropbox/src/dropbox.h b/plugins/Dropbox/src/dropbox.h index 65fc092e70..bb07d1f921 100644 --- a/plugins/Dropbox/src/dropbox.h +++ b/plugins/Dropbox/src/dropbox.h @@ -70,6 +70,10 @@ private: static HANDLE CreateProtoServiceFunctionObj(const char *szService, MIRANDASERVICEOBJ serviceProc, void *obj);
static INT_PTR ProtoGetCaps(WPARAM wParam, LPARAM lParam);
+ static INT_PTR ProtoGetName(WPARAM wParam, LPARAM lParam);
+ static INT_PTR ProtoLoadIcon(WPARAM wParam, LPARAM lParam);
+ static INT_PTR ProtoGetStatus(WPARAM wParam, LPARAM lParam);
+ static INT_PTR ProtoSetStatus(void *obj, WPARAM wParam, LPARAM lParam);
static INT_PTR ProtoSendFile(void *obj, WPARAM wParam, LPARAM lParam);
static INT_PTR ProtoSendMessage(void *obj, WPARAM wParam, LPARAM lParam);
static INT_PTR ProtoReceiveMessage(void *obj, WPARAM wParam, LPARAM lParam);
@@ -112,6 +116,7 @@ private: // icons
void InitializeIcons();
+ static HICON LoadIconEx(const char *name, bool big);
// menus
void InitializeMenus();
|