repo: ngircd action: commit revision: path_from: revision_from: cf2110960058fdd0f58d854a6e878cde6b953dd8: path_to: revision_to:
commit cf2110960058fdd0f58d854a6e878cde6b953dd8 Author: Alexander BartonDate: Sun Dec 23 21:57:48 2001 +0000 - Conn_WriteStr() unterstuetzt nun variable Parameter. diff --git a/src/ngircd/conn.h b/src/ngircd/conn.h
--- a/src/ngircd/conn.h
+++ b/src/ngircd/conn.h
@@ -9,11 +9,14 @@
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.h,v 1.4 2001/12/15 00:08:27 alex Exp $
+ * $Id: conn.h,v 1.5 2001/12/23 21:57:48 alex Exp $
*
* conn.h: Verwaltung aller Netz-Verbindungen ("connections") (Header)
*
* $Log: conn.h,v $
+ * Revision 1.5 2001/12/23 21:57:48 alex
+ * - Conn_WriteStr() unterstuetzt nun variable Parameter.
+ *
* Revision 1.4 2001/12/15 00:08:27 alex
* - neue globale Funktionen: Conn_Write() und Conn_WriteStr().
*
@@ -43,7 +46,7 @@ GLOBAL BOOLEAN Conn_New_Listener( CONST INT Port );
GLOBAL VOID Conn_Handler( INT Timeout );
GLOBAL BOOLEAN Conn_Write( CONN_ID Idx, CHAR *Data, INT Len );
-GLOBAL BOOLEAN Conn_WriteStr( CONN_ID Idx, CHAR *Data );
+GLOBAL BOOLEAN Conn_WriteStr( CONN_ID Idx, CHAR *Format, ... );
#endif
-----END OF PAGE-----