summaryrefslogtreecommitdiff
path: root/plugins/external-dummy.c
blob: 1c209e8b78b1fa2929da16c1ac705331b72d9b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include "src/plugin.h"
#include "src/log.h"

static int dummy_init(void)
{
	DBG("");

	return 0;
}

static void dummy_exit(void)
{
	DBG("");
}

BLUETOOTH_PLUGIN_DEFINE(external_dummy, VERSION,
		BLUETOOTH_PLUGIN_PRIORITY_LOW, dummy_init, dummy_exit)