ProcUnit::RenumProc
Performs processing when updating the processing unit reference number
int RenumProc(
int unitNo,
RenumInfo *ptrRenumInfo
)
Parameters
unitNo
|
Processing unit number
|
*ptrRenumInfo
|
Pointer to the flow edit information
|
Return Value
Returns 0 when the updating processing of the processing unit reference number succeeded.
Otherwise returns a non-zero value.
Description
Performs the update of the processing unit reference number of a processing item.
Example
int Sample::RenumProc(ProcUnit *ptrProcUnit, RenumInfo *ptrRenumInfo)
{
// Get the pointer to the inner processing unit
ProcUnit *ptrInnerUnit = ptrProcUnit->GetInnerUnit(0);
// Perform the update of the processing unit reference number of an inner processing unit
ptrInnerUnit->RenumProc(-1, ptrRenumInfo);
}