You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Jani Taskinen b17dc14f18 MFH: nuketh C++ comments 18 years ago
..
README adding xmlrpc extension, per Stig's request 25 years ago
acinclude.m4 MFB_4_3: Quote macro names in AC_DEFUN() 21 years ago
base64.c Fixed bug #40703 (Resolved a possible namespace conflict between libxmlrpc 19 years ago
base64.h Fixed bug #40703 (Resolved a possible namespace conflict between libxmlrpc 19 years ago
encodings.c limit iconv parameters here too 19 years ago
encodings.h adding xmlrpc extension, per Stig's request 25 years ago
queue.c merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
queue.h Removed C++ style comments. 22 years ago
simplestring.c Fix some compile warnings (patch by Joe Orton) 22 years ago
simplestring.h merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
system_methods.c merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
system_methods_private.h adding xmlrpc extension, per Stig's request 25 years ago
xml_element.c MFH: fix compile warnings (#38257) 20 years ago
xml_element.h make it compile again and nuke most warnings 25 years ago
xml_to_dandarpc.c Fixed bug #40703 (Resolved a possible namespace conflict between libxmlrpc 19 years ago
xml_to_dandarpc.h adding xmlrpc extension, per Stig's request 25 years ago
xml_to_soap.c MFH: nuketh C++ comments 18 years ago
xml_to_soap.h patches to sync with sourceforge project, version 0.50. primary change: adds support for SOAP v 1.1 25 years ago
xml_to_xmlrpc.c Fix Windows Build 19 years ago
xml_to_xmlrpc.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc.c Fixed bug #42189 (xmlrpc_set_type() crashes php on invalid datetime 19 years ago
xmlrpc.h merged in updates from SF project. bring php repository up to date with xmlrpc-epi version 0.51 24 years ago
xmlrpc.m4 MFB_4_3: Quote macro names in AC_DEFUN() 21 years ago
xmlrpc_introspection.c MFH: - Fixed bug #35723 (xmlrpc_introspection.c fails compile per C99 std) 20 years ago
xmlrpc_introspection.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc_introspection_private.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc_private.h patches to sync with sourceforge project, version 0.50. primary change: adds support for SOAP v 1.1 25 years ago
xmlrpc_win32.h - MFH: silent redefinition warning 18 years ago

README

organization of this directory is moving towards this approach:

<module>.h -- public API and data types
<module>_private.h -- protected API and data types
<module>.c -- implementation and private API / types

The rules are:
.c files may include *_private.h.
.h files may not include *_private.h

This allows us to have a nicely encapsulated C api with opaque data types and private functions
that are nonetheless shared between source files without redundant extern declarations..