Menu

[r3316]: / trunk / src / xmlrpc_parse.h  Maximize  Restore  History

Download this file

43 lines (35 with data), 1.8 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#ifndef XMLRPC_PARSE_H_INCLUDED
#define XMLRPC_PARSE_H_INCLUDED
/*=============================================================================
xmlrpc_parse.h
===============================================================================
This declares the interface to the _internal_ XML-RPC XML parsing functions
in xmlrpc_parse.c.
There are also _external_ functions in xmlrpc_parse.c, and those are
declared in an external interface header file.
xmlrpc_parse.c is split that way because some functions use memory pools,
which is an internal concept we don't feel like making external right now.
=============================================================================*/
#include "xmlrpc-c/util_int.h"
void
xmlrpc_parse_call2(xmlrpc_env * const envP,
const char * const xmlData,
size_t const xmlDataLen,
xmlrpc_mem_pool * const memPoolP,
const char ** const methodNameP,
xmlrpc_value ** const paramArrayPP);
void
xmlrpc_parse_response3(xmlrpc_env * const envP,
const char * const xmlData,
size_t const xmlDataLen,
xmlrpc_mem_pool * const memPoolP,
xmlrpc_value ** const resultPP,
int * const faultCodeP,
const char ** const faultStringP);
void
xmlrpc_parse_value_xml2(xmlrpc_env * const envP,
const char * const xmlData,
size_t const xmlDataLen,
xmlrpc_mem_pool * const memPoolP,
xmlrpc_value ** const valuePP);
#endif
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.