16 lines
170 B
C
16 lines
170 B
C
|
|
||
|
// StackTrace.h
|
||
|
|
||
|
// Declares the functions to print current stack trace
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
/** Prints the stacktrace for the current thread. */
|
||
|
extern void PrintStackTrace(void);
|
||
|
|
||
|
|
||
|
|
||
|
|