diff options
author | George Hazan <george.hazan@gmail.com> | 2023-12-23 15:09:06 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-12-23 15:09:06 +0300 |
commit | 371ac8f6da293e5f4b69d51e3bcb511ba5c1b6e1 (patch) | |
tree | cd07cce643fc91495e6edcfa02412a51f69a7a2f /protocols/ICQ-WIM/src/proto.h | |
parent | 1d8b7300f544bc7ad3a6b251ddb4bbe8e6120f26 (diff) |
code cleaning
Diffstat (limited to 'protocols/ICQ-WIM/src/proto.h')
-rw-r--r-- | protocols/ICQ-WIM/src/proto.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/ICQ-WIM/src/proto.h b/protocols/ICQ-WIM/src/proto.h index f665094ad3..1afe659e85 100644 --- a/protocols/ICQ-WIM/src/proto.h +++ b/protocols/ICQ-WIM/src/proto.h @@ -318,13 +318,13 @@ class CIcqProto : public PROTO<CIcqProto> ////////////////////////////////////////////////////////////////////////////////////////
// group chats
- int __cdecl GroupchatEventHook(WPARAM, LPARAM);
- int __cdecl GroupchatMenuHook(WPARAM, LPARAM);
+ int __cdecl GcEventHook(WPARAM, LPARAM);
+ int __cdecl GcMenuHook(WPARAM, LPARAM);
- void Chat_ProcessLogMenu(SESSION_INFO *si, int);
- void Chat_SendPrivateMessage(GCHOOK *gch);
+ void GcProcessLogMenu(SESSION_INFO *si, int);
+ void GcSendPrivateMessage(GCHOOK *gch);
- SESSION_INFO* CreateGroupChat(const wchar_t *pwszId, const wchar_t *pwszNick);
+ SESSION_INFO* GcCreate(const wchar_t *pwszId, const wchar_t *pwszNick);
void RetrieveChatInfo(MCONTACT hContact);
|