Flipper Zero Firmware
Loading...
Searching...
No Matches
mf_classic_listener.h
1#pragma once
2
3#include "mf_classic.h"
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
10
11typedef enum {
12 MfClassicListenerEventTypeAuthContextPartCollected,
13 MfClassicListenerEventTypeAuthContextFullCollected,
14} MfClassicListenerEventType;
15
16typedef union {
17 MfClassicAuthContext auth_context;
19
20typedef struct {
21 MfClassicListenerEventType type;
24
25#ifdef __cplusplus
26}
27#endif
Definition mf_classic.h:109
Definition mf_classic_listener.h:20
Definition mf_classic_listener_i.h:30
Definition mf_classic_listener.h:16