diff options
author | George Hazan <george.hazan@gmail.com> | 2013-09-10 09:51:26 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-09-10 09:51:26 +0000 |
commit | 978f1a8b1ab79642c7ff4301ca00aff6eb4a2890 (patch) | |
tree | 398df9a4376f37edd22b652426a468d50ba7f8c5 /protocols/JabberG/src/jabber.h | |
parent | 2e7712a526556ead476ead3083039417f7eba863 (diff) |
obsolete function ThreadData::send(...) removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@6040 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber.h')
-rw-r--r-- | protocols/JabberG/src/jabber.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber.h b/protocols/JabberG/src/jabber.h index 585f434a88..20371a9e30 100644 --- a/protocols/JabberG/src/jabber.h +++ b/protocols/JabberG/src/jabber.h @@ -390,8 +390,8 @@ struct ThreadData void close(void);
void shutdown(void);
int recv(char* buf, size_t len);
- int send(char* buffer, int bufsize);
- int send(const char* fmt, ...);
+ int send(char* buffer, int bufsize = -1);
+// int send(const char* fmt, ...);
int send(HXML node);
int recvws(char* buffer, size_t bufsize, int flags);
|