diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-12 18:34:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-12 18:34:10 +0000 |
commit | 627687a2d798a8fa4ecbe4578c75d93bf97f6da5 (patch) | |
tree | ee3aa1c8cd6352c935ae548951ad0467d0bc57f3 /protocols/JabberG/src/jabber_proto.h | |
parent | 94299a59b85ed18ffcaadd7c857bea64fcc2864a (diff) |
- fix for Jabber popup menu;
- all calls of MS_CLIST_GETCONTACTDISPLAYNAME are replaced with direct calls of CLIST_INTERFACE;
- old unneeded function removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@4434 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_proto.h')
-rw-r--r-- | protocols/JabberG/src/jabber_proto.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/protocols/JabberG/src/jabber_proto.h b/protocols/JabberG/src/jabber_proto.h index 6810416685..0b898e90bd 100644 --- a/protocols/JabberG/src/jabber_proto.h +++ b/protocols/JabberG/src/jabber_proto.h @@ -797,9 +797,7 @@ struct CJabberProto : public PROTO_INTERFACE HANDLE JForkThreadEx(JThreadFunc, void*, UINT* threadID = NULL);
void JDeleteSetting(HANDLE hContact, const char* valueName);
-// DWORD JGetByte(const char* valueName, int parDefltValue);
DWORD JGetByte(HANDLE hContact, const char* valueName, int parDefltValue);
- char* JGetContactName(HANDLE hContact);
DWORD JGetDword(HANDLE hContact, const char* valueName, DWORD parDefltValue);
int JGetStaticString(const char* valueName, HANDLE hContact, char* dest, int dest_len);
int JGetStringUtf(HANDLE hContact, char* valueName, DBVARIANT* dbv);
@@ -810,7 +808,6 @@ struct CJabberProto : public PROTO_INTERFACE WORD JGetWord(HANDLE hContact, const char* valueName, int parDefltValue);
void JHookEvent(const char*, JEventFunc);
int JSendBroadcast(HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam);
-// DWORD JSetByte(const char* valueName, int parValue);
DWORD JSetByte(HANDLE hContact, const char* valueName, int parValue);
DWORD JSetDword(HANDLE hContact, const char* valueName, DWORD parValue);
DWORD JSetString(HANDLE hContact, const char* valueName, const char* parValue);
|