diff options
Diffstat (limited to 'ThirdParty/toluapp/src/tests/tmodulebind.c')
-rw-r--r-- | ThirdParty/toluapp/src/tests/tmodulebind.c | 124 |
1 files changed, 124 insertions, 0 deletions
diff --git a/ThirdParty/toluapp/src/tests/tmodulebind.c b/ThirdParty/toluapp/src/tests/tmodulebind.c new file mode 100644 index 0000000..0175a46 --- /dev/null +++ b/ThirdParty/toluapp/src/tests/tmodulebind.c @@ -0,0 +1,124 @@ +/* +** Lua binding: tmodule +** Generated automatically by tolua 5.0a-CDLVS2 on 08/08/03 17:06:13. +*/ + +#ifndef __cplusplus +#include "stdlib.h" +#endif +#include "string.h" + +#include "tolua.h" + +/* Exported function */ +TOLUA_API int tolua_tmodule_open (lua_State* tolua_S); + +#include "tmodule.h" + +/* function to register type */ +static void tolua_reg_types (lua_State* tolua_S) +{ +} + +/* get function: a */ +static int tolua_get_A_a(lua_State* tolua_S) +{ + tolua_pushnumber(tolua_S,(double)a); + return 1; +} + +/* set function: a */ +static int tolua_set_A_a(lua_State* tolua_S) +{ +#ifndef TOLUA_RELEASE + tolua_Error tolua_err; + if (!tolua_isnumber(tolua_S,2,0,&tolua_err)) + tolua_error(tolua_S,"#vinvalid type in variable assignment.",&tolua_err); +#endif + a = ((int) tolua_tonumber(tolua_S,2,0)); + return 0; +} + +/* get function: b */ +static int tolua_get_B_b(lua_State* tolua_S) +{ + tolua_pushnumber(tolua_S,(double)b); + return 1; +} + +/* set function: b */ +static int tolua_set_B_b(lua_State* tolua_S) +{ +#ifndef TOLUA_RELEASE + tolua_Error tolua_err; + if (!tolua_isnumber(tolua_S,2,0,&tolua_err)) + tolua_error(tolua_S,"#vinvalid type in variable assignment.",&tolua_err); +#endif + b = ((int) tolua_tonumber(tolua_S,2,0)); + return 0; +} + +/* get function: c */ +static int tolua_get_C_c(lua_State* tolua_S) +{ + tolua_pushnumber(tolua_S,(double)c); + return 1; +} + +/* set function: c */ +static int tolua_set_C_c(lua_State* tolua_S) +{ +#ifndef TOLUA_RELEASE + tolua_Error tolua_err; + if (!tolua_isnumber(tolua_S,2,0,&tolua_err)) + tolua_error(tolua_S,"#vinvalid type in variable assignment.",&tolua_err); +#endif + c = ((int) tolua_tonumber(tolua_S,2,0)); + return 0; +} + +/* get function: d */ +static int tolua_get_A_d(lua_State* tolua_S) +{ + tolua_pushnumber(tolua_S,(double)d); + return 1; +} + +/* set function: d */ +static int tolua_set_A_d(lua_State* tolua_S) +{ +#ifndef TOLUA_RELEASE + tolua_Error tolua_err; + if (!tolua_isnumber(tolua_S,2,0,&tolua_err)) + tolua_error(tolua_S,"#vinvalid type in variable assignment.",&tolua_err); +#endif + d = ((int) tolua_tonumber(tolua_S,2,0)); + return 0; +} + +/* Open function */ +TOLUA_API int tolua_tmodule_open (lua_State* tolua_S) +{ + tolua_open(tolua_S); + tolua_reg_types(tolua_S); + tolua_module(tolua_S,NULL,0); + tolua_beginmodule(tolua_S,NULL); + tolua_module(tolua_S,"A",1); + tolua_beginmodule(tolua_S,"A"); + tolua_variable(tolua_S,"a",tolua_get_A_a,tolua_set_A_a); + tolua_module(tolua_S,"B",1); + tolua_beginmodule(tolua_S,"B"); + tolua_variable(tolua_S,"b",tolua_get_B_b,tolua_set_B_b); + tolua_module(tolua_S,"C",1); + tolua_beginmodule(tolua_S,"C"); + tolua_variable(tolua_S,"c",tolua_get_C_c,tolua_set_C_c); + tolua_endmodule(tolua_S); + tolua_endmodule(tolua_S); + tolua_endmodule(tolua_S); + tolua_module(tolua_S,"A",1); + tolua_beginmodule(tolua_S,"A"); + tolua_variable(tolua_S,"d",tolua_get_A_d,tolua_set_A_d); + tolua_endmodule(tolua_S); + tolua_endmodule(tolua_S); + return 1; +} |