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