8053 beefd0184a 2022-08-08 ct_chen 2 سال پیش
..
README beefd0184a 2022-08-08 ct_chen 2 سال پیش
acinclude.m4 beefd0184a 2022-08-08 ct_chen 2 سال پیش
base64.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
base64.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
encodings.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
encodings.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
queue.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
queue.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
simplestring.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
simplestring.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
system_methods.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
system_methods_private.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_element.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_element.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_to_dandarpc.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_to_dandarpc.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_to_soap.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_to_soap.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_to_xmlrpc.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
xml_to_xmlrpc.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc.m4 beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc_introspection.c beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc_introspection.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc_introspection_private.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc_private.h beefd0184a 2022-08-08 ct_chen 2 سال پیش
xmlrpc_win32.h beefd0184a 2022-08-08 ct_chen 2 سال پیش

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..