sqstdaux.h 399 B

12345678910111213141516171819
  1. /* see copyright notice in squirrel.h */
  2. #ifndef _SQSTD_AUXLIB_H_
  3. #define _SQSTD_AUXLIB_H_
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. SQUIRREL_API void sqstd_seterrorhandlers(HSQUIRRELVM v);
  8. SQUIRREL_API void sqstd_printcallstack(HSQUIRRELVM v);
  9. SQUIRREL_API SQRESULT sqstd_throwerrorf(HSQUIRRELVM v,const SQChar *err,...);
  10. #ifdef __cplusplus
  11. } /*extern "C"*/
  12. #endif
  13. #endif /* _SQSTD_AUXLIB_H_ */