u2f_hid.h 229 B

123456789101112131415161718
  1. #pragma once
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #include <furi.h>
  6. #include "u2f.h"
  7. typedef struct U2fHid U2fHid;
  8. U2fHid* u2f_hid_start(U2fData* u2f_inst);
  9. void u2f_hid_stop(U2fHid* u2f_hid);
  10. #ifdef __cplusplus
  11. }
  12. #endif