🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How AS registers these ?

Started by
1 comment, last by zopenge 16 years, 3 months ago
typedef void ege_void; typedef void* ege_handle; I don't know how to register these ? Thanks !
Advertisement
I haven't tested registering a typedef for void but if it works it would be with:

engine->RegisterTypedef("ege_void", "void");


AngelScript doesn't support pointers, so you won't be able to create a typedef for void*. You can however register a new type to wrap the pointer if you wish.

engine->RegisterObjectType("ege_handle", sizeof(void*), asOBJ_VALUE | asOBJ_POD);


You can then register the behaviours for this as you wish. I recommend registering a constructor behaviour to set the initial value of the pointer to 0.

AngelCode.com - game development and more - Reference DB - game developer references
AngelScript - free scripting library - BMFont - free bitmap font generator - Tower - free puzzle game

Got it ! Thanks again !

This topic is closed to new replies.

Advertisement