diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-26 17:51:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-26 17:51:03 +0000 |
commit | 23a378d2ae8b2800a355e37f8bc612aeace26fc9 (patch) | |
tree | 93ae9768b704d1e9bfb190077c292d13ae675dde /protocols/Xfire/src/baseProtocol.h | |
parent | deb1535897b89ae8981279c5af5479a7b7c17f66 (diff) |
fix for 64-bit compilation
git-svn-id: http://svn.miranda-ng.org/main/trunk@2505 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Xfire/src/baseProtocol.h')
-rw-r--r-- | protocols/Xfire/src/baseProtocol.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/protocols/Xfire/src/baseProtocol.h b/protocols/Xfire/src/baseProtocol.h index 169a41804f..d56f68b0b6 100644 --- a/protocols/Xfire/src/baseProtocol.h +++ b/protocols/Xfire/src/baseProtocol.h @@ -117,11 +117,13 @@ extern HINSTANCE hinstance; extern int bpStatus;
//Services.c
-int GetCaps(WPARAM wParam,LPARAM lParam);
-int GetName(WPARAM wParam,LPARAM lParam);
-int TMLoadIcon(WPARAM wParam,LPARAM lParam);
-int SetStatus(WPARAM wParam,LPARAM lParam);
-int GetStatus(WPARAM wParam,LPARAM lParam);
+INT_PTR GetCaps(WPARAM wParam,LPARAM lParam);
+INT_PTR GetName(WPARAM wParam,LPARAM lParam);
+INT_PTR SetStatus(WPARAM wParam,LPARAM lParam);
+INT_PTR GetStatus(WPARAM wParam,LPARAM lParam);
+INT_PTR TMLoadIcon(WPARAM wParam,LPARAM lParam);
+INT_PTR SetNickName(WPARAM newnick, LPARAM lparam);
+
BOOL IsXFireContact(HANDLE h);
int displayPopup(HWND hWnd, LPCSTR lpText, LPCSTR lpCaption, UINT uType,HICON hhicon=NULL);
BOOL CreateToolTip(int toolID, HWND hDlg, CHAR* pText);
@@ -133,7 +135,6 @@ char* GetLaunchPath(char*launch); unsigned short r(unsigned short data);
BOOL GetServerIPPort(DWORD pid,char*localaddrr,unsigned long localaddr,char*ip1,char*ip2,char*ip3,char*ip4,long*port);
BOOL GetServerIPPort2(DWORD pid,char*localaddrr,unsigned long localaddr,char*ip1,char*ip2,char*ip3,char*ip4,long*port);
-int SetNickName(WPARAM newnick, LPARAM lparam);
BOOL FindTeamSpeak(DWORD*pid,int*vid);
char*menuitemtext(char*mtext);
BOOL checkCommandLine(HANDLE hProcess,char * mustcontain,char * mustnotcontain);
|