blob: 3ab1726889b72bc8eba88373abf31081d9ab9775 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifdef __cplusplus
extern "C" {
#endif
int XML_URLInit();
void XML_URLUninit();
int XML_ProcessURL(XML_Parser parser,
const XML_Char *url,
unsigned flags);
#ifdef __cplusplus
}
#endif
|