mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-04-05 03:47:13 +02:00
Implement a mechanism for generating pure typename functions.
This commit is contained in:
parent
2b282951af
commit
351d44a8e5
@ -33,6 +33,23 @@ extern PluginFuncs* _Func;
|
|||||||
extern PluginCallbacks* _Clbk;
|
extern PluginCallbacks* _Clbk;
|
||||||
extern PluginInfo* _Info;
|
extern PluginInfo* _Info;
|
||||||
|
|
||||||
|
/* ------------------------------------------------------------------------------------------------
|
||||||
|
* Helper to register pure typename functions for better performance.
|
||||||
|
*/
|
||||||
|
#define SQMODE_DECL_TYPENAME(t, s) /*
|
||||||
|
*/ namespace { /*
|
||||||
|
*/ struct t { /*
|
||||||
|
*/ static const SQChar Str[]; /*
|
||||||
|
*/ static SQInteger Fn(HSQUIRRELVM vm); /*
|
||||||
|
*/ }; /*
|
||||||
|
*/ const SQChar t::Str[] = s; /*
|
||||||
|
*/ SQInteger t::Fn(HSQUIRRELVM vm) { /*
|
||||||
|
*/ sq_pushstring(vm, Str, sizeof(Str) / sizeof(SQChar)); /*
|
||||||
|
*/ return 1; /*
|
||||||
|
*/ } /*
|
||||||
|
*/ } /*
|
||||||
|
*/
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------------------------------
|
/* ------------------------------------------------------------------------------------------------
|
||||||
* Retrieve the temporary buffer.
|
* Retrieve the temporary buffer.
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user