Files
hardware_interfaces/nfc/1.0/INfcClientCallback.hal
Andreas Huber a48313947e nfc interfaces in the new style.
Change-Id: I989828d51a2ac1c79906d865b5bdab227457d2e6
Signed-off-by: Iliyan Malchev <malchev@google.com>
2016-08-07 21:27:58 -07:00

16 lines
417 B
Plaintext

package android.hardware.nfc@1.0;
interface INfcClientCallback {
/*
* The callback passed in from the NFC stack that the HAL
* can use to pass events back to the stack.
*/
sendEvent(nfc_event_t event, nfc_status_t event_status);
/*
* The callback passed in from the NFC stack that the HAL
* can use to pass incomming data to the stack.
*/
sendData(nfc_data_t data);
};