17 lines
470 B
C
17 lines
470 B
C
#ifndef FLUTTER_PLUGIN_BLE_RELAY_HOST_PLUGIN_H_
|
|
#define FLUTTER_PLUGIN_BLE_RELAY_HOST_PLUGIN_H_
|
|
|
|
#include <flutter_linux/flutter_linux.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define BLE_RELAY_HOST_PLUGIN_TYPE (ble_relay_host_plugin_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE(BleRelayHostPlugin, ble_relay_host_plugin, BLE_RELAY_HOST, PLUGIN, GObject)
|
|
|
|
void ble_relay_host_plugin_register_with_registrar(FlPluginRegistrar* registrar);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif // FLUTTER_PLUGIN_BLE_RELAY_HOST_PLUGIN_H_
|