php_xmlrpc.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*
  2. This file is part of, or distributed with, libXMLRPC - a C library for
  3. xml-encoded function calls.
  4. Author: Dan Libby (dan@libby.com)
  5. Epinions.com may be contacted at feedback@epinions-inc.com
  6. */
  7. /*
  8. Copyright 2001 Epinions, Inc.
  9. Subject to the following 3 conditions, Epinions, Inc. permits you, free
  10. of charge, to (a) use, copy, distribute, modify, perform and display this
  11. software and associated documentation files (the "Software"), and (b)
  12. permit others to whom the Software is furnished to do so as well.
  13. 1) The above copyright notice and this permission notice shall be included
  14. without modification in all copies or substantial portions of the
  15. Software.
  16. 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
  17. ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
  18. IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  19. PURPOSE OR NONINFRINGEMENT.
  20. 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
  21. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
  22. OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
  23. NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
  24. DAMAGES.
  25. */
  26. /* auto-generated portions of this file are also subject to the php license */
  27. /*
  28. +----------------------------------------------------------------------+
  29. | PHP Version 5 |
  30. +----------------------------------------------------------------------+
  31. | Copyright (c) 1997-2016 The PHP Group |
  32. +----------------------------------------------------------------------+
  33. | This source file is subject to version 3.01 of the PHP license, |
  34. | that is bundled with this package in the file LICENSE, and is |
  35. | available through the world-wide-web at the following url: |
  36. | http://www.php.net/license/3_01.txt |
  37. | If you did not receive a copy of the PHP license and are unable to |
  38. | obtain it through the world-wide-web, please send a note to |
  39. | license@php.net so we can mail you a copy immediately. |
  40. +----------------------------------------------------------------------+
  41. | Author: Dan Libby |
  42. +----------------------------------------------------------------------+
  43. */
  44. /* $Id$ */
  45. #ifndef _PHP_XMLRPC_H
  46. #define _PHP_XMLRPC_H
  47. #if 1 /* HAVE_XMLRPC */
  48. extern zend_module_entry xmlrpc_module_entry;
  49. #define phpext_xmlrpc_ptr &xmlrpc_module_entry
  50. PHP_MINIT_FUNCTION(xmlrpc);
  51. PHP_MINFO_FUNCTION(xmlrpc);
  52. PHP_FUNCTION(xmlrpc_encode);
  53. PHP_FUNCTION(xmlrpc_decode);
  54. PHP_FUNCTION(xmlrpc_decode_request);
  55. PHP_FUNCTION(xmlrpc_encode_request);
  56. PHP_FUNCTION(xmlrpc_get_type);
  57. PHP_FUNCTION(xmlrpc_set_type);
  58. PHP_FUNCTION(xmlrpc_is_fault);
  59. PHP_FUNCTION(xmlrpc_server_create);
  60. PHP_FUNCTION(xmlrpc_server_destroy);
  61. PHP_FUNCTION(xmlrpc_server_register_method);
  62. PHP_FUNCTION(xmlrpc_server_call_method);
  63. PHP_FUNCTION(xmlrpc_parse_method_descriptions);
  64. PHP_FUNCTION(xmlrpc_server_add_introspection_data);
  65. PHP_FUNCTION(xmlrpc_server_register_introspection_callback);
  66. #else
  67. #define phpext_xmlrpc_ptr NULL
  68. #endif
  69. #endif /* _PHP_XMLRPC_H */
  70. /*
  71. * Local variables:
  72. * tab-width: 4
  73. * c-basic-offset: 4
  74. * End:
  75. */