// acxelements.h
typedef struct _ACX_KEYWORDSPOTTER_CALLBACKS {
ULONG Size;
PFN_ACX_KEYWORDSPOTTER_RETRIEVE_ARM EvtAcxKeywordSpotterRetrieveArm;
PFN_ACX_KEYWORDSPOTTER_ASSIGN_ARM EvtAcxKeywordSpotterAssignArm;
PFN_ACX_KEYWORDSPOTTER_ASSIGN_PATTERNS EvtAcxKeywordSpotterAssignPatterns;
PFN_ACX_KEYWORDSPOTTER_ASSIGN_RESET EvtAcxKeywordSpotterAssignReset;
} ACX_KEYWORDSPOTTER_CALLBACKS, *PACX_KEYWORDSPOTTER_CALLBACKS;
View the official Windows Driver Kit DDI referenceNo description available.
The ACX_KEYWORDSPOTTER_CALLBACKS structure identifies the driver callbacks for keyword spotter operations.
SizeThe length, in bytes, of this callbacks structure.
EvtAcxKeywordSpotterRetrieveArmThe EVT_ACX_KEYWORDSPOTTER_RETRIEVE_ARM callback.
EvtAcxKeywordSpotterAssignArmThe EVT_ACX_KEYWORDSPOTTER_ASSIGN_ARM callback.
EvtAcxKeywordSpotterAssignPatternsThe EVT_ACX_KEYWORDSPOTTER_ASSIGN_PATTERNS callback.
EvtAcxKeywordSpotterAssignResetThe EVT_ACX_KEYWORDSPOTTER_ASSIGN_RESET callback.
Example usage is shown below.
ACX_KEYWORDSPOTTER_CALLBACKS keywordSpotterCallbacks;
ACX_KEYWORDSPOTTER_CALLBACKS_INIT(&keywordSpotterCallbacks);
keywordSpotterCallbacks.EvtAcxKeywordSpotterRetrieveArm = CodecC_EvtAcxKeywordSpotterRetrieveArm;
keywordSpotterCallbacks.EvtAcxKeywordSpotterAssignArm = CodecC_EvtAcxKeywordSpotterAssignArm;
keywordSpotterCallbacks.EvtAcxKeywordSpotterAssignPatterns = CodecC_EvtAcxKeywordSpotterAssignPatterns;
keywordSpotterCallbacks.EvtAcxKeywordSpotterAssignReset = CodecC_EvtAcxKeywordSpotterAssignReset;
Minimum ACX version: 1.0
For more information about ACX versions, see ACX version overview.