workflowDestroy method

void workflowDestroy(
  1. Pointer<Void> libraryPtr,
  2. Pointer<Void> workflowPtr
)

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
}