Check-in Number:
|
4133 | |
Date: |
2001-Jun-29 15:58:53 (local)
2001-Jun-29 13:58:53 (UTC) |
User: | rse |
Branch: | |
Comment: |
We still have not finally determined whether xds_decode() receives a
particular buffer or whether the buffer is attached to the XDS handle,
but nevertheless xds_vdecode() has to match xds_decode(), so currently
we have to add "const char* buf" also to xds_vdecode() to make the API
consistent up to now. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/xds.h 1.6 -> 1.7
--- xds.h 2001/06/29 13:55:47 1.6
+++ xds.h 2001/06/29 13:58:53 1.7
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/xds/Attic/xds.h,v $
- $Revision: 1.6 $
+ $Revision: 1.7 $
Copyright (c) 2001 by Cable & Wireless Deutschland.
@@ -48,6 +48,6 @@
int xds_decode(xds_t* context, const char* buf, const char* fmt, ...);
int xds_vencode(xds_t* context, const char* fmt, va_list args);
-int xds_vdecode(xds_t* context, const char* fmt, va_list args);
+int xds_vdecode(xds_t* context, const char* buf, const char* fmt, va_list args);
#endif /* !defined(__LIBXDS_H__) */
|
|