external-dummy.c 406 B

12345678910111213141516171819202122232425262728
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. *
  4. * BlueZ - Bluetooth protocol stack for Linux
  5. *
  6. */
  7. #ifdef HAVE_CONFIG_H
  8. #include <config.h>
  9. #endif
  10. #include "src/plugin.h"
  11. #include "src/log.h"
  12. static int dummy_init(void)
  13. {
  14. DBG("");
  15. return 0;
  16. }
  17. static void dummy_exit(void)
  18. {
  19. DBG("");
  20. }
  21. BLUETOOTH_PLUGIN_DEFINE(external_dummy, VERSION,
  22. BLUETOOTH_PLUGIN_PRIORITY_LOW, dummy_init, dummy_exit)