mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-28 21:26:40 +00:00
24 lines
836 B
C++
24 lines
836 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <local_notifier/local_notifier_plugin.h>
|
|
#include <screen_retriever_windows/screen_retriever_windows_plugin_c_api.h>
|
|
#include <tray_manager/tray_manager_plugin.h>
|
|
#include <window_manager/window_manager_plugin.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
LocalNotifierPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("LocalNotifierPlugin"));
|
|
ScreenRetrieverWindowsPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("ScreenRetrieverWindowsPluginCApi"));
|
|
TrayManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("TrayManagerPlugin"));
|
|
WindowManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
|
|
}
|