diff -r 18c71ca987e4 -r ee4f133c84ec src/squirrel.hpp --- a/src/squirrel.hpp Wed Jul 18 10:53:58 2007 +0000 +++ b/src/squirrel.hpp Wed Jul 18 14:58:37 2007 +0000 @@ -96,6 +96,11 @@ * @param instance Returning value with the pointer to the instance. * @return False if creating failed. */ + static bool CreateClassInstanceVM(HSQUIRRELVM vm, const char *class_name, void *real_instance, HSQOBJECT *instance); + + /** + * Exactly the same as CreateClassInstanceVM, only callable without instance of Squirrel. + */ bool CreateClassInstance(const char *class_name, void *real_instance, HSQOBJECT *instance); /**