/* +----------------------------------------------------------------------+ | PHP version 4.0 | +----------------------------------------------------------------------+ | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 2.0 of the PHP license, | | that is bundled with this package in the file LICENSE, and is | | available at through the world-wide-web at | | http://www.php.net/license/2_0.txt. | | If you did not receive a copy of the PHP license and are unable to | | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ | Author: Andrei Zmievski | +----------------------------------------------------------------------+ */ /* $Id$ */ #ifndef PHP_WDDX_API_H #define PHP_WDDX_API_H #define WDDX_ARRAY_S "" #define WDDX_ARRAY_E "" #define WDDX_BOOLEAN "" #define WDDX_CHAR "" #define WDDX_DATA_S "" #define WDDX_DATA_E "" #define WDDX_HEADER "
" #define WDDX_HEADER_COMMENT "
" #define WDDX_NULL "" #define WDDX_NUMBER "%s" #define WDDX_PACKET_S "" #define WDDX_PACKET_E "" #define WDDX_STRING_S "" #define WDDX_STRING_E "" #define WDDX_STRUCT_S "" #define WDDX_STRUCT_E "" #define WDDX_VAR_S "" #define WDDX_VAR_E "" typedef struct _wddx_packet wddx_packet; wddx_packet *php_wddx_constructor(void); void php_wddx_destructor(wddx_packet *packet); void php_wddx_packet_start(wddx_packet *packet, char *comment); void php_wddx_packet_end(wddx_packet *packet); void php_wddx_serialize_var(wddx_packet *packet, zval *var, char *name); void php_wddx_add_chunk(wddx_packet *packet, char *str); void php_wddx_deserialize_ex(char *, int, zval *return_value); char *php_wddx_gather(wddx_packet *packet); #endif /* PHP_WDDX_API_H */