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.
 
 
 
 
 
 
foobar ae5204a02a MFH: - Fixed bug #35723 (xmlrpc_introspection.c fails compile per C99 std) 20 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 Removed C++ style comments. 22 years ago
base64.h adding xmlrpc extension, per Stig's request 25 years ago
encodings.c Fix warning 22 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) 23 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 Fixed bug #32797 (invalid C code in xmlrpc extension). 21 years ago
xml_element.h make it compile again and nuke most warnings 25 years ago
xml_to_dandarpc.c Make xmlrpc module compilable on windows. compiles, but untested. 25 years ago
xml_to_dandarpc.h adding xmlrpc extension, per Stig's request 25 years ago
xml_to_soap.c tix fypo 20 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 Removed C++ style comments. 22 years ago
xml_to_xmlrpc.h adding xmlrpc extension, per Stig's request 25 years ago
xmlrpc.c Reshufle includes to make it compile on windows 21 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 Make xmlrpc module compilable on windows. compiles, but untested. 25 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..