Is it possible to register a new type for void, like this for example.
engine->RegisterTypedef( "vd", "void" );
What about for the const keyword, like this for example.
engine->RegisterTypedef( "cn", "const" );
These code snippets fail of course, I'm just showing them as examples of what I would like to do. I'm integrating with third party libraries that use other keywords for these things and it would be great if I could match the script code up to the c++ code used when working with these libraries.