src/squirrel.hpp
branchnoai
changeset 9789 33d3214a2fce
parent 9782 e8d8d8894f23
child 9813 9646f7e37c31
--- a/src/squirrel.hpp	Tue Feb 26 23:47:37 2008 +0000
+++ b/src/squirrel.hpp	Wed Feb 27 00:29:35 2008 +0000
@@ -7,7 +7,7 @@
 
 class Squirrel {
 private:
-	typedef void (SQPrintFunc)(bool error_msg, const char *message);
+	typedef void (SQPrintFunc)(bool error_msg, const SQChar *message);
 
 	HSQUIRRELVM vm;          ///< The VirtualMachine instnace for squirrel
 	void *global_pointer;    ///< Can be set by who ever initializes Squirrel
@@ -27,7 +27,7 @@
 	/**
 	 * The RunError handler.
 	 */
-	static void RunError(HSQUIRRELVM vm, const char *error);
+	static void RunError(HSQUIRRELVM vm, const SQChar *error);
 
 	/**
 	 * If a user runs 'print' inside a script, this function gets the params.