The Squirrel interpreter. See http://www.squirrel-lang.org/
include/sqstdaux.h@0:97a4f8cc534c, 2014-12-16 (annotated)
- Committer:
- jhnwkmn
- Date:
- Tue Dec 16 10:20:34 2014 +0000
- Revision:
- 0:97a4f8cc534c
Initial import of Squirrel.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jhnwkmn | 0:97a4f8cc534c | 1 | /* see copyright notice in squirrel.h */ |
jhnwkmn | 0:97a4f8cc534c | 2 | #ifndef _SQSTD_AUXLIB_H_ |
jhnwkmn | 0:97a4f8cc534c | 3 | #define _SQSTD_AUXLIB_H_ |
jhnwkmn | 0:97a4f8cc534c | 4 | |
jhnwkmn | 0:97a4f8cc534c | 5 | #ifdef __cplusplus |
jhnwkmn | 0:97a4f8cc534c | 6 | extern "C" { |
jhnwkmn | 0:97a4f8cc534c | 7 | #endif |
jhnwkmn | 0:97a4f8cc534c | 8 | |
jhnwkmn | 0:97a4f8cc534c | 9 | SQUIRREL_API void sqstd_seterrorhandlers(HSQUIRRELVM v); |
jhnwkmn | 0:97a4f8cc534c | 10 | SQUIRREL_API void sqstd_printcallstack(HSQUIRRELVM v); |
jhnwkmn | 0:97a4f8cc534c | 11 | |
jhnwkmn | 0:97a4f8cc534c | 12 | #ifdef __cplusplus |
jhnwkmn | 0:97a4f8cc534c | 13 | } /*extern "C"*/ |
jhnwkmn | 0:97a4f8cc534c | 14 | #endif |
jhnwkmn | 0:97a4f8cc534c | 15 | |
jhnwkmn | 0:97a4f8cc534c | 16 | #endif /* _SQSTD_AUXLIB_H_ */ |