veilid/veilid-flutter/windows/include/veilid/veilid_plugin.h

24 lines
516 B
C
Raw Normal View History

2022-01-16 16:19:01 +00:00
#ifndef FLUTTER_PLUGIN_VEILID_PLUGIN_H_
#define FLUTTER_PLUGIN_VEILID_PLUGIN_H_
#include <flutter_plugin_registrar.h>
#ifdef FLUTTER_PLUGIN_IMPL
#define FLUTTER_PLUGIN_EXPORT __declspec(dllexport)
#else
#define FLUTTER_PLUGIN_EXPORT __declspec(dllimport)
#endif
#if defined(__cplusplus)
extern "C" {
#endif
FLUTTER_PLUGIN_EXPORT void VeilidPluginRegisterWithRegistrar(
FlutterDesktopPluginRegistrarRef registrar);
#if defined(__cplusplus)
} // extern "C"
#endif
#endif // FLUTTER_PLUGIN_VEILID_PLUGIN_H_