12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef _PHP_XMLRPC_H
- #define _PHP_XMLRPC_H
- #if 1
- extern zend_module_entry xmlrpc_module_entry;
- #define phpext_xmlrpc_ptr &xmlrpc_module_entry
- #include "php_version.h"
- #define PHP_XMLRPC_VERSION PHP_VERSION
- PHP_MINIT_FUNCTION(xmlrpc);
- PHP_MINFO_FUNCTION(xmlrpc);
- PHP_FUNCTION(xmlrpc_encode);
- PHP_FUNCTION(xmlrpc_decode);
- PHP_FUNCTION(xmlrpc_decode_request);
- PHP_FUNCTION(xmlrpc_encode_request);
- PHP_FUNCTION(xmlrpc_get_type);
- PHP_FUNCTION(xmlrpc_set_type);
- PHP_FUNCTION(xmlrpc_is_fault);
- PHP_FUNCTION(xmlrpc_server_create);
- PHP_FUNCTION(xmlrpc_server_destroy);
- PHP_FUNCTION(xmlrpc_server_register_method);
- PHP_FUNCTION(xmlrpc_server_call_method);
- PHP_FUNCTION(xmlrpc_parse_method_descriptions);
- PHP_FUNCTION(xmlrpc_server_add_introspection_data);
- PHP_FUNCTION(xmlrpc_server_register_introspection_callback);
- #else
- #define phpext_xmlrpc_ptr NULL
- #endif
- #endif
|