Menu

[r3316]: / trunk / src / version.c  Maximize  Restore  History

Download this file

19 lines (13 with data), 494 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#include "version.h"
#include "xmlrpc-c/base.h"
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;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.