FolusWen c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
..
README c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
acinclude.m4 c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
base64.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
base64.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
encodings.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
encodings.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
queue.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
queue.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
simplestring.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
simplestring.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
system_methods.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
system_methods_private.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_element.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_element.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_to_dandarpc.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_to_dandarpc.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_to_soap.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_to_soap.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_to_xmlrpc.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xml_to_xmlrpc.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc.m4 c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc_introspection.c c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc_introspection.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc_introspection_private.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前
xmlrpc_private.h c2d3f4474f [Improve][GPL][PHP / lighttpd] 3 年之前

README

organization of this directory is moving towards this approach:

.h -- public API and data types
_private.h -- protected API and data types
.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..