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.
26 lines
631 B
26 lines
631 B
#ifndef FLUTTER_PLUGIN_ARGON2_FFI_PLUGIN_H_ |
|
#define FLUTTER_PLUGIN_ARGON2_FFI_PLUGIN_H_ |
|
|
|
#include <flutter_linux/flutter_linux.h> |
|
|
|
G_BEGIN_DECLS |
|
|
|
#ifdef FLUTTER_PLUGIN_IMPL |
|
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default"))) |
|
#else |
|
#define FLUTTER_PLUGIN_EXPORT |
|
#endif |
|
|
|
typedef struct _Argon2FfiPlugin Argon2FfiPlugin; |
|
typedef struct { |
|
GObjectClass parent_class; |
|
} Argon2FfiPluginClass; |
|
|
|
FLUTTER_PLUGIN_EXPORT GType argon2_ffi_plugin_get_type(); |
|
|
|
FLUTTER_PLUGIN_EXPORT void argon2_ffi_plugin_register_with_registrar( |
|
FlPluginRegistrar* registrar); |
|
|
|
G_END_DECLS |
|
|
|
#endif // FLUTTER_PLUGIN_ARGON2_FFI_PLUGIN_H_
|
|
|