mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2025-01-10 19:58:51 +00:00
18 lines
306 B
C
18 lines
306 B
C
|
#pragma once
|
||
|
|
||
|
#include <lib/nfc/protocols/felica/felica.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
FelicaAuthenticationContext* felica_auth_alloc();
|
||
|
|
||
|
void felica_auth_free(FelicaAuthenticationContext* instance);
|
||
|
|
||
|
void felica_auth_reset(FelicaAuthenticationContext* instance);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|