File: xml_data.h

package info (click to toggle)
xmlrpc-c 1.60.05-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,132 kB
  • sloc: ansic: 55,332; cpp: 13,541; sh: 3,321; makefile: 2,556; perl: 593; xml: 134
file content (28 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (9)
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
#ifndef XML_DATA_H_INCLUDED
#define XML_DATA_H_INCLUDED

#define XML_PROLOGUE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"

#define APACHE_URL "http://ws.apache.org/xmlrpc/namespaces/extensions"
#define XMLNS_APACHE "xmlns:ex=\"" APACHE_URL "\""

extern char const serialized_data[];

extern char const serialized_call[];

extern char const serialized_fault[];

extern char const expat_data[];
extern char const expat_error_data[];

extern char const good_response_xml[];

extern char const unparseable_value[];

extern const char *(bad_values[]);

extern const char *(bad_responses[]);

extern const char *(bad_calls[]);

#endif