2020-09-27 09:18:38 +00:00
|
|
|
//
|
|
|
|
// Generated file. Do not edit.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
|
2020-10-04 15:01:54 +00:00
|
|
|
#include <file_chooser/file_chooser_plugin.h>
|
2020-09-27 09:18:38 +00:00
|
|
|
#include <url_launcher_linux/url_launcher_plugin.h>
|
|
|
|
|
|
|
|
void fl_register_plugins(FlPluginRegistry* registry) {
|
2020-10-04 15:01:54 +00:00
|
|
|
g_autoptr(FlPluginRegistrar) file_chooser_registrar =
|
|
|
|
fl_plugin_registry_get_registrar_for_plugin(registry, "FileChooserPlugin");
|
|
|
|
file_chooser_plugin_register_with_registrar(file_chooser_registrar);
|
2020-09-27 09:18:38 +00:00
|
|
|
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);
|
|
|
|
}
|