diff options
Diffstat (limited to 'protocols/JabberG')
-rw-r--r-- | protocols/JabberG/src/jabber_util.cpp | 9 | ||||
-rw-r--r-- | protocols/JabberG/src/stdafx.h | 4 |
2 files changed, 0 insertions, 13 deletions
diff --git a/protocols/JabberG/src/jabber_util.cpp b/protocols/JabberG/src/jabber_util.cpp index 77534292f5..1e671818ea 100644 --- a/protocols/JabberG/src/jabber_util.cpp +++ b/protocols/JabberG/src/jabber_util.cpp @@ -134,15 +134,6 @@ TCHAR* JabberPrepareJid(LPCTSTR jid) return szNewJid;
}
-void strdel(char* parBuffer, int len)
-{
- char* p;
- for (p = parBuffer + len; *p != 0; p++)
- p[-len] = *p;
-
- p[-len] = '\0';
-}
-
void __stdcall JabberUrlDecodeW(WCHAR *str)
{
if (str == NULL)
diff --git a/protocols/JabberG/src/stdafx.h b/protocols/JabberG/src/stdafx.h index bab4c80f57..5645dc0090 100644 --- a/protocols/JabberG/src/stdafx.h +++ b/protocols/JabberG/src/stdafx.h @@ -759,10 +759,6 @@ bool JabberReadXep203delay(HXML node, time_t &msgTime); int UIEmulateBtnClick(HWND hwndDlg, UINT idcButton);
void UIShowControls(HWND hwndDlg, int *idList, int nCmdShow);
-//---- jabber_xml.cpp -------------------------------------------------------------------
-
-void strdel(char* parBuffer, int len);
-
//---- jabber_userinfo.cpp --------------------------------------------------------------
void JabberUserInfoUpdate(MCONTACT hContact);
|