/* $Source: /v/ossp/cvs/ossp-pkg/xds/Attic/xds.h,v $ $Revision: 1.8 $ Copyright (c) 2001 by Cable & Wireless Deutschland. Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the included license for more details. */ #ifndef __LIBXDS_H__ #define __LIBXDS_H__ #include #include struct xds_st; typedef struct xds_st xds_t; typedef int (*xds_fmt_cb_t)(xds_t* context, void* fmt_context, void* buf, size_t buf_size, va_list args); typedef enum { XDS_ENCODE, XDS_DECODE } xds_mode_t; typedef enum { XDS_LOAN, XDS_GIFT } xds_buf_flag_t; xds_t* xds_init(xds_mode_t); void xds_destroy(xds_t* context); int xds_register(xds_t* context, const char* name, xds_fmt_cb_t callback, void* formatter_context); int xds_unregister(xds_t* context, const char* name); int xds_set_buffer(xds_t* context, xds_buf_flag_t flag, void* buf, size_t buf_size); int xds_get_buffer(xds_t* context, xds_buf_flag_t flag, void** buf, size_t* buf_size); int xds_encode(xds_t* context, const char* fmt, ...); int xds_decode(xds_t* context, const char* fmt, ...); #endif /* !defined(__LIBXDS_H__) */