diff options
Diffstat (limited to 'src/aclk/aclk_contexts_api.h')
-rw-r--r-- | src/aclk/aclk_contexts_api.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/aclk/aclk_contexts_api.h b/src/aclk/aclk_contexts_api.h new file mode 100644 index 000000000..f0b5ec77e --- /dev/null +++ b/src/aclk/aclk_contexts_api.h @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +#ifndef ACLK_CONTEXTS_API_H +#define ACLK_CONTEXTS_API_H + +#include "schema-wrappers/schema_wrappers.h" + + +void aclk_send_contexts_snapshot(contexts_snapshot_t data); +void aclk_send_contexts_updated(contexts_updated_t data); +void aclk_update_node_collectors(struct update_node_collectors *collectors); +void aclk_update_node_info(struct update_node_info *info); + +#endif /* ACLK_CONTEXTS_API_H */ + |