mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 16:05:18 +00:00

Player works as previous except shuffling Youtube Search is handled through youtube_explode now
24 lines
797 B
C++
24 lines
797 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <bitsdojo_window_windows/bitsdojo_window_plugin.h>
|
|
#include <hotkey_manager/hotkey_manager_plugin.h>
|
|
#include <libwinmedia/libwinmedia_plugin.h>
|
|
#include <url_launcher_windows/url_launcher_windows.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
BitsdojoWindowPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("BitsdojoWindowPlugin"));
|
|
HotkeyManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("HotkeyManagerPlugin"));
|
|
LibwinmediaPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("LibwinmediaPlugin"));
|
|
UrlLauncherWindowsRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("UrlLauncherWindows"));
|
|
}
|