00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef OSCAP_DS_RDS_INDEX_PRIV_H
00022 #define OSCAP_DS_RDS_INDEX_PRIV_H
00023
00024 #ifdef HAVE_CONFIG_H
00025 #include <config.h>
00026 #endif
00027
00028 #include "common/public/oscap.h"
00029 #include "common/util.h"
00030 #include "DS/public/scap_ds.h"
00031 #include <libxml/xmlreader.h>
00032
00033 OSCAP_HIDDEN_START;
00034
00035 struct rds_index* rds_index_parse(xmlTextReaderPtr reader);
00036
00037 struct rds_asset_index *rds_asset_index_parse(xmlTextReaderPtr reader);
00038
00039 struct rds_report_index *rds_report_index_parse(xmlTextReaderPtr reader);
00040
00041 struct rds_report_request_index *rds_report_request_index_parse(xmlTextReaderPtr reader);
00042
00043 OSCAP_HIDDEN_END;
00044 #endif