ProcUnit::DeleteInnerUnit

Removes registered unit of an inner processing unit

int DeleteInnerUnit(
   int  innerUnitNo
);

Parameters
innerUnitNo
Processing unit number to be deleted

Return Value
Returns 0 when a inner processing unit is successfully deleted.
Otherwise returns a non-zero value.

Description
Deletes the contained processing item that is registered with the processing unit number specified by the argument.

Example
   int Sample::DeleteProc(ProcUnit *ptrProcUnit)
    {

        // Processing unit No. 0

        ptrProcUnit->DeleteInnerUnit(0);

        // Processing unit No. 1

        ptrProcUnit->DeleteInnerUnit(1);
    }