mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-07-27 01:58:09 -07:00
ea0b5488ad
https://github.com/flipperdevices/flipperzero-firmware/pull/1755 from @devsnek may need more testing
18 lines
223 B
C
18 lines
223 B
C
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "u2f.h"
|
|
|
|
typedef struct U2fNfc U2fNfc;
|
|
|
|
U2fNfc* u2f_nfc_start(U2fData* u2f_inst);
|
|
|
|
void u2f_nfc_stop(U2fNfc* u2f_hid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|