Go to the documentation of this file.
39 #include "oscap_reference.h"
44 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
45 # define OSCAP_DEPRECATED(func) func __attribute__ ((deprecated))
46 #elif defined(_MSC_VER)
47 # define OSCAP_DEPRECATED(func) __declspec(deprecated) func
49 # pragma message("WARNING: You need to implement OSCAP_DEPRECATED for this compiler---in order to get deprecation warnings.")
50 # define OSCAP_DEPRECATED(func) func
112 typedef int (*xml_reporter)(
const char *file,
int line,
const char *msg,
void *arg);
158 int oscap_apply_xslt(
const char *xmlfile,
const char *xsltfile,
const char *outfile,
const char **params);