2024-07-05 09:24:40 +02:00
|
|
|
//
|
|
|
|
// Generated file. Do not edit.
|
|
|
|
//
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
|
|
|
|
#include <desktop_window/desktop_window_plugin.h>
|
2024-07-17 13:28:02 +02:00
|
|
|
#include <irondash_engine_context/irondash_engine_context_plugin.h>
|
|
|
|
#include <super_native_extensions/super_native_extensions_plugin.h>
|
2024-07-05 09:24:40 +02:00
|
|
|
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
|
|
|
g_autoptr(FlPluginRegistrar) desktop_window_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "DesktopWindowPlugin");
|
|
|
|
desktop_window_plugin_register_with_registrar(desktop_window_registrar);
|
2024-07-17 13:28:02 +02:00
|
|
|
g_autoptr(FlPluginRegistrar) irondash_engine_context_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "IrondashEngineContextPlugin");
|
|
|
|
irondash_engine_context_plugin_register_with_registrar(irondash_engine_context_registrar);
|
|
|
|
g_autoptr(FlPluginRegistrar) super_native_extensions_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "SuperNativeExtensionsPlugin");
|
|
|
|
super_native_extensions_plugin_register_with_registrar(super_native_extensions_registrar);
|
2024-07-05 09:24:40 +02:00
|
|
|
}
|