mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-04 04:05:15 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
26 lines
511 B
C
26 lines
511 B
C
#ifndef XML_DATA_H_INCLUDED
|
|
#define XML_DATA_H_INCLUDED
|
|
|
|
#define XML_PROLOGUE "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
|
|
|
|
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
|