ProcUnit::GetUnitItemIdent
Gets identification name of the processing item
int GetUnitItemIdent() {
TCHAR *itemIdent
}
Parameters
*itemIdent
|
Pointer to a string for storing the processing identification name to be obtained
|
Return Value
Returns 0 when the identification name string is successfully obtained.
Otherwise returns a non-zero value.
Description
Gets the identification name string of the relevant processing item.
Example
int Sample::MeasureProc(ProcUnit *ptrProcUnit)
{
TCHAR procName[32];
// Get the identification name string
ptrProcUnit->GetUnitItemIdent(procName);
}