From cb7100dc7ff58cafec12dcb60c2d16a52cd5f290 Mon Sep 17 00:00:00 2001 From: averne Date: Tue, 5 Feb 2019 19:00:59 +0100 Subject: [PATCH] nfc: add comments about autoclear --- nx/include/switch/services/nfc.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nx/include/switch/services/nfc.h b/nx/include/switch/services/nfc.h index 1354043e..8b6d21d0 100644 --- a/nx/include/switch/services/nfc.h +++ b/nx/include/switch/services/nfc.h @@ -137,8 +137,11 @@ Service* nfpuGetInterface(void); Result nfpuStartDetection(HidControllerID id); Result nfpuStopDetection(HidControllerID id); +/// Returned event will have autoclear off. Result nfpuAttachActivateEvent(HidControllerID id, Event *out); +/// Returned event will have autoclear off. Result nfpuAttachDeactivateEvent(HidControllerID id, Event *out); +/// Returned event will have autoclear on. Result nfpuAttachAvailabilityChangeEvent(Event *out); Result nfpuGetState(NfpuState *out);