FS-2746 --resolve large xmlrpc update thanks garmt

This commit is contained in:
Jeff Lenk
2012-10-13 11:37:25 -05:00
parent 37ecad9903
commit 6b6c83a718
397 changed files with 41822 additions and 33841 deletions

View File

@@ -5,3 +5,14 @@
unsigned int const xmlrpc_version_major = XMLRPC_VERSION_MAJOR;
unsigned int const xmlrpc_version_minor = XMLRPC_VERSION_MINOR;
unsigned int const xmlrpc_version_point = XMLRPC_VERSION_POINT;
void
xmlrpc_version(unsigned int * const majorP,
unsigned int * const minorP,
unsigned int * const pointP) {
*majorP = XMLRPC_VERSION_MAJOR;
*minorP = XMLRPC_VERSION_MINOR;
*pointP = XMLRPC_VERSION_POINT;
}