captureStateGetFeedback method
Implementation
int captureStateGetFeedback(Pointer<Void> libraryPtr, Pointer<Void> captureStatePtr) {
Pointer<Int> feedbackOut = calloc();
int error = _captureStateGetFeedback(libraryPtr, captureStatePtr, feedbackOut);
if( error != FaceCaptureErrorCode.noErrors.value ) {
throw FaceCaptureException(error);
}
int feedback = feedbackOut.value;
calloc.free(feedbackOut);
return feedback;
}