system_methods_private.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. This file is part of libXMLRPC - a C library for xml-encoded function calls.
  3. Author: Dan Libby (dan@libby.com)
  4. Epinions.com may be contacted at feedback@epinions-inc.com
  5. */
  6. /*
  7. Copyright 2001 Dan Libby, Epinions, Inc.
  8. Subject to the following 3 conditions, Epinions, Inc. permits you, free
  9. of charge, to (a) use, copy, distribute, modify, perform and display this
  10. software and associated documentation files (the "Software"), and (b)
  11. permit others to whom the Software is furnished to do so as well.
  12. 1) The above copyright notice and this permission notice shall be included
  13. without modification in all copies or substantial portions of the
  14. Software.
  15. 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
  16. ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
  17. IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
  18. PURPOSE OR NONINFRINGEMENT.
  19. 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
  21. OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
  22. NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
  23. DAMAGES.
  24. */
  25. /* IMPORTANT!
  26. *
  27. * only non-public things should be in this file. It is fine for any .c file
  28. * in xmlrpc/src to include it, but users of the public API should never
  29. * include it, and thus *.h files that are part of the public API should
  30. * never include it, or they would break if this file is not present.
  31. */
  32. #ifndef __SYSTEM_METHODS_PRIVATE_H
  33. /*
  34. * Avoid include redundancy.
  35. */
  36. #define __SYSTEM_METHODS_PRIVATE_H
  37. /*----------------------------------------------------------------------------
  38. * system_methods_private.h
  39. *
  40. * Purpose:
  41. * define non-public system.* methods
  42. * Comments:
  43. * xsm = xmlrpc system methods
  44. */
  45. /*----------------------------------------------------------------------------
  46. * Constants
  47. */
  48. #define xsm_token_system_multicall "system.multiCall"
  49. #define xsm_token_system_get_capabilities "system.getCapabilities"
  50. /*----------------------------------------------------------------------------
  51. * Includes
  52. */
  53. /*----------------------------------------------------------------------------
  54. * Structures
  55. */
  56. /*----------------------------------------------------------------------------
  57. * Globals
  58. */
  59. /*----------------------------------------------------------------------------
  60. * Functions
  61. */
  62. void xsm_register(XMLRPC_SERVER server);
  63. int xsm_is_system_method(XMLRPC_Callback cb);
  64. /*----------------------------------------------------------------------------
  65. * Macros
  66. */
  67. #endif /* __SYSTEM_METHODS_PRIVATE_H */