The Squirrel interpreter. See http://www.squirrel-lang.org/
squirrel/sqpcheader.h
- Committer:
- jhnwkmn
- Date:
- 2014-12-16
- Revision:
- 3:7268a3ceaffc
- Parent:
- 0:97a4f8cc534c
File content as of revision 3:7268a3ceaffc:
/* see copyright notice in squirrel.h */ #ifndef _SQPCHEADER_H_ #define _SQPCHEADER_H_ #if defined(_MSC_VER) && defined(_DEBUG) #include <crtdbg.h> #endif #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include <new> //squirrel stuff #include <squirrel.h> #include "sqobject.h" #include "sqstate.h" #endif //_SQPCHEADER_H_