.gitignore: add some more IDE / tools related file
[babeltrace.git] / src / cli / babeltrace2-plugins.h
... / ...
CommitLineData
1/*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016-2019 EfficiOS Inc.
5 *
6 * Babeltrace trace converter - CLI tool's configuration
7 */
8
9#ifndef BABELTRACE_CLI_BABELTRACE2_PLUGINS_H
10#define BABELTRACE_CLI_BABELTRACE2_PLUGINS_H
11
12#include <babeltrace2/babeltrace.h>
13#include "common/macros.h"
14
15void init_loaded_plugins(void);
16void fini_loaded_plugins(void);
17
18int require_loaded_plugins(const bt_value *plugin_paths);
19
20size_t get_loaded_plugins_count(void);
21const bt_plugin **borrow_loaded_plugins(void);
22const bt_plugin *borrow_loaded_plugin_by_index(size_t index);
23const bt_plugin *borrow_loaded_plugin_by_name(const char *name);
24
25
26#endif /* BABELTRACE_CLI_BABELTRACE2_PLUGINS_H */
This page took 0.024165 seconds and 5 git commands to generate.