blob: 979728bf9c4e6b94989e370b7ab5c1f6fb91482a [file] [log] [blame]
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);
};