Set the function name and push it onto the function stack for the thread. Returns: None

Return TypeFunction nameArguments
void_hz_func_reg::operator=(const char*,)

Declared and defined in file: hzProcess.h

Function Logic:

0:START 1:unknown 2:_phz 3:unknown 4:items 5: No text

Function body:

void _hz_func_reg::operator= (const char* fnName)
   {
       //  Set the function name and push it onto the function stack for the thread.
       //  
       //  Argument: fnName The fully qualified function name
       //  Returns: None
       if (!_phz)
           _phz = GetThreadInfo() ;
       if (_phz)
           _phz->PushFunction(fnName) ;
   }