File diff r24284:acfc33244660 → r24285:df42a20a274e
src/script/squirrel.hpp
Show inline comments
 
@@ -63,12 +63,12 @@ protected:
 
	/**
 
	 * If a user runs 'print' inside a script, this function gets the params.
 
	 */
 
	static void PrintFunc(HSQUIRRELVM vm, const SQChar *s, ...);
 
	static void PrintFunc(HSQUIRRELVM vm, const SQChar *s, ...) WARN_FORMAT(2, 3);
 

	
 
	/**
 
	 * If an error has to be print, this function is called.
 
	 */
 
	static void ErrorPrintFunc(HSQUIRRELVM vm, const SQChar *s, ...);
 
	static void ErrorPrintFunc(HSQUIRRELVM vm, const SQChar *s, ...) WARN_FORMAT(2, 3);
 

	
 
public:
 
	Squirrel(const char *APIName);