Set the function name and push it onto the function stack for the thread. Returns: None
| Return Type | Function name | Arguments |
|---|---|---|
| void | _hz_func_reg::operator= | (const char*,) |
Declared and defined in file: hzProcess.h
Function Logic:
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) ;
}