blob: 3e24b361be9c3f9d39c0a6ad65e18e85094e9d94 [file] [log] [blame]
package android.hardware.nfc@1.0;
@hal_type(type="NFC")
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);
};