1 | /* see copyright notice in squirrel.h */ |
---|---|
2 | #ifndef _SQSTD_AUXLIB_H_ |
3 | #define _SQSTD_AUXLIB_H_ |
4 | |
5 | #ifdef __cplusplus |
6 | extern "C"{ |
7 | #endif |
8 | |
9 | SQUIRREL_API void sqstd_seterrorhandlers(HSQUIRRELVM v); |
10 | SQUIRREL_API void sqstd_printcallstack(HSQUIRRELVM v); |
11 | |
12 | #ifdef __cplusplus |
13 | } /*extern "C"*/ |
14 | #endif |
15 | |
16 | #endif /* _SQSTD_AUXLIB_H_ */ |
17 |