mirror of
https://mirror.ghproxy.com/https://github.com/StarCitizenToolBox/app.git
synced 2024-12-23 06:33:43 +08:00
30 lines
1.1 KiB
C++
30 lines
1.1 KiB
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <desktop_webview_window/desktop_webview_window_plugin.h>
|
|
#include <flutter_acrylic/flutter_acrylic_plugin.h>
|
|
#include <local_auth_windows/local_auth_plugin.h>
|
|
#include <screen_retriever/screen_retriever_plugin.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
#include <window_manager/window_manager_plugin.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
DesktopWebviewWindowPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("DesktopWebviewWindowPlugin"));
|
|
FlutterAcrylicPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("FlutterAcrylicPlugin"));
|
|
LocalAuthPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("LocalAuthPlugin"));
|
|
ScreenRetrieverPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("ScreenRetrieverPlugin"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
WindowManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
|
|
}
|