You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
526 B
24 lines
526 B
5 years ago
|
#ifndef FLUTTER_PLUGIN_ARGON2_FFI_PLUGIN_H_
|
||
|
#define FLUTTER_PLUGIN_ARGON2_FFI_PLUGIN_H_
|
||
|
|
||
|
#include <flutter_plugin_registrar.h>
|
||
|
|
||
|
#ifdef FLUTTER_PLUGIN_IMPL
|
||
|
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default")))
|
||
|
#else
|
||
|
#define FLUTTER_PLUGIN_EXPORT
|
||
|
#endif
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
FLUTTER_PLUGIN_EXPORT void Argon2FfiPluginRegisterWithRegistrar(
|
||
|
FlutterDesktopPluginRegistrarRef registrar);
|
||
|
|
||
|
#if defined(__cplusplus)
|
||
|
} // extern "C"
|
||
|
#endif
|
||
|
|
||
|
#endif // FLUTTER_PLUGIN_ARGON2_FFI_PLUGIN_H_
|