| // Copyright 2013 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include <flutter/plugin_registrar_windows.h> |
| |
| #include "include/local_auth_windows/local_auth_plugin.h" |
| #include "local_auth.h" |
| |
| void LocalAuthPluginRegisterWithRegistrar( |
| FlutterDesktopPluginRegistrarRef registrar) { |
| local_auth_windows::LocalAuthPlugin::RegisterWithRegistrar( |
| flutter::PluginRegistrarManager::GetInstance() |
| ->GetRegistrar<flutter::PluginRegistrarWindows>(registrar)); |
| } |