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

Declared and defined in file: hzProcess.h

Function Logic:

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

Function body:

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