24 #ifndef OPENSCAP_PROBE_TABLE_H 25 #define OPENSCAP_PROBE_TABLE_H 30 typedef void *(*probe_init_function_t)(void);
31 typedef int (*probe_main_function_t)(
probe_ctx *ctx,
void *arg);
32 typedef void (*probe_fini_function_t)(
void *probe_arg);
33 typedef int (*probe_offline_mode_function_t)(void);
35 OSCAP_API probe_init_function_t probe_table_get_init_function(
oval_subtype_t type);
36 OSCAP_API probe_main_function_t probe_table_get_main_function(
oval_subtype_t type);
37 OSCAP_API probe_fini_function_t probe_table_get_fini_function(
oval_subtype_t type);
38 OSCAP_API probe_offline_mode_function_t probe_table_get_offline_mode_function(
oval_subtype_t type);
40 OSCAP_API
void probe_table_list(FILE *output);
41 OSCAP_API
int probe_table_size(
void);
oval_subtype_t
Unknown subtypes.
Definition: oval_types.h:120