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