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