summaryrefslogtreecommitdiff
path: root/plugins/admin.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/admin.c')
-rw-r--r--plugins/admin.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/plugins/admin.c b/plugins/admin.c
new file mode 100644
index 000000000..8c6a2be53
--- /dev/null
+++ b/plugins/admin.c
@@ -0,0 +1,32 @@
+// SPDX-License-Identifier: LGPL-2.1-or-later
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2021 Google LLC
+ *
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include "src/log.h"
+#include "src/plugin.h"
+
+static int admin_init(void)
+{
+ DBG("");
+
+ return 0;
+}
+
+static void admin_exit(void)
+{
+ DBG("");
+}
+
+BLUETOOTH_PLUGIN_DEFINE(admin, VERSION,
+ BLUETOOTH_PLUGIN_PRIORITY_DEFAULT,
+ admin_init, admin_exit)