tests/lib: use `sink.utils.dummy` in `utils/run-in.cpp`
[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 CLI_BABELTRACE_PLUGINS_H
10#define CLI_BABELTRACE_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 /* CLI_BABELTRACE_PLUGINS_H */
This page took 0.027923 seconds and 4 git commands to generate.