32 lines
		
	
	
		
			571 B
		
	
	
	
		
			C++
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			571 B
		
	
	
	
		
			C++
		
	
	
	
| #pragma once
 | |
| #ifndef l_squirrel
 | |
| #define l_squirrel
 | |
| // #define SQUNICODE
 | |
| #define NO_COMPILER
 | |
| 
 | |
| #include "squirrel.h"
 | |
| #include "sqstdaux.h"
 | |
| #include "sqstdblob.h"
 | |
| #include "sqstdio.h"
 | |
| #include "sqstdmath.h"
 | |
| #include "sqstdstring.h"
 | |
| #include "sqstdsystem.h"
 | |
| #include "sqstddio.h"
 | |
| #include "Tool.h"
 | |
| #include <map>
 | |
| #include <fstream>
 | |
| #include <sstream>
 | |
| #include <iostream>
 | |
| #include <stdarg.h>
 | |
| #include <mutex>
 | |
| 
 | |
| #ifdef SQUNICODE
 | |
| #define scvprintf vfwprintf
 | |
| #define scfprintf fwprintf
 | |
| #else
 | |
| #define scvprintf vfprintf
 | |
| #define scfprintf fprintf
 | |
| #endif
 | |
| 
 | |
| void InitSquirrel();
 | |
| #endif |