summaryrefslogtreecommitdiff
path: root/src/ivysocket.h
diff options
context:
space:
mode:
authorfcolin2005-05-20 15:29:54 +0000
committerfcolin2005-05-20 15:29:54 +0000
commit5a19a3603418ed80bd39fc3a260ff6557045f7b0 (patch)
tree966cc8b2fcd3b81aaaec5d7b28f75b7469f571f0 /src/ivysocket.h
parente1b08a3c4cd478ed73b78152c9ec5252bcfc395a (diff)
downloadivy-c-5a19a3603418ed80bd39fc3a260ff6557045f7b0.zip
ivy-c-5a19a3603418ed80bd39fc3a260ff6557045f7b0.tar.gz
ivy-c-5a19a3603418ed80bd39fc3a260ff6557045f7b0.tar.bz2
ivy-c-5a19a3603418ed80bd39fc3a260ff6557045f7b0.tar.xz
portages des modifications sur windows
Diffstat (limited to 'src/ivysocket.h')
-rw-r--r--src/ivysocket.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ivysocket.h b/src/ivysocket.h
index 5dfdf0a..4602b64 100644
--- a/src/ivysocket.h
+++ b/src/ivysocket.h
@@ -49,7 +49,8 @@ extern "C" {
extern void SocketInit();
/* utility fonction do make vsprintf without buffer limit */
-extern int make_message(char ** buffer, int *size, const char *fmt, va_list ap);
+extern int make_message(char ** buffer, int *size, int offset, const char *fmt, va_list ap);
+extern int make_message_var(char ** buffer, int *size, int offset, const char *fmt, ...);
/* Forward def */
typedef struct _client *Client;
@@ -68,8 +69,6 @@ extern void SocketServerClose( Server server );
extern void SocketClose( Client client );
extern void SocketSend( Client client, char *fmt, ... );
-extern void SocketSendBuffered (Client client, char *fmt, ... );
-extern void SocketFlush ( Client client );
extern void SocketSendRaw( Client client, char *buffer, int len );
extern char *SocketGetPeerHost( Client client );
extern void SocketSetData( Client client, void *data );