mirror of
https://github.com/EasyTier/astral.git
synced 2025-05-19 10:30:24 +00:00
27 lines
984 B
C++
27 lines
984 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <screen_retriever_windows/screen_retriever_windows_plugin_c_api.h>
|
|
#include <system_tray/system_tray_plugin.h>
|
|
#include <tray_manager/tray_manager_plugin.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
#include <window_manager/window_manager_plugin.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
ScreenRetrieverWindowsPluginCApiRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("ScreenRetrieverWindowsPluginCApi"));
|
|
SystemTrayPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("SystemTrayPlugin"));
|
|
TrayManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("TrayManagerPlugin"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
WindowManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
|
|
}
|