8285a11a26
In SquirrelBindings.h use #define USE_SQUIRREL 1 to enable squirrel git-svn-id: http://mc-server.googlecode.com/svn/trunk@76 0a769ca7-a7f5-676a-18bf-c427514a06d6
32 lines
771 B
C++
32 lines
771 B
C++
#include "sqplus.h"
|
|
|
|
//#include "SquirrelObject.h"
|
|
//#include "SquirrelVM.h"
|
|
#include "SquirrelBindingsUtilsWin32.h"
|
|
|
|
int refcounted_release_hook(SQUserPointer p, int size)
|
|
{
|
|
IUnknown *pRC = (IUnknown*)p;
|
|
pRC->Release();
|
|
return 0;
|
|
}
|
|
|
|
static BOOL __CreateRefCountedInstance(HSQUIRRELVM v,const SQChar *classname,IUnknown *pRC,SQRELEASEHOOK hook)
|
|
{
|
|
if(!CreateNativeClassInstance(v,classname,pRC,hook)) return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
int construct_RefCounted(IUnknown *p)
|
|
{
|
|
sq_setinstanceup(SquirrelVM::GetVMPtr(),1,p);
|
|
sq_setreleasehook(SquirrelVM::GetVMPtr(),1,refcounted_release_hook);
|
|
return 1;
|
|
}
|
|
|
|
|
|
BOOL CreateRefCountedInstance(HSQUIRRELVM v,const SQChar *classname,IUnknown *pRC)
|
|
{
|
|
return __CreateRefCountedInstance(v,classname,pRC,refcounted_release_hook);
|
|
}
|