plugin_interface.h 431 B

12345678910111213
  1. #pragma once
  2. #define PLUGIN_APP_ID "mfkey"
  3. #define PLUGIN_API_VERSION 1
  4. typedef struct {
  5. const char* name;
  6. bool (*napi_mf_classic_mfkey32_nonces_check_presence)();
  7. bool (*napi_mf_classic_nested_nonces_check_presence)();
  8. MfClassicNonceArray* (
  9. *napi_mf_classic_nonce_array_alloc)(KeysDict*, bool, KeysDict*, ProgramState*);
  10. void (*napi_mf_classic_nonce_array_free)(MfClassicNonceArray*);
  11. } MfkeyPlugin;