14 u32 GetStackDepth()
const {
return m_stackDepth; }
15 void* operator[] (
const u32 index) {
return m_stack[index]; }
16 std::string GetSymbolNameAtIndex(u32 index)
const;
17 std::string GetSymbolicatedStackString(
const std::string& separator =
"->")
const;
18 std::string GetRawStackString(
const std::string& separator =
"->")
const;
22 static void OneTimeInit();
24 static bool m_isInitialized;
25 #if defined(EEGEO_WIN)
26 static HANDLE m_currentProcess;
28 static const int MaxStackDepth = 32;
29 void* m_stack[MaxStackDepth];