captureStateDestroy method
Implementation
void captureStateDestroy(Pointer<Void> libraryPtr, Pointer<Void> captureStatePtr) {
int error = _captureStateDestroy(libraryPtr, captureStatePtr);
if( error != FaceCaptureErrorCode.noErrors.value ) {
throw FaceCaptureException(error);
}
// Do not calloc.free the captureStatPtr here
}