mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 20:19:25 +00:00
28 lines
1.2 KiB
C++
28 lines
1.2 KiB
C++
|
//
|
||
|
// Generated file. Do not edit.
|
||
|
//
|
||
|
|
||
|
// clang-format off
|
||
|
|
||
|
#include "generated_plugin_registrant.h"
|
||
|
|
||
|
#include <cw_monero/cw_monero_plugin.h>
|
||
|
#include <devicelocale/devicelocale_plugin.h>
|
||
|
#include <platform_device_id_linux/platform_device_id_linux_plugin.h>
|
||
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
||
|
|
||
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
||
|
g_autoptr(FlPluginRegistrar) cw_monero_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "CwMoneroPlugin");
|
||
|
cw_monero_plugin_register_with_registrar(cw_monero_registrar);
|
||
|
g_autoptr(FlPluginRegistrar) devicelocale_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "DevicelocalePlugin");
|
||
|
devicelocale_plugin_register_with_registrar(devicelocale_registrar);
|
||
|
g_autoptr(FlPluginRegistrar) platform_device_id_linux_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "PlatformDeviceIdLinuxPlugin");
|
||
|
platform_device_id_linux_plugin_register_with_registrar(platform_device_id_linux_registrar);
|
||
|
g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar =
|
||
|
fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin");
|
||
|
url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar);
|
||
|
}
|