BatchScriptProgressHandlerProc

The BatchScriptProgressHandlerProc function is an application-defined callback function that processes batch script progress notification. BatchScriptProgressHandlerProc is called repeatedly while a batch script is being processed – see C_ProcessBatchScript for more details.

void __stdcall BatchScriptProgressHandlerProc(

TOrcFxAPIHandle ModelHandle,

LPCTSTR lpProgress,

BOOL *lpCancel

);

Parameters

ModelHandle (IN)

The handle of the model.

lpProgress (IN)

Points to a null-terminated string giving details of the progress of the batch script. This string can be used to provide user feedback.

lpCancel (IN/OUT)

Points to a BOOL variable which determines whether the operation is cancelled – set this BOOL variable non-zero to abort the operation or leave it unchanged to continue.

See also

C_ProcessBatchScript.