summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/skype_proto.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2013-06-19 21:21:10 +0000
committerAlexander Lantsev <aunsane@gmail.com>2013-06-19 21:21:10 +0000
commitc797ebe33b5e5ad929392be428090708df42321b (patch)
treed75452ee6fd06db4a1ca9a0dd6388c8682258394 /protocols/Skype/src/skype_proto.h
parent2e1a5d69fbe1e329bde49c2ae6e9be82017fbd00 (diff)
Skype: x64 compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@5051 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r--protocols/Skype/src/skype_proto.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h
index f60d88faa9..24df7c7e40 100644
--- a/protocols/Skype/src/skype_proto.h
+++ b/protocols/Skype/src/skype_proto.h
@@ -432,7 +432,7 @@ protected:
// menus
HGENMENU m_hMenuRoot;
static HANDLE hChooserMenu;
- static std::map<int, HANDLE> contactMenuItems;
+ static std::map<size_t, HANDLE> contactMenuItems;
virtual int __cdecl RequestAuth(WPARAM, LPARAM);
virtual int __cdecl GrantAuth(WPARAM, LPARAM);
@@ -442,12 +442,12 @@ protected:
static INT_PTR MenuChooseService(WPARAM wParam, LPARAM lParam);
- INT_PTR __cdecl IgnoreCommand(WPARAM, LPARAM);
- INT_PTR __cdecl BlockCommand(WPARAM, LPARAM);
+ int __cdecl IgnoreCommand(WPARAM, LPARAM);
+ int __cdecl BlockCommand(WPARAM, LPARAM);
INT_PTR __cdecl InviteCommand(WPARAM, LPARAM);
- INT_PTR __cdecl SetBookmarkCommand(WPARAM, LPARAM);
+ int __cdecl SetBookmarkCommand(WPARAM, LPARAM);
INT_PTR __cdecl ShowBookmarksCommand(WPARAM, LPARAM);
static int PrebuildContactMenu(WPARAM wParam, LPARAM lParam);