diff options
Diffstat (limited to 'squirrel_3_0_1_stable/include/sqstdaux.h')
-rw-r--r-- | squirrel_3_0_1_stable/include/sqstdaux.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/squirrel_3_0_1_stable/include/sqstdaux.h b/squirrel_3_0_1_stable/include/sqstdaux.h new file mode 100644 index 000000000..b90034823 --- /dev/null +++ b/squirrel_3_0_1_stable/include/sqstdaux.h @@ -0,0 +1,16 @@ +/* see copyright notice in squirrel.h */
+#ifndef _SQSTD_AUXLIB_H_
+#define _SQSTD_AUXLIB_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+SQUIRREL_API void sqstd_seterrorhandlers(HSQUIRRELVM v);
+SQUIRREL_API void sqstd_printcallstack(HSQUIRRELVM v);
+
+#ifdef __cplusplus
+} /*extern "C"*/
+#endif
+
+#endif /* _SQSTD_AUXLIB_H_ */
|