Andreas Huber | a483139 | 2016-07-29 15:05:03 -0700 | [diff] [blame^] | 1 | package android.hardware.nfc@1.0; |
2 | |||||
3 | interface INfcClientCallback { | ||||
4 | /* | ||||
5 | * The callback passed in from the NFC stack that the HAL | ||||
6 | * can use to pass events back to the stack. | ||||
7 | */ | ||||
8 | sendEvent(nfc_event_t event, nfc_status_t event_status); | ||||
9 | |||||
10 | /* | ||||
11 | * The callback passed in from the NFC stack that the HAL | ||||
12 | * can use to pass incomming data to the stack. | ||||
13 | */ | ||||
14 | sendData(nfc_data_t data); | ||||
15 | }; |