00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00022 #ifndef CCPP_XML_H
00023 #define CCPP_XML_H
00024
00025 #ifdef __cplusplus
00026 extern "C"
00027 {
00028 #endif
00029
00031 int ccpp_xml_load(const char *, void **, void **);
00032
00034 int ccpp_xml_unload(void **);
00035
00038 int ccpp_xml_ele_find(void **, const char *, void **);
00039
00041 int ccpp_xml_ele_next(void **, const char *, void **);
00042
00044 int ccpp_xml_ele_contents(void **, char **);
00045
00047 int ccpp_xml_ele_count(void **, const char *, int *);
00048
00050 int ccpp_xml_ele_att(void **, const char *, char **);
00051
00052 #ifdef __cplusplus
00053 }
00054 #endif
00055
00056 #endif
00057