16 lines
372 B
C
16 lines
372 B
C
#ifndef FLUTTER_PLUGIN_BLE_PLUGIN_H_
|
|
#define FLUTTER_PLUGIN_BLE_PLUGIN_H_
|
|
|
|
#include <flutter_linux/flutter_linux.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define BLE_PLUGIN_TYPE (ble_plugin_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE(BlePlugin, ble_plugin, BLE, PLUGIN, GObject)
|
|
|
|
void ble_plugin_register_with_registrar(FlPluginRegistrar* registrar);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif // FLUTTER_PLUGIN_BLE_PLUGIN_H_
|