Return TypeFunction nameArguments
const char*hzProcess::GetCurrFunc(void)

Declared and defined in file: hzProcess.h

Function Logic:

0:START 1:unknown 2:Return m_Stack[m_nFuncs-1] 3:Return 0

Function body:

const char* hzProcess::GetCurrFunc (void)
   {
       if (m_nFuncs > 0)
           return m_Stack[m_nFuncs-1];
       return 0;
   }