From a9cbb4cc12a9c8bf4e913bd1ab49a9af72ea4908 Mon Sep 17 00:00:00 2001 From: Bubb13 <36863623+Bubb13@users.noreply.github.com> Date: Wed, 15 Apr 2026 16:06:43 -0700 Subject: [PATCH 1/6] Implement WSPECIAL speed column --- EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h | 1 + .../Baldur-v2.6.6.0_generated.h | 12 +- .../generate_bindings/in/manual_types.txt | 10 +- EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp | 20 + EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp | 1 + .../Baldur-v2.6.6.0_generated.h | 12 +- .../generate_bindings/in/manual_types.txt | 10 +- .../Generated/EEexLua_generated.cpp | 3401 +++++++++-------- 8 files changed, 1865 insertions(+), 1602 deletions(-) diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h index 3cbc1ed..c9e109d 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h @@ -160,6 +160,7 @@ namespace EEex { ///////// void Fix_Hook_HandleMiddleMouseDrag(SDL_Event* pEvent); + void Fix_Hook_ImplementWSPECIALSpeedColumn(CGameSprite* pSprite, int nProficiencyLevel, bool bOffHand); void Fix_Hook_OnBeforeUIKillCapture(); bool Fix_Hook_OnUIItemCheckRenderScrollbar(uiItem* pItem, bool bVisible); bool Fix_Hook_ShouldProcessEffectListSkipRolls(); diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 011ad69..79814b2 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -10557,7 +10557,7 @@ struct C2DArray : CResHelper typedef void (__thiscall *type_Destruct)(C2DArray* pThis); static type_Destruct p_Destruct; - typedef const CString* (__thiscall *type_GetAtCStringLabels)(C2DArray* pThis, const CString* nX, const CString* nY); + typedef const CString* (__thiscall *type_GetAtCStringLabels)(const C2DArray* pThis, const CString* nX, const CString* nY); static type_GetAtCStringLabels p_GetAtCStringLabels; typedef void (__thiscall *type_Load)(C2DArray* pThis, const CResRef* res); @@ -10573,7 +10573,7 @@ struct C2DArray : CResHelper p_Destruct(this); } - int FindColumnLabel(const char* sLabel) + int FindColumnLabel(const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -10593,7 +10593,7 @@ struct C2DArray : CResHelper return -1; } - int FindRowLabel(const char* sLabel) + int FindRowLabel(const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -10613,7 +10613,7 @@ struct C2DArray : CResHelper return -1; } - const CString* GetAt(int x, int y) + const CString* GetAt(int x, int y) const { if (x >= 0 && x < this->m_nSizeX && y >= 0 && y < this->m_nSizeY) { @@ -10622,7 +10622,7 @@ struct C2DArray : CResHelper return &this->m_default; } - const CString* GetAt(const char* nX, const char* nY) + const CString* GetAt(const char* nX, const char* nY) const { const int nColumnIndex = this->FindColumnLabel(nX); if (nColumnIndex == -1) return &this->m_default; @@ -10633,7 +10633,7 @@ struct C2DArray : CResHelper return this->GetAt(nColumnIndex, nRowIndex); } - const CString* GetAt(const CString* nX, const CString* nY) + const CString* GetAt(const CString* nX, const CString* nY) const { return p_GetAtCStringLabels(this, nX, nY); } diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index d153cdf..78025ec 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -841,7 +841,7 @@ struct C2DArray : CResHelper $constructor_fake Construct(); void Destruct(); - int FindColumnLabel(primitive const char* sLabel) + int FindColumnLabel(primitive const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -861,7 +861,7 @@ struct C2DArray : CResHelper return -1; } - int FindRowLabel(primitive const char* sLabel) + int FindRowLabel(primitive const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -881,7 +881,7 @@ struct C2DArray : CResHelper return -1; } - $binding_name(GetAtPoint) const CString* GetAt(int x, int y) + $binding_name(GetAtPoint) const CString* GetAt(int x, int y) const { if (x >= 0 && x < this->m_nSizeX && y >= 0 && y < this->m_nSizeY) { @@ -890,7 +890,7 @@ struct C2DArray : CResHelper return &this->m_default; } - $binding_name(GetAtLabels) const CString* GetAt(primitive const char* nX, primitive const char* nY) + $binding_name(GetAtLabels) const CString* GetAt(primitive const char* nX, primitive const char* nY) const { const int nColumnIndex = this->FindColumnLabel(nX); if (nColumnIndex == -1) return &this->m_default; @@ -901,7 +901,7 @@ struct C2DArray : CResHelper return this->GetAt(nColumnIndex, nRowIndex); } - $binding_name(GetAtCStringLabels) $pattern_name(GetAt(const CString*,const CString*)) const CString* GetAt(const CString* nX, const CString* nY); + $binding_name(GetAtCStringLabels) $pattern_name(GetAt(const CString*,const CString*)) const CString* GetAt(const CString* nX, const CString* nY) const; void Load(const CResRef* res); }; diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp index 80ea91b..85b1b7a 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp @@ -5082,6 +5082,26 @@ void CGameText::Override_Render(CGameArea* pArea, CVidMode* pVidMode) } } +void EEex::Fix_Hook_ImplementWSPECIALSpeedColumn(CGameSprite* pSprite, int nProficiencyLevel, bool bOffHand) { + + if (bOffHand) { + return; + } + + const C2DArray& WSPECIAL = (*p_g_pBaldurChitin)->m_pObjectGame->m_ruleTables.m_tWeaponSpecialization; + const CString *const sCell = WSPECIAL.GetAt(2, nProficiencyLevel); + + int nBonus = 0; + + if (sscanf(sCell->m_pchData, "%d", &nBonus) != 1) { + #pragma warning(disable:6031) + sscanf(WSPECIAL.m_default.m_pchData, "%d", &nBonus); + #pragma warning(default:6031) + } + + pSprite->m_derivedStats.m_nPhysicalSpeed -= nBonus; +} + void EEex::Fix_Hook_OnBeforeUIKillCapture() { if (p_capture->item == nullptr || p_capture->item->type != uiItemType::ITEM_EDIT) { diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp index 527751d..feaf4c9 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp @@ -178,6 +178,7 @@ static void exportPatterns() { ///////// exportPattern(TEXT("EEex::Fix_Hook_HandleMiddleMouseDrag"), EEex::Fix_Hook_HandleMiddleMouseDrag); + exportPattern(TEXT("EEex::Fix_Hook_ImplementWSPECIALSpeedColumn"), EEex::Fix_Hook_ImplementWSPECIALSpeedColumn); exportPattern(TEXT("EEex::Fix_Hook_OnBeforeUIKillCapture"), EEex::Fix_Hook_OnBeforeUIKillCapture); exportPattern(TEXT("EEex::Fix_Hook_OnUIItemCheckRenderScrollbar"), EEex::Fix_Hook_OnUIItemCheckRenderScrollbar); exportPattern(TEXT("EEex::Fix_Hook_ShouldProcessEffectListSkipRolls"), EEex::Fix_Hook_ShouldProcessEffectListSkipRolls); diff --git a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 4042b3a..36232d8 100644 --- a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -10421,7 +10421,7 @@ struct C2DArray : CResHelper typedef void (__thiscall *type_Destruct)(C2DArray* pThis); static type_Destruct p_Destruct; - typedef const CString* (__thiscall *type_GetAtCStringLabels)(C2DArray* pThis, const CString* nX, const CString* nY); + typedef const CString* (__thiscall *type_GetAtCStringLabels)(const C2DArray* pThis, const CString* nX, const CString* nY); static type_GetAtCStringLabels p_GetAtCStringLabels; typedef void (__thiscall *type_Load)(C2DArray* pThis, const CResRef* res); @@ -10437,7 +10437,7 @@ struct C2DArray : CResHelper p_Destruct(this); } - int FindColumnLabel(const char* sLabel) + int FindColumnLabel(const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -10457,7 +10457,7 @@ struct C2DArray : CResHelper return -1; } - int FindRowLabel(const char* sLabel) + int FindRowLabel(const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -10477,7 +10477,7 @@ struct C2DArray : CResHelper return -1; } - const CString* GetAt(int x, int y) + const CString* GetAt(int x, int y) const { if (x >= 0 && x < this->m_nSizeX && y >= 0 && y < this->m_nSizeY) { @@ -10486,7 +10486,7 @@ struct C2DArray : CResHelper return &this->m_default; } - const CString* GetAt(const char* nX, const char* nY) + const CString* GetAt(const char* nX, const char* nY) const { const int nColumnIndex = this->FindColumnLabel(nX); if (nColumnIndex == -1) return &this->m_default; @@ -10497,7 +10497,7 @@ struct C2DArray : CResHelper return this->GetAt(nColumnIndex, nRowIndex); } - const CString* GetAt(const CString* nX, const CString* nY) + const CString* GetAt(const CString* nX, const CString* nY) const { return p_GetAtCStringLabels(this, nX, nY); } diff --git a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index e299a72..770e500 100644 --- a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -841,7 +841,7 @@ struct C2DArray : CResHelper $constructor_fake Construct(); void Destruct(); - int FindColumnLabel(primitive const char* sLabel) + int FindColumnLabel(primitive const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -861,7 +861,7 @@ struct C2DArray : CResHelper return -1; } - int FindRowLabel(primitive const char* sLabel) + int FindRowLabel(primitive const char* sLabel) const { EngineVal sLabelUppercase { sLabel }; sLabelUppercase->MakeUpper(); @@ -881,7 +881,7 @@ struct C2DArray : CResHelper return -1; } - $binding_name(GetAtPoint) const CString* GetAt(int x, int y) + $binding_name(GetAtPoint) const CString* GetAt(int x, int y) const { if (x >= 0 && x < this->m_nSizeX && y >= 0 && y < this->m_nSizeY) { @@ -890,7 +890,7 @@ struct C2DArray : CResHelper return &this->m_default; } - $binding_name(GetAtLabels) const CString* GetAt(primitive const char* nX, primitive const char* nY) + $binding_name(GetAtLabels) const CString* GetAt(primitive const char* nX, primitive const char* nY) const { const int nColumnIndex = this->FindColumnLabel(nX); if (nColumnIndex == -1) return &this->m_default; @@ -901,7 +901,7 @@ struct C2DArray : CResHelper return this->GetAt(nColumnIndex, nRowIndex); } - $binding_name(GetAtCStringLabels) $pattern_name(GetAt(const CString*,const CString*)) const CString* GetAt(const CString* nX, const CString* nY); + $binding_name(GetAtCStringLabels) $pattern_name(GetAt(const CString*,const CString*)) const CString* GetAt(const CString* nX, const CString* nY) const; void Load(const CResRef* res); }; diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp index 5bed072..90de7c5 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp @@ -51,6 +51,78 @@ static int tolua_get_Primitive_CGameObjectType__reference_value(lua_State* L) return 1; } +static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_WindowShapeMode__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (WindowShapeMode)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_WindowShapeMode__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_SDL_HitTestResult__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_SDL_HitTestResult__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (SDL_HitTestResult)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_SDL_HitTestResult__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_SDL_bool__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_SDL_bool__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (SDL_bool)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_SDL_bool__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + static int tolua_get_Primitive_CButtonType__value(lua_State* L) { Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); @@ -147,99 +219,75 @@ static int tolua_get_Primitive_CAOEEntry__AOEType__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_WindowShapeMode__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (WindowShapeMode)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_WindowShapeMode__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_SDL_HitTestResult__value(lua_State* L) +static int tolua_get_Primitive_VertListType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_HitTestResult__value(lua_State* L) +static int tolua_set_Primitive_VertListType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_HitTestResult)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (VertListType)tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_HitTestResult__reference_value(lua_State* L) +static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_bool__value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_bool__value(lua_State* L) +static int tolua_set_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_bool)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_bool__reference_value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_VertListType__value(lua_State* L) +static int tolua_get_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_VertListType__value(lua_State* L) +static int tolua_set_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (VertListType)tolua_setter_tointeger<__int8>(L, "value"); + self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) +static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -939,78 +987,6 @@ static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_Sta return 1; } -static int tolua_get_Primitive_uiVariantType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_uiVariantType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_uiItemType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_uiItemType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - static int tolua_get_Primitive_DrawFilter__value(lua_State* L) { Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); @@ -1275,123 +1251,27 @@ static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_INT__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_INT__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_INT__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_lua_Integer__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_lua_Integer__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_char__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushlstring(L, (const char*)self->value, 1); - return 1; -} - -static int tolua_set_Primitive_char__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tochar(L, "value"); - return 0; -} - -static int tolua_get_Primitive_char__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "char"); - return 1; -} - -static int tolua_get_Primitive_bool__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushboolean(L, (bool)self->value); - return 1; -} - -static int tolua_set_Primitive_bool__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_toboolean(L, "value"); - return 0; -} - -static int tolua_get_Primitive_bool__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_LRESULT__value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LRESULT__value(lua_State* L) +static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1419,299 +1299,339 @@ static int tolua_get_Primitive___int16__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_HRESULT__value(lua_State* L) +static int tolua_get_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_HRESULT__value(lua_State* L) +static int tolua_set_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive___int8__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); return 1; } -static int tolua_get_Primitive_uint32_t__value(lua_State* L) +static int tolua_get_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_uint32_t__value(lua_State* L) +static int tolua_set_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_long_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_size_t__value(lua_State* L) +static int tolua_get_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_size_t__value(lua_State* L) +static int tolua_set_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_size_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LONG__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ushort__value(lua_State* L) +static int tolua_get_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ushort__value(lua_State* L) +static int tolua_set_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ushort__reference_value(lua_State* L) +static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint16_t__value(lua_State* L) +static int tolua_get_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint16_t__value(lua_State* L) +static int tolua_set_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_float__value(lua_State* L) +static int tolua_get_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_float__value(lua_State* L) +static int tolua_set_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_float__reference_value(lua_State* L) +static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_char___value(lua_State* L) +static int tolua_get_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_get_Primitive_UINT__value(lua_State* L) +static int tolua_set_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tointeger(L, "value"); + return 0; +} + +static int tolua_get_Primitive_uint__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_lua_Integer__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_UINT__value(lua_State* L) +static int tolua_set_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_UINT__reference_value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_get_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_set_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint64_t__value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint64_t__value(lua_State* L) +static int tolua_set_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int64__value(lua_State* L) +static int tolua_get_Primitive_int32_t__value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int64__value(lua_State* L) +static int tolua_set_Primitive_int32_t__value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int64>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int64__reference_value(lua_State* L) +static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_BOOL__value(lua_State* L) +static int tolua_get_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_BOOL__value(lua_State* L) +static int tolua_set_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) +static int tolua_get_Primitive___int32__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); return 1; } -static int tolua_get_Primitive_LONG__value(lua_State* L) +static int tolua_get_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushboolean(L, (bool)self->value); + return 1; +} + +static int tolua_set_Primitive_bool__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_toboolean(L, "value"); + return 0; +} + +static int tolua_get_Primitive_bool__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_byte__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LONG__value(lua_State* L) +static int tolua_set_Primitive_byte__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_LONG__reference_value(lua_State* L) +static int tolua_get_Primitive_byte__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1739,27 +1659,27 @@ static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_uint__value(lua_State* L) +static int tolua_get_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint__value(lua_State* L) +static int tolua_set_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint__reference_value(lua_State* L) +static int tolua_get_Primitive_long__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1787,267 +1707,299 @@ static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_uint8_t__value(lua_State* L) +static int tolua_get_Primitive___int64__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint8_t__value(lua_State* L) +static int tolua_set_Primitive___int64__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int64>(L, "value"); return 0; } -static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) +static int tolua_get_Primitive___int64__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int64>"); return 1; } -static int tolua_get_Primitive_short__value(lua_State* L) +static int tolua_get_Primitive_DWORD__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_short__value(lua_State* L) +static int tolua_set_Primitive_DWORD__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_short__reference_value(lua_State* L) +static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int16_t__value(lua_State* L) +static int tolua_get_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int16_t__value(lua_State* L) +static int tolua_set_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_ushort__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DWORD__value(lua_State* L) +static int tolua_get_Primitive_char___value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + return 1; +} + +static int tolua_get_Primitive_size_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DWORD__value(lua_State* L) +static int tolua_set_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) +static int tolua_get_Primitive_size_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uintptr_t__value(lua_State* L) +static int tolua_get_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uintptr_t__value(lua_State* L) +static int tolua_set_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int8_t__value(lua_State* L) +static int tolua_get_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int8_t__value(lua_State* L) +static int tolua_set_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_INT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_byte__value(lua_State* L) +static int tolua_get_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushnumber(L, (lua_Number)self->value); + return 1; +} + +static int tolua_set_Primitive_float__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tonumber(L, "value"); + return 0; +} + +static int tolua_get_Primitive_float__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_int8_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_byte__value(lua_State* L) +static int tolua_set_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_byte__reference_value(lua_State* L) +static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int__value(lua_State* L) +static int tolua_get_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int__value(lua_State* L) +static int tolua_set_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int__reference_value(lua_State* L) +static int tolua_get_Primitive_short__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_long__value(lua_State* L) +static int tolua_get_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_long__value(lua_State* L) +static int tolua_set_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_long__reference_value(lua_State* L) +static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int32_t__value(lua_State* L) +static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int32_t__value(lua_State* L) +static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int8__value(lua_State* L) +static int tolua_get_Primitive_uint16_t__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int8__value(lua_State* L) +static int tolua_set_Primitive_uint16_t__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int8>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int8__reference_value(lua_State* L) +static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -2075,51 +2027,99 @@ static int tolua_get_Primitive_double__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive___int32__value(lua_State* L) +static int tolua_get_Primitive_uint32_t__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int32__value(lua_State* L) +static int tolua_set_Primitive_uint32_t__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int32__reference_value(lua_State* L) +static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_long_double__value(lua_State* L) +static int tolua_get_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_long_double__value(lua_State* L) +static int tolua_set_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_long_double__reference_value(lua_State* L) +static int tolua_get_Primitive_UINT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_HRESULT__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_HRESULT__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tointeger(L, "value"); + return 0; +} + +static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_char__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushlstring(L, (const char*)self->value, 1); + return 1; +} + +static int tolua_set_Primitive_char__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tochar(L, "value"); + return 0; +} + +static int tolua_get_Primitive_char__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "char"); return 1; } @@ -27043,46 +27043,55 @@ static int tolua_function_VariableArray_void___set(lua_State* L) return 0; } -static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference(lua_State* L) +static int tolua_function_VariableArray_ushort__get(lua_State* L) { - VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_VariableArray_ushort__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); + ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(lua_State* L) +static int tolua_function_VariableArray_ushort__set(lua_State* L) { - VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 3, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } -static int tolua_function_VariableArray_short__get(lua_State* L) +static int tolua_function_VariableArray_byte__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_short__getReference(lua_State* L) +static int tolua_function_VariableArray_byte__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray_short__set(lua_State* L) +static int tolua_function_VariableArray_byte__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27103,55 +27112,46 @@ static int tolua_function_VariableArray_char__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_byte__get(lua_State* L) +static int tolua_function_VariableArray_short__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_byte__getReference(lua_State* L) +static int tolua_function_VariableArray_short__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray_byte__set(lua_State* L) +static int tolua_function_VariableArray_short__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } -static int tolua_function_VariableArray_ushort__get(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushinteger(L, (lua_Integer)returnVal); - return 1; -} - -static int tolua_function_VariableArray_ushort__getReference(lua_State* L) +static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); return 1; } -static int tolua_function_VariableArray_ushort__set(lua_State* L) +static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), *(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 3, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); return 0; } @@ -28008,6 +28008,24 @@ static int tolua_function_VariableArray_bool__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_const_byte__get(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + const byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_VariableArray_const_byte__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + const byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; +} + static int tolua_function_VariableArray_const_char___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29479,6 +29497,23 @@ static int tolua_function_VariableArray_const_CString__getReference(lua_State* L return 1; } +static int tolua_function_VariableArray_CAIId__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAIId* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAIId"); + return 1; +} + +static int tolua_function_VariableArray_CAIId__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAIId*)tolua_tousertype_dynamic(L, 3, 0, "CAIId")); + return 0; +} + static int tolua_function_VariableArray_CFeedbackEntry__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29547,6 +29582,23 @@ static int tolua_function_VariableArray_CSoundMixer__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CRes__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CRes* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CRes"); + return 1; +} + +static int tolua_function_VariableArray_CRes__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CRes*)tolua_tousertype_dynamic(L, 3, 0, "CRes")); + return 0; +} + static int tolua_function_VariableArray_const_CRes__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29573,23 +29625,6 @@ static int tolua_function_VariableArray_CResWED__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CResText__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResText* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CResText"); - return 1; -} - -static int tolua_function_VariableArray_CResText__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResText*)tolua_tousertype_dynamic(L, 3, 0, "CResText")); - return 0; -} - static int tolua_function_VariableArray_CResPVR__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29659,6 +29694,23 @@ static int tolua_function_VariableArray_CAOEEntry__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CSpawnPoint__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSpawnPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSpawnPoint"); + return 1; +} + +static int tolua_function_VariableArray_CSpawnPoint__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawnPoint*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnPoint")); + return 0; +} + static int tolua_function_VariableArray_CPersistantEffect__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29787,6 +29839,23 @@ static int tolua_function_VariableArray_CVoice__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____getReference(lua_State* L) +{ + VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); + return 1; +} + +static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____set(lua_State* L) +{ + VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + return 0; +} + static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReference(lua_State* L) { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); @@ -30042,6 +30111,23 @@ static int tolua_function_VariableArray_CSpawnFile__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CSoundChannel__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSoundChannel* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSoundChannel"); + return 1; +} + +static int tolua_function_VariableArray_CSoundChannel__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSoundChannel*)tolua_tousertype_dynamic(L, 3, 0, "CSoundChannel")); + return 0; +} + static int tolua_function_VariableArray_CPtrList__CNode__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30059,6 +30145,23 @@ static int tolua_function_VariableArray_CPtrList__CNode__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CGameDialogEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameDialogEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameDialogEntry"); + return 1; +} + +static int tolua_function_VariableArray_CGameDialogEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameDialogEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogEntry")); + return 0; +} + static int tolua_function_VariableArray_CGameAbilityList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30953,6 +31056,40 @@ static int tolua_function_VariableArray_CGameFile__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CGameDialogReply__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameDialogReply* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameDialogReply"); + return 1; +} + +static int tolua_function_VariableArray_CGameDialogReply__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameDialogReply*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogReply")); + return 0; +} + +static int tolua_function_VariableArray_CAbilityData__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAbilityData* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAbilityData"); + return 1; +} + +static int tolua_function_VariableArray_CAbilityData__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAbilityData*)tolua_tousertype_dynamic(L, 3, 0, "CAbilityData")); + return 0; +} + static int tolua_function_VariableArray_CAreaFileProjectileObject__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31566,6 +31703,40 @@ static int tolua_function_VariableArray_CSavedGameStoredLocation__set(lua_State* return 0; } +static int tolua_function_VariableArray_CSavedGamePartyCreature__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSavedGamePartyCreature* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSavedGamePartyCreature"); + return 1; +} + +static int tolua_function_VariableArray_CSavedGamePartyCreature__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGamePartyCreature")); + return 0; +} + +static int tolua_function_VariableArray_CSaveGameSlot__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSaveGameSlot* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSaveGameSlot"); + return 1; +} + +static int tolua_function_VariableArray_CSaveGameSlot__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSaveGameSlot*)tolua_tousertype_dynamic(L, 3, 0, "CSaveGameSlot")); + return 0; +} + static int tolua_function_VariableArray_CPlex__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -55279,99 +55450,123 @@ static int tolua_function_Pointer_SDL_Keycode__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); return 1; } -static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); return 0; } -static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); return 0; } -static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); return 1; } -static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); return 0; } -static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); return 0; } -static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55399,531 +55594,483 @@ static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); - return 1; -} - -static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); - return 0; -} - -static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); - return 0; -} - -static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_uint32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); return 1; } -static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); return 0; } -static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); return 0; } -static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); return 1; } -static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); return 0; } -static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); return 0; } -static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55951,195 +56098,219 @@ static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_long_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -56996,39 +57167,6 @@ static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB__setValue(lu return 0; } -static int tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 1; -} - -static int tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (_D98D369160A0DDA2B95F5D0F301081BB**)tolua_tousertype_dynamic(L, 2, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 0; -} - -static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getValue(); - tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); - return 1; -} - -static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); - return 0; -} - static int tolua_get_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -57070,6 +57208,39 @@ static int tolua_function_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB___getV return 1; } +static int tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 1; +} + +static int tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (_D98D369160A0DDA2B95F5D0F301081BB**)tolua_tousertype_dynamic(L, 2, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 0; +} + +static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getValue(); + tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); + return 1; +} + +static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue((_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + return 0; +} + static int tolua_get_Pointer_const_char___reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -60068,51 +60239,51 @@ static int tolua_function_Pointer_view_t__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); return 1; } -static int tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); return 0; } -static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } -static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); return 1; } -static int tolua_set_Pointer_VariableArray_short___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); return 0; } -static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60140,51 +60311,51 @@ static int tolua_function_Pointer_VariableArray_char___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); return 1; } -static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); return 0; } -static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } -static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); return 1; } -static int tolua_set_Pointer_VariableArray_ushort___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + self->reference = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); return 0; } -static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); return 0; } @@ -208255,14 +208426,16 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "ID3DXBaseEffect"); tolua_usertype(L, "ID3DXEffect"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); @@ -208292,9 +208465,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<_D3DFORMAT>"); @@ -208306,42 +208476,43 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<__int16>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int64>"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int8>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int32>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int8>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int64>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int32>"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "SAreaFileWrapper"); tolua_usertype(L, "SDL_Cursor"); tolua_usertype(L, "SDL_WindowUserData"); @@ -208594,11 +208765,11 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray*>"); @@ -208640,6 +208811,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_iobuf>"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208726,18 +208898,20 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208745,6 +208919,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray::CNode>"); @@ -208760,7 +208935,9 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208813,6 +208990,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208848,6 +209027,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -209643,42 +209824,42 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209710,9 +209891,9 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209832,11 +210013,11 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>*>"); @@ -211657,6 +211838,39 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_WindowShapeMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_HitTestResult__value, tolua_set_Primitive_SDL_HitTestResult__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_HitTestResult__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_bool__value, tolua_set_Primitive_SDL_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_CButtonType__value, tolua_set_Primitive_CButtonType__value); @@ -211701,48 +211915,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_WindowShapeMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_HitTestResult__value, tolua_set_Primitive_SDL_HitTestResult__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_HitTestResult__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_VertListType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_bool__value, tolua_set_Primitive_SDL_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_VertListType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212064,39 +212267,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); @@ -212218,59 +212388,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "char"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); @@ -212284,146 +212410,158 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int8>"); + tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_size_t__value, tolua_set_Primitive_size_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_size_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "ConstCharString"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint__value, tolua_set_Primitive_uint__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_UINT__value, tolua_set_Primitive_UINT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_UINT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint8_t__value, tolua_set_Primitive_uint8_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint8_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int64>"); - tolua_variable(L, "value", tolua_get_Primitive___int64__value, tolua_set_Primitive___int64__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int64__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int64>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int64>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int32>"); + tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212437,15 +212575,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint__value, tolua_set_Primitive_uint__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212459,37 +212597,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint8_t__value, tolua_set_Primitive_uint8_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint8_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_short__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int64>"); + tolua_variable(L, "value", tolua_get_Primitive___int64__value, tolua_set_Primitive___int64__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int64__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int64>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int64>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212503,37 +212619,36 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int8_t__value, tolua_set_Primitive_int8_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int8_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "ConstCharString"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_size_t__value, tolua_set_Primitive_size_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_size_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212547,37 +212662,81 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int8>"); - tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int8_t__value, tolua_set_Primitive_int8_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int8_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_short__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212591,26 +212750,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int32>"); - tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_UINT__value, tolua_set_Primitive_UINT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_UINT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "char"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "SAreaFileWrapper", "SAreaFileWrapper", {}, NULL); @@ -219383,18 +219564,19 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_void___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", {}, NULL); - tolua_beginmodule(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_function(L, "getReference", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference); - tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); - tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_ushort__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_short__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_short__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_short__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_byte__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_byte__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); @@ -219402,19 +219584,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_char__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_byte__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_byte__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_short__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_short__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_short__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_ushort__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_cclass(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", {}, NULL); + tolua_beginmodule(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_function(L, "getReference", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference); + tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); + tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); @@ -219679,6 +219860,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_bool__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_const_byte__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_const_byte__getReference); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_char___getReference); @@ -220195,6 +220382,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const_CString__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAIId__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAIId__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CFeedbackEntry__getReference); @@ -220219,6 +220412,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSoundMixer__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CRes__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CRes__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CRes__getReference); @@ -220230,12 +220429,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CResWED__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CResText__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CResText__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CResPVR__getReference); @@ -220264,6 +220457,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CAOEEntry__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSpawnPoint__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSpawnPoint__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CPersistantEffect__getReference); @@ -220307,6 +220506,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVoice__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray>", "VariableArray>", {}, NULL); + tolua_beginmodule(L, "VariableArray>"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____set); + tolua_constant(L, "sizeof", sizeof(VariableArray>)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray>", "VariableArray>", {}, NULL); tolua_beginmodule(L, "VariableArray>"); tolua_function(L, "getReference", &tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReference); @@ -220397,12 +220602,24 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSpawnFile__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSoundChannel__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSoundChannel__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CPtrList__CNode__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CPtrList__CNode__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameDialogEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameDialogEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameAbilityList__getReference); @@ -220716,6 +220933,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameFile__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameDialogReply__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameDialogReply__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAbilityData__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAbilityData__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaFileProjectileObject__getReference); @@ -220928,6 +221157,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSavedGameStoredLocation__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSavedGamePartyCreature__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSavedGamePartyCreature__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSaveGameSlot__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSaveGameSlot__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CPlex__getReference); @@ -230114,61 +230355,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); @@ -230180,147 +230366,158 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_size_t___reference, tolua_set_Pointer_Primitive_size_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_size_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ushort___reference, tolua_set_Pointer_Primitive_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint___reference, tolua_set_Pointer_Primitive_uint___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int64___reference, tolua_set_Pointer_Primitive___int64___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int64___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int64>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230334,15 +230531,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint___reference, tolua_set_Pointer_Primitive_uint___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230356,37 +230553,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_short___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int64___reference, tolua_set_Pointer_Primitive___int64___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int64___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int64>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230400,37 +230575,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ushort___reference, tolua_set_Pointer_Primitive_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_size_t___reference, tolua_set_Pointer_Primitive_size_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_size_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230444,37 +230619,81 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_short___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230488,26 +230707,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); @@ -230863,18 +231104,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", {}, NULL); - tolua_beginmodule(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - tolua_variable(L, "reference", tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference); - tolua_function(L, "getValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue); - tolua_function(L, "setValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); - tolua_constantstring(L, "usertype_reference", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference, tolua_set_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference); @@ -230896,6 +231125,18 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", {}, NULL); + tolua_beginmodule(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + tolua_variable(L, "reference", tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference); + tolua_function(L, "getValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); + tolua_constantstring(L, "usertype_reference", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const_char___reference, tolua_set_Pointer_const_char___reference); @@ -232221,26 +232462,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_short___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -232254,26 +232495,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_short___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); From 885a0e3c9c0458cb9a9c157318397ae5d372e8c1 Mon Sep 17 00:00:00 2001 From: Bubb13 <36863623+Bubb13@users.noreply.github.com> Date: Thu, 30 Apr 2026 14:21:22 -0700 Subject: [PATCH 2/6] Sort EEex overrides in source --- EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp | 1142 +++++++++---------- 1 file changed, 571 insertions(+), 571 deletions(-) diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp index 85b1b7a..31a613b 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp @@ -1955,6 +1955,150 @@ void EEex::SetUIItemExtraScrollbarPad(uiItem* pItem, int nExtraPad) { // Overrides // ///////////////////////////////// +int CAICondition::Override_Hold(CTypedPtrList* pTriggerList, CGameAIBase* pCaller) +{ + auto pNode = this->m_triggerList.m_pNodeHead; + if (pNode == nullptr) { + return 1; + } + + bool bRet = false; + int nORCounter = 0; + + bool bNextTriggerObject = false; + CGameAIBase* pNextTriggerObject = nullptr; + + // EEex + int nTrigger = 0; + + do + { + if (nORCounter <= 0) { + bRet = false; + } + + CAITrigger *const pTrigger = pNode->data; + const short nTriggerID = pTrigger->m_triggerID; + + if (nTriggerID == 0x4089) // OR + { + nORCounter = pTrigger->m_specificID; + } + else if (nTriggerID == 0x40E0) // NextTriggerObject + { + EngineVal nextTriggerObjectType{ &pTrigger->m_triggerCause }; + nextTriggerObjectType->Decode(pCaller); + + bNextTriggerObject = true; + pNextTriggerObject = reinterpret_cast(nextTriggerObjectType->GetShareType(pCaller, CGameObjectType::AIBASE, 0)); + + if (pNextTriggerObject != nullptr && nORCounter < 1) { + bRet = true; + } + } + else { + --nORCounter; + } + + if (nTriggerID != 0x40E0) // NOT NextTriggerObject + { + if (bNextTriggerObject) + { + if (pNextTriggerObject != nullptr) + { + // EEex + if (EEex::bInTrackedResponse) + { + for (auto callback : triggerHitCallbacks) { + callback(nTrigger); + } + } + + bNextTriggerObject = false; + const bool bTriggerHolds = this->TriggerHolds(pTrigger, pTriggerList, pNextTriggerObject); + bRet |= bTriggerHolds; + + // EEex + if (EEex::bInTrackedResponse) + { + for (auto callback : triggerEvaluatedCallbacks) { + callback(bTriggerHolds); + } + } + } + } + else + { + // EEex + if (EEex::bInTrackedResponse) + { + for (auto callback : triggerHitCallbacks) { + callback(nTrigger); + } + } + + const bool bTriggerHolds = this->TriggerHolds(pTrigger, pTriggerList, pCaller); + bRet |= bTriggerHolds; + + // EEex + if (EEex::bInTrackedResponse) + { + for (auto callback : triggerEvaluatedCallbacks) { + callback(bTriggerHolds); + } + } + } + } + + if (!bRet && nORCounter < 1) // Fail + { + break; + } + + pNode = pNode->pNext; + + // EEex + ++nTrigger; + } + while (pNode != nullptr); + + return bRet; +} + +int CAICondition::Override_TriggerHolds(CAITrigger* pTrigger, CTypedPtrList* pTriggerList, CGameAIBase* pCaller) +{ + bool nRet = false; + + if ((pTrigger->m_triggerID & 0x4000) == 0) // Event-driven trigger + { + for (auto pNode = pTriggerList->m_pNodeHead; pNode != nullptr; pNode = pNode->pNext) + { + pTrigger->m_triggerCause.Decode(pCaller); + nRet = pNode->data->OfType(pTrigger); + + if ((pTrigger->m_flags & 1) != 0) // Inverted + { + nRet = !nRet; + } + + if (nRet) { + break; + } + } + } + else // Status trigger + { + nRet = pCaller->virtual_EvaluateStatusTrigger(pTrigger); + + if ((pTrigger->m_flags & 1) != 0) // Inverted + { + nRet = !nRet; + } + } + + return nRet; +} + void CChitin::Override_SynchronousUpdate() { CWarp *const pActiveEngine = this->pActiveEngine; @@ -2015,54 +2159,318 @@ void CChitin::Override_SynchronousUpdate() { } } -void __cdecl EEex::Override_uiDoFile(char* fileName) { +void updateScriptingObject(CGameAIBase* pAIBase, EEex_ScriptingObject scriptingObject, CAIObjectType* pToSet, CAIObjectType* pToSetWith) { - lua_State* const L = *p_g_lua; + if (*pToSet != pToSetWith) { - EngineVal fullFileName{}; - fullFileName->Format("%s.lua", fileName); + pToSet->Set(pToSetWith); - const CResRef resref { fileName }; - CRes *const pRes = p_dimmGetResObject(&resref, 0x409, false); + lua_State *const L = *p_g_lua; + luaCallProtected(L, 2, 0, [&](int _) { + lua_getglobal(L, "EEex_AIBase_LuaHook_OnScriptingObjectUpdated"); // 1 [ ..., EEex_AIBase_LuaHook_OnScriptingObjectUpdated ] + tolua_pushusertype(L, pAIBase, "CGameAIBase"); // 2 [ ..., EEex_AIBase_LuaHook_OnScriptingObjectUpdated, pAIBaseUD ] + lua_pushinteger(L, static_cast<__int32>(scriptingObject)); // 3 [ ..., EEex_AIBase_LuaHook_OnScriptingObjectUpdated, pAIBaseUD, scriptingObject ] + }); + } +} - if (pRes != nullptr) { +void CGameAIBase::Override_ApplyTriggers() { - const char *const pResBuffer = reinterpret_cast(pRes->Demand()); + CBaldurChitin *const pBaldurChitin = *p_g_pBaldurChitin; + CInfGame *const pGame = pBaldurChitin->m_pObjectGame; - if (luaL_loadbufferx(L, pResBuffer, pRes->nSize, fullFileName->m_pchData, nullptr) == LUA_OK) { + if (pGame->m_worldTime.m_gameTime % 3600 == 0) { + CMessageUpdateReaction *const pMessage = newEngineObj(11, this->m_id, this->m_id); + pBaldurChitin->m_cMessageHandler.AddMessage(pMessage, 0); + } - if (lua_pcallk(L, 0, -1, 0, 0, nullptr) != LUA_OK) { + if (this->virtual_GetObjectType() == CGameObjectType::SPRITE) { + CGameSprite *const pSprite = reinterpret_cast(this); + pSprite->GetActiveStats()->m_cContingencyList.Process(pSprite); + } - const char *const pErrorMessage = lua_tolstring(L, -1, nullptr); + for (auto pNode = this->m_pendingTriggers.m_pNodeHead; pNode != nullptr; pNode = pNode->pNext) { - if (pErrorMessage != nullptr) { - p_SDL_ShowSimpleMessageBox(0x10, CChitin::p_m_sGameName->m_pchData, pErrorMessage, (*p_g_pBaldurChitin)->cVideo.pCurrentMode->m_pWindow); - p_SDL_Log("Error [%s] in %s", pErrorMessage, fullFileName->m_pchData); + CAITrigger *const pTrigger = pNode->data; + if ((pTrigger->m_flags & 4) != 0) { + continue; + } + pTrigger->m_flags |= 4; + + switch (pTrigger->m_triggerID) { + + case 0x0002: { // AttackedBy + + this->virtual_AutoPause(2); + this->m_lAttackStyle = pTrigger->m_specificID; + + if + ( + pGame->GetCharacterPortraitNum(this->m_id) == -1 + || + pGame->GetCharacterPortraitNum(pTrigger->m_triggerCause.m_Instance) == -1 + ) + { + updateScriptingObject(this, EEex_ScriptingObject::ATTACKER, &this->m_lAttacker, &pTrigger->m_triggerCause); } + break; + } + case 0x0003: { // Help + updateScriptingObject(this, EEex_ScriptingObject::HELP, &this->m_lHelp, &pTrigger->m_triggerCause); + break; + } + case 0x0006: { // ReceivedOrder + updateScriptingObject(this, EEex_ScriptingObject::ORDERED_BY, &this->m_lOrderedBy, &pTrigger->m_triggerCause); + break; + } + case 0x0007: { // Said + updateScriptingObject(this, EEex_ScriptingObject::TALKED_TO, &this->m_lTalkedTo, &pTrigger->m_triggerCause); + break; + } + case 0x0020: { // HitBy + + this->virtual_AutoPause(4); + this->m_lAttackStyle = pTrigger->m_specificID; + + updateScriptingObject(this, EEex_ScriptingObject::HITTER, &this->m_lHitter, &pTrigger->m_triggerCause); + break; + } + case 0x002F: { // Heard + updateScriptingObject(this, EEex_ScriptingObject::HEARD, &this->m_lHeard, &pTrigger->m_triggerCause); + break; + } + case 0x0097: { // Summoned + updateScriptingObject(this, EEex_ScriptingObject::SUMMONED_BY, &this->m_lSummonedBy, &pTrigger->m_triggerCause); + break; } } - else { - const char *const pErrorMessage = lua_tolstring(L, -1, nullptr); - p_SDL_ShowSimpleMessageBox(0x10, CChitin::p_m_sGameName->m_pchData, pErrorMessage, (*p_g_pBaldurChitin)->cVideo.pCurrentMode->m_pWindow); - p_SDL_Log("Err: %s", pErrorMessage); + + if (pGame->SAVE_OBJECT_LIST.Find(pTrigger->m_triggerID) != nullptr) { + updateScriptingObject(this, EEex_ScriptingObject::TRIGGER, &this->m_lTrigger, &pTrigger->m_triggerCause); } - pRes->virtual_Dump(); + if (this->virtual_GetObjectType() == CGameObjectType::SPRITE) { + CGameSprite *const pSprite = reinterpret_cast(this); + pSprite->GetActiveStats()->m_cContingencyList.ProcessTrigger(pSprite, pTrigger); + } } +} - EngineVal langFile{}; - langFile->Format("L_%s", static_cast(*p_lang)); +static void onEventTriggerSet(CGameAIBase *const pAIBase, CAITrigger *const pTrigger) { - if (_stricmp(fileName, langFile->m_pchData) == 0) { - luaCallProtected(L, 0, 0, [&](int _) { - lua_getglobal(L, "EEex_Menu_LuaHook_AfterTranslationLoaded"); // 1 [ ..., EEex_Menu_LuaHook_AfterTranslationLoaded ] - }); + if (!EEex::AIBase_LuaHook_OnEventTriggerSet_Enabled) { + return; } -} - -void EEex::Override_bootstrapLua() { - //*p_g_lua = luaL_newstate(); + lua_State *const L = *p_g_lua; + luaCallProtected(L, 2, 0, [&](int) { + lua_getglobal(L, "EEex_AIBase_LuaHook_OnEventTriggerSet"); // 1 [ ..., EEex_AIBase_LuaHook_OnEventTriggerSet ] + pushGameObjectUD(L, pAIBase); // 2 [ ..., EEex_AIBase_LuaHook_OnEventTriggerSet, pAIBaseUD ] + tolua_pushusertype(L, pTrigger, "CAITrigger"); // 3 [ ..., EEex_AIBase_LuaHook_OnEventTriggerSet, pAIBaseUD, pTriggerUD ] + }); +} + +void CGameAIBase::Override_SetTrigger(const CAITrigger* pTrigger) { + + CAITrigger *const pTriggerCopy = newEngineObj(pTrigger); + + onEventTriggerSet(this, pTriggerCopy); + this->m_pendingTriggers.AddTail(pTriggerCopy); + this->m_bNewTrigger = 1; + + if ((pTriggerCopy->m_flags & 4) != 0) { + return; + } + pTriggerCopy->m_flags |= 4; + + CInfGame *const pGame = (*p_g_pBaldurChitin)->m_pObjectGame; + + switch (pTriggerCopy->m_triggerID) { + + case 0x0002: { // AttackedBy + + this->virtual_AutoPause(2); + + CGameSprite* pSprite = reinterpret_cast(pTriggerCopy->m_triggerCause.GetShareType(this, CGameObjectType::SPRITE, 0)); + if (pSprite != nullptr) { + // I don't know why the engine repeats this + pSprite = reinterpret_cast(pTriggerCopy->m_triggerCause.GetShareType(this, CGameObjectType::SPRITE, 0)); + if ((pSprite->GetActiveStats()->m_generalState & 0x800) != 0) { + break; + } + } + + this->m_lAttackStyle = pTriggerCopy->m_specificID; + if + ( + pGame->GetCharacterPortraitNum(this->m_id) == -1 + || + pGame->GetCharacterPortraitNum(pTriggerCopy->m_triggerCause.m_Instance) == -1 + ) + { + updateScriptingObject(this, EEex_ScriptingObject::ATTACKER, &this->m_lAttacker, &pTriggerCopy->m_triggerCause); + } + break; + } + case 0x0003: { // Help + updateScriptingObject(this, EEex_ScriptingObject::HELP, &this->m_lHelp, &pTriggerCopy->m_triggerCause); + break; + } + case 0x0006: { // ReceivedOrder + updateScriptingObject(this, EEex_ScriptingObject::ORDERED_BY, &this->m_lOrderedBy, &pTriggerCopy->m_triggerCause); + break; + } + case 0x0007: { // Said + updateScriptingObject(this, EEex_ScriptingObject::TALKED_TO, &this->m_lTalkedTo, &pTriggerCopy->m_triggerCause); + break; + } + case 0x0020: { // HitBy + + this->virtual_AutoPause(4); + this->m_lAttackStyle = pTriggerCopy->m_specificID; + + updateScriptingObject(this, EEex_ScriptingObject::HITTER, &this->m_lHitter, &pTriggerCopy->m_triggerCause); + break; + } + case 0x002F: { // Heard + updateScriptingObject(this, EEex_ScriptingObject::HEARD, &this->m_lHeard, &pTriggerCopy->m_triggerCause); + break; + } + case 0x004C: { // Entered + if (this->virtual_GetObjectType() == CGameObjectType::TRIGGER) { + CGameTrigger *const pTrigger = reinterpret_cast(this); + if ((pTrigger->m_dwFlags & 2) == 0) { + pTrigger->SetDrawPoly(0); + } + } + break; + } + case 0x0052: { // Opened + if (this->virtual_GetObjectType() == CGameObjectType::DOOR) { + CGameDoor *const pDoor = reinterpret_cast(this); + if ((pDoor->m_dwFlags & 4) == 0) { + pDoor->SetDrawPoly(0); + } + } + else { + if (this->virtual_GetObjectType() == CGameObjectType::CONTAINER) { + CGameContainer *const pContainer = reinterpret_cast(this); + if ((pContainer->m_dwFlags & 8) == 0) { + pContainer->SetDrawPoly(0); + } + } + } + break; + } + case 0x0097: { // Summoned + updateScriptingObject(this, EEex_ScriptingObject::SUMMONED_BY, &this->m_lSummonedBy, &pTriggerCopy->m_triggerCause); + break; + } + } + + if (pGame->SAVE_OBJECT_LIST.Find(pTriggerCopy->m_triggerID) != nullptr) { + updateScriptingObject(this, EEex_ScriptingObject::TRIGGER, &this->m_lTrigger, &pTriggerCopy->m_triggerCause); + } + + if (this->virtual_GetObjectType() == CGameObjectType::SPRITE) { + CGameSprite *const pSprite = reinterpret_cast(this); + pSprite->GetActiveStats()->m_cContingencyList.ProcessTrigger(pSprite, pTriggerCopy); + } +} + +void CMessageSetLastObject::Override_Run() { + + CGameObject* pObject; + if + ( + CGameObjectArray::GetShare(this->m_targetId, &pObject) != 0 + || + (pObject->virtual_GetObjectType() & CGameObjectType::AIBASE) == 0 + ) + { + return; + } + + if (pObject->virtual_GetObjectType() == CGameObjectType::SPRITE) { + CGameSprite *const pSprite = reinterpret_cast(pObject); + if ((pSprite->m_derivedStats.m_generalState & 0x80) != 0 || (pSprite->m_baseStats.m_generalState & 0x80) != 0) { + // STONE_DEATH + return; + } + } + + CGameAIBase *const pAIBase = reinterpret_cast(pObject); + + switch (this->m_type) { + case 0x0002: { // AttackedBy + updateScriptingObject(pAIBase, EEex_ScriptingObject::ATTACKER, &pAIBase->m_lAttacker, &this->m_lAttacker); + pAIBase->m_lAttackerSent.Set(&this->m_lAttacker); + break; + } + case 0x0003: { // Help + updateScriptingObject(pAIBase, EEex_ScriptingObject::HELP, &pAIBase->m_lHelp, &this->m_lAttacker); + pAIBase->m_lHelpSent.Set(&this->m_lAttacker); + break; + } + case 0x0006: { // ReceivedOrder + updateScriptingObject(pAIBase, EEex_ScriptingObject::ORDERED_BY, &pAIBase->m_lOrderedBy, &this->m_lAttacker); + pAIBase->m_lOrderedBySent.Set(&this->m_lAttacker); + break; + } + case 0x0007: { // Said + updateScriptingObject(pAIBase, EEex_ScriptingObject::TALKED_TO, &pAIBase->m_lTalkedTo, &this->m_lAttacker); + pAIBase->m_lTalkedToSent.Set(&this->m_lAttacker); + break; + } + case 0x0020: { // HitBy + updateScriptingObject(pAIBase, EEex_ScriptingObject::HITTER, &pAIBase->m_lHitter, &this->m_lAttacker); + pAIBase->m_lHitterSent.Set(&this->m_lAttacker); + break; + } + case 0x002F: { // Heard + updateScriptingObject(pAIBase, EEex_ScriptingObject::HEARD, &pAIBase->m_lHeard, &this->m_lAttacker); + pAIBase->m_lHeardSent.Set(&this->m_lAttacker); + break; + } + case 0x004B: { // Killed + updateScriptingObject(pAIBase, EEex_ScriptingObject::KILLED, &pAIBase->m_lKilled, &this->m_lAttacker); + pAIBase->m_lKilledSent.Set(&this->m_lAttacker); + break; + } + case 0x0097: { // Summoned + updateScriptingObject(pAIBase, EEex_ScriptingObject::SUMMONED_BY, &pAIBase->m_lSummonedBy, &this->m_lAttacker); + pAIBase->m_lSummonedBySent.Set(&this->m_lAttacker); + break; + } + case 0x401C: { // See + updateScriptingObject(pAIBase, EEex_ScriptingObject::SEEN, &pAIBase->m_lSeen, &this->m_lAttacker); + pAIBase->m_lSeenSent.Set(&this->m_lAttacker); + break; + } + default: { + updateScriptingObject(pAIBase, EEex_ScriptingObject::TRIGGER, &pAIBase->m_lTrigger, &this->m_lAttacker); + pAIBase->m_lTriggerSent.Set(&this->m_lAttacker); + break; + } + } +} + +void CScreenMap::Override_OnLButtonDblClk(CPoint cPoint) { + + CBaldurEngine *const pActiveEngine = reinterpret_cast((*p_g_pBaldurChitin)->pActiveEngine); + pActiveEngine->OnLeftPanelButtonClick(0); + + // Vanilla Bugfix: Fix closing the local area map with a double click resulting in the world screen responding to the button up event + // | + lua_State *const L = luaState(); + luaCallProtected(L, 0, 0, [&](int _) { + lua_getglobal(L, "EEex_Fix_LuaHook_OnLocalMapDoubleClick"); + }); +} + +void EEex::Override_bootstrapLua() { + + //*p_g_lua = luaL_newstate(); lua_State *const L = luaState(); *p_g_lua = L; @@ -2138,114 +2546,6 @@ end } } -//int __cdecl EEex::Override_fontWrap( -// char* text, -// SDL_Rect* r, -// SDL_Rect* rClip, -// int* horizontalAlignment, -// int* verticalAlignment, -// font_t* font, -// int* pointSize, -// letter_t* letters, -// int* nlines, -// int* nletters, -// int* pointIndex, -// bool* scale, -// adjustmentData_t* adjustData, -// int indent, -// bool bUseFontSizeFloor) -//{ -// const int maxLines = (*verticalAlignment >> 16) & 0xFFF; -// *verticalAlignment &= 0xFFFF; -// -// if (r->h == 0xFFFFFF) -// { -// *verticalAlignment = 0; -// } -// -// SDL_Rect rTransformed; -// SDL_Rect rClipTransformed; -// -// p_DrawTransformToScreen(r, &rTransformed); -// p_DrawTransformToScreen(rClip, &rClipTransformed); -// -// int nAlignAdjX = 0; -// -// if ((*horizontalAlignment & 4) != 0) { -// nAlignAdjX = rClipTransformed.w - rClipTransformed.x; -// } -// -// if ((*horizontalAlignment & 8) != 0) { -// nAlignAdjX = rTransformed.w; -// } -// -// int nAlignAdjY = 0; -// -// if ((*verticalAlignment & 4) != 0) { -// nAlignAdjY = rClipTransformed.h - rClipTransformed.y; -// } -// -// if ((*verticalAlignment & 8) != 0) { -// nAlignAdjY = rTransformed.h; -// } -// -// *horizontalAlignment = *horizontalAlignment & 0xFFFFFFF3; // Unset 0x4 | 0x8 -// *verticalAlignment = *verticalAlignment & 0xFFFFFFF3; // Unset 0x4 | 0x8 -// -// int nFinalPoint = static_cast(p_DrawTransformToScreenH(static_cast(*pointSize))); -// -// if (bUseFontSizeFloor) -// { -// nFinalPoint = (std::max)(10, nFinalPoint); -// } -// -// nFinalPoint = (std::min)(nFinalPoint, 79); -// nFinalPoint = static_cast(floor(nFinalPoint)); -// -// line_metric *const pNewLineMetrics = font->newLineMetrics; -// int lastLineHeight; -// -// for (; nFinalPoint > 1 && (nAlignAdjX != 0 || nAlignAdjY != 0); --nFinalPoint) -// { -// line_metric *const pNewLineMetric = &pNewLineMetrics[nFinalPoint]; -// const float fLineHeight = pNewLineMetric->ascent - pNewLineMetric->descent + pNewLineMetric->line_spacing - 0.001f; -// -// if (nAlignAdjY < 1 || fLineHeight <= nAlignAdjY) -// { -// *nlines = p_wordwrap(letters, 0x40000, nletters, text, rTransformed.w, font, nFinalPoint, *pointIndex, maxLines, &lastLineHeight, adjustData, indent); -// -// if -// ( -// (nAlignAdjY < 1 || *nlines * fLineHeight <= nAlignAdjY) -// && -// (nAlignAdjX < 1 || letters->w <= nAlignAdjX) -// ) -// { -// break; -// } -// } -// } -// -// if (*nletters == 0) -// { -// *nlines = p_wordwrap(letters, 0x40000, nletters, text, rTransformed.w, font, nFinalPoint, *pointIndex, maxLines, &lastLineHeight, adjustData, indent); -// } -// -// r->x = rTransformed.x; -// r->y = rTransformed.y; -// r->w = rTransformed.w; -// r->h = rTransformed.h; -// rClip->x = rClipTransformed.x; -// rClip->y = rClipTransformed.y; -// rClip->w = rClipTransformed.w; -// rClip->h = rClipTransformed.h; -// *pointSize = nFinalPoint; -// -// line_metric *const pNewLineMetric = &pNewLineMetrics[nFinalPoint]; -// const int nLineHeight = static_cast(ceil(pNewLineMetric->ascent - pNewLineMetric->descent + pNewLineMetric->line_spacing)); -// return nLineHeight * *nlines; -//} - int checkNoSavingThrowsAndEvasion(CGameEffect *const pEffect, CGameSprite *const pTarget) { if ((pEffect->m_savingThrow & 0x1F) == 0) { @@ -2684,6 +2984,114 @@ void __cdecl EEex::Override_crashHandler(EXCEPTION_POINTERS* pExceptionPointers) DumpCrashInfo(pExceptionPointers); } +//int __cdecl EEex::Override_fontWrap( +// char* text, +// SDL_Rect* r, +// SDL_Rect* rClip, +// int* horizontalAlignment, +// int* verticalAlignment, +// font_t* font, +// int* pointSize, +// letter_t* letters, +// int* nlines, +// int* nletters, +// int* pointIndex, +// bool* scale, +// adjustmentData_t* adjustData, +// int indent, +// bool bUseFontSizeFloor) +//{ +// const int maxLines = (*verticalAlignment >> 16) & 0xFFF; +// *verticalAlignment &= 0xFFFF; +// +// if (r->h == 0xFFFFFF) +// { +// *verticalAlignment = 0; +// } +// +// SDL_Rect rTransformed; +// SDL_Rect rClipTransformed; +// +// p_DrawTransformToScreen(r, &rTransformed); +// p_DrawTransformToScreen(rClip, &rClipTransformed); +// +// int nAlignAdjX = 0; +// +// if ((*horizontalAlignment & 4) != 0) { +// nAlignAdjX = rClipTransformed.w - rClipTransformed.x; +// } +// +// if ((*horizontalAlignment & 8) != 0) { +// nAlignAdjX = rTransformed.w; +// } +// +// int nAlignAdjY = 0; +// +// if ((*verticalAlignment & 4) != 0) { +// nAlignAdjY = rClipTransformed.h - rClipTransformed.y; +// } +// +// if ((*verticalAlignment & 8) != 0) { +// nAlignAdjY = rTransformed.h; +// } +// +// *horizontalAlignment = *horizontalAlignment & 0xFFFFFFF3; // Unset 0x4 | 0x8 +// *verticalAlignment = *verticalAlignment & 0xFFFFFFF3; // Unset 0x4 | 0x8 +// +// int nFinalPoint = static_cast(p_DrawTransformToScreenH(static_cast(*pointSize))); +// +// if (bUseFontSizeFloor) +// { +// nFinalPoint = (std::max)(10, nFinalPoint); +// } +// +// nFinalPoint = (std::min)(nFinalPoint, 79); +// nFinalPoint = static_cast(floor(nFinalPoint)); +// +// line_metric *const pNewLineMetrics = font->newLineMetrics; +// int lastLineHeight; +// +// for (; nFinalPoint > 1 && (nAlignAdjX != 0 || nAlignAdjY != 0); --nFinalPoint) +// { +// line_metric *const pNewLineMetric = &pNewLineMetrics[nFinalPoint]; +// const float fLineHeight = pNewLineMetric->ascent - pNewLineMetric->descent + pNewLineMetric->line_spacing - 0.001f; +// +// if (nAlignAdjY < 1 || fLineHeight <= nAlignAdjY) +// { +// *nlines = p_wordwrap(letters, 0x40000, nletters, text, rTransformed.w, font, nFinalPoint, *pointIndex, maxLines, &lastLineHeight, adjustData, indent); +// +// if +// ( +// (nAlignAdjY < 1 || *nlines * fLineHeight <= nAlignAdjY) +// && +// (nAlignAdjX < 1 || letters->w <= nAlignAdjX) +// ) +// { +// break; +// } +// } +// } +// +// if (*nletters == 0) +// { +// *nlines = p_wordwrap(letters, 0x40000, nletters, text, rTransformed.w, font, nFinalPoint, *pointIndex, maxLines, &lastLineHeight, adjustData, indent); +// } +// +// r->x = rTransformed.x; +// r->y = rTransformed.y; +// r->w = rTransformed.w; +// r->h = rTransformed.h; +// rClip->x = rClipTransformed.x; +// rClip->y = rClipTransformed.y; +// rClip->w = rClipTransformed.w; +// rClip->h = rClipTransformed.h; +// *pointSize = nFinalPoint; +// +// line_metric *const pNewLineMetric = &pNewLineMetrics[nFinalPoint]; +// const int nLineHeight = static_cast(ceil(pNewLineMetric->ascent - pNewLineMetric->descent + pNewLineMetric->line_spacing)); +// return nLineHeight * *nlines; +//} + #undef fprintf int __cdecl EEex::Override_Infinity_WriteINILine(lua_State* L) { @@ -2695,459 +3103,51 @@ int __cdecl EEex::Override_Infinity_WriteINILine(lua_State* L) { #define fprintf error -int CAICondition::Override_Hold(CTypedPtrList* pTriggerList, CGameAIBase* pCaller) -{ - auto pNode = this->m_triggerList.m_pNodeHead; - if (pNode == nullptr) { - return 1; - } +void __cdecl EEex::Override_uiDoFile(char* fileName) { - bool bRet = false; - int nORCounter = 0; + lua_State *const L = *p_g_lua; - bool bNextTriggerObject = false; - CGameAIBase* pNextTriggerObject = nullptr; + EngineVal fullFileName{}; + fullFileName->Format("%s.lua", fileName); - // EEex - int nTrigger = 0; + const CResRef resref { fileName }; + CRes *const pRes = p_dimmGetResObject(&resref, 0x409, false); - do - { - if (nORCounter <= 0) { - bRet = false; - } + if (pRes != nullptr) { - CAITrigger *const pTrigger = pNode->data; - const short nTriggerID = pTrigger->m_triggerID; + const char *const pResBuffer = reinterpret_cast(pRes->Demand()); - if (nTriggerID == 0x4089) // OR - { - nORCounter = pTrigger->m_specificID; - } - else if (nTriggerID == 0x40E0) // NextTriggerObject - { - EngineVal nextTriggerObjectType{ &pTrigger->m_triggerCause }; - nextTriggerObjectType->Decode(pCaller); + if (luaL_loadbufferx(L, pResBuffer, pRes->nSize, fullFileName->m_pchData, nullptr) == LUA_OK) { - bNextTriggerObject = true; - pNextTriggerObject = reinterpret_cast(nextTriggerObjectType->GetShareType(pCaller, CGameObjectType::AIBASE, 0)); + if (lua_pcallk(L, 0, -1, 0, 0, nullptr) != LUA_OK) { - if (pNextTriggerObject != nullptr && nORCounter < 1) { - bRet = true; + const char *const pErrorMessage = lua_tolstring(L, -1, nullptr); + + if (pErrorMessage != nullptr) { + p_SDL_ShowSimpleMessageBox(0x10, CChitin::p_m_sGameName->m_pchData, pErrorMessage, (*p_g_pBaldurChitin)->cVideo.pCurrentMode->m_pWindow); + p_SDL_Log("Error [%s] in %s", pErrorMessage, fullFileName->m_pchData); + } } } else { - --nORCounter; + const char *const pErrorMessage = lua_tolstring(L, -1, nullptr); + p_SDL_ShowSimpleMessageBox(0x10, CChitin::p_m_sGameName->m_pchData, pErrorMessage, (*p_g_pBaldurChitin)->cVideo.pCurrentMode->m_pWindow); + p_SDL_Log("Err: %s", pErrorMessage); } - if (nTriggerID != 0x40E0) // NOT NextTriggerObject - { - if (bNextTriggerObject) - { - if (pNextTriggerObject != nullptr) - { - // EEex - if (EEex::bInTrackedResponse) - { - for (auto callback : triggerHitCallbacks) { - callback(nTrigger); - } - } + pRes->virtual_Dump(); + } - bNextTriggerObject = false; - const bool bTriggerHolds = this->TriggerHolds(pTrigger, pTriggerList, pNextTriggerObject); - bRet |= bTriggerHolds; + EngineVal langFile{}; + langFile->Format("L_%s", static_cast(*p_lang)); - // EEex - if (EEex::bInTrackedResponse) - { - for (auto callback : triggerEvaluatedCallbacks) { - callback(bTriggerHolds); - } - } - } - } - else - { - // EEex - if (EEex::bInTrackedResponse) - { - for (auto callback : triggerHitCallbacks) { - callback(nTrigger); - } - } - - const bool bTriggerHolds = this->TriggerHolds(pTrigger, pTriggerList, pCaller); - bRet |= bTriggerHolds; - - // EEex - if (EEex::bInTrackedResponse) - { - for (auto callback : triggerEvaluatedCallbacks) { - callback(bTriggerHolds); - } - } - } - } - - if (!bRet && nORCounter < 1) // Fail - { - break; - } - - pNode = pNode->pNext; - - // EEex - ++nTrigger; - } - while (pNode != nullptr); - - return bRet; -} - -int CAICondition::Override_TriggerHolds(CAITrigger* pTrigger, CTypedPtrList* pTriggerList, CGameAIBase* pCaller) -{ - bool nRet = false; - - if ((pTrigger->m_triggerID & 0x4000) == 0) // Event-driven trigger - { - for (auto pNode = pTriggerList->m_pNodeHead; pNode != nullptr; pNode = pNode->pNext) - { - pTrigger->m_triggerCause.Decode(pCaller); - nRet = pNode->data->OfType(pTrigger); - - if ((pTrigger->m_flags & 1) != 0) // Inverted - { - nRet = !nRet; - } - - if (nRet) { - break; - } - } - } - else // Status trigger - { - nRet = pCaller->virtual_EvaluateStatusTrigger(pTrigger); - - if ((pTrigger->m_flags & 1) != 0) // Inverted - { - nRet = !nRet; - } - } - - return nRet; -} - -void updateScriptingObject(CGameAIBase* pAIBase, EEex_ScriptingObject scriptingObject, CAIObjectType* pToSet, CAIObjectType* pToSetWith) { - - if (*pToSet != pToSetWith) { - - pToSet->Set(pToSetWith); - - lua_State *const L = *p_g_lua; - luaCallProtected(L, 2, 0, [&](int _) { - lua_getglobal(L, "EEex_AIBase_LuaHook_OnScriptingObjectUpdated"); // 1 [ ..., EEex_AIBase_LuaHook_OnScriptingObjectUpdated ] - tolua_pushusertype(L, pAIBase, "CGameAIBase"); // 2 [ ..., EEex_AIBase_LuaHook_OnScriptingObjectUpdated, pAIBaseUD ] - lua_pushinteger(L, static_cast<__int32>(scriptingObject)); // 3 [ ..., EEex_AIBase_LuaHook_OnScriptingObjectUpdated, pAIBaseUD, scriptingObject ] + if (_stricmp(fileName, langFile->m_pchData) == 0) { + luaCallProtected(L, 0, 0, [&](int _) { + lua_getglobal(L, "EEex_Menu_LuaHook_AfterTranslationLoaded"); // 1 [ ..., EEex_Menu_LuaHook_AfterTranslationLoaded ] }); } } -void CMessageSetLastObject::Override_Run() { - - CGameObject* pObject; - if - ( - CGameObjectArray::GetShare(this->m_targetId, &pObject) != 0 - || - (pObject->virtual_GetObjectType() & CGameObjectType::AIBASE) == 0 - ) - { - return; - } - - if (pObject->virtual_GetObjectType() == CGameObjectType::SPRITE) { - CGameSprite *const pSprite = reinterpret_cast(pObject); - if ((pSprite->m_derivedStats.m_generalState & 0x80) != 0 || (pSprite->m_baseStats.m_generalState & 0x80) != 0) { - // STONE_DEATH - return; - } - } - - CGameAIBase *const pAIBase = reinterpret_cast(pObject); - - switch (this->m_type) { - case 0x0002: { // AttackedBy - updateScriptingObject(pAIBase, EEex_ScriptingObject::ATTACKER, &pAIBase->m_lAttacker, &this->m_lAttacker); - pAIBase->m_lAttackerSent.Set(&this->m_lAttacker); - break; - } - case 0x0003: { // Help - updateScriptingObject(pAIBase, EEex_ScriptingObject::HELP, &pAIBase->m_lHelp, &this->m_lAttacker); - pAIBase->m_lHelpSent.Set(&this->m_lAttacker); - break; - } - case 0x0006: { // ReceivedOrder - updateScriptingObject(pAIBase, EEex_ScriptingObject::ORDERED_BY, &pAIBase->m_lOrderedBy, &this->m_lAttacker); - pAIBase->m_lOrderedBySent.Set(&this->m_lAttacker); - break; - } - case 0x0007: { // Said - updateScriptingObject(pAIBase, EEex_ScriptingObject::TALKED_TO, &pAIBase->m_lTalkedTo, &this->m_lAttacker); - pAIBase->m_lTalkedToSent.Set(&this->m_lAttacker); - break; - } - case 0x0020: { // HitBy - updateScriptingObject(pAIBase, EEex_ScriptingObject::HITTER, &pAIBase->m_lHitter, &this->m_lAttacker); - pAIBase->m_lHitterSent.Set(&this->m_lAttacker); - break; - } - case 0x002F: { // Heard - updateScriptingObject(pAIBase, EEex_ScriptingObject::HEARD, &pAIBase->m_lHeard, &this->m_lAttacker); - pAIBase->m_lHeardSent.Set(&this->m_lAttacker); - break; - } - case 0x004B: { // Killed - updateScriptingObject(pAIBase, EEex_ScriptingObject::KILLED, &pAIBase->m_lKilled, &this->m_lAttacker); - pAIBase->m_lKilledSent.Set(&this->m_lAttacker); - break; - } - case 0x0097: { // Summoned - updateScriptingObject(pAIBase, EEex_ScriptingObject::SUMMONED_BY, &pAIBase->m_lSummonedBy, &this->m_lAttacker); - pAIBase->m_lSummonedBySent.Set(&this->m_lAttacker); - break; - } - case 0x401C: { // See - updateScriptingObject(pAIBase, EEex_ScriptingObject::SEEN, &pAIBase->m_lSeen, &this->m_lAttacker); - pAIBase->m_lSeenSent.Set(&this->m_lAttacker); - break; - } - default: { - updateScriptingObject(pAIBase, EEex_ScriptingObject::TRIGGER, &pAIBase->m_lTrigger, &this->m_lAttacker); - pAIBase->m_lTriggerSent.Set(&this->m_lAttacker); - break; - } - } -} - -static void onEventTriggerSet(CGameAIBase *const pAIBase, CAITrigger *const pTrigger) { - - if (!EEex::AIBase_LuaHook_OnEventTriggerSet_Enabled) { - return; - } - - lua_State *const L = *p_g_lua; - luaCallProtected(L, 2, 0, [&](int) { - lua_getglobal(L, "EEex_AIBase_LuaHook_OnEventTriggerSet"); // 1 [ ..., EEex_AIBase_LuaHook_OnEventTriggerSet ] - pushGameObjectUD(L, pAIBase); // 2 [ ..., EEex_AIBase_LuaHook_OnEventTriggerSet, pAIBaseUD ] - tolua_pushusertype(L, pTrigger, "CAITrigger"); // 3 [ ..., EEex_AIBase_LuaHook_OnEventTriggerSet, pAIBaseUD, pTriggerUD ] - }); -} - -void CGameAIBase::Override_SetTrigger(const CAITrigger* pTrigger) { - - CAITrigger *const pTriggerCopy = newEngineObj(pTrigger); - - onEventTriggerSet(this, pTriggerCopy); - this->m_pendingTriggers.AddTail(pTriggerCopy); - this->m_bNewTrigger = 1; - - if ((pTriggerCopy->m_flags & 4) != 0) { - return; - } - pTriggerCopy->m_flags |= 4; - - CInfGame *const pGame = (*p_g_pBaldurChitin)->m_pObjectGame; - - switch (pTriggerCopy->m_triggerID) { - - case 0x0002: { // AttackedBy - - this->virtual_AutoPause(2); - - CGameSprite* pSprite = reinterpret_cast(pTriggerCopy->m_triggerCause.GetShareType(this, CGameObjectType::SPRITE, 0)); - if (pSprite != nullptr) { - // I don't know why the engine repeats this - pSprite = reinterpret_cast(pTriggerCopy->m_triggerCause.GetShareType(this, CGameObjectType::SPRITE, 0)); - if ((pSprite->GetActiveStats()->m_generalState & 0x800) != 0) { - break; - } - } - - this->m_lAttackStyle = pTriggerCopy->m_specificID; - if - ( - pGame->GetCharacterPortraitNum(this->m_id) == -1 - || - pGame->GetCharacterPortraitNum(pTriggerCopy->m_triggerCause.m_Instance) == -1 - ) - { - updateScriptingObject(this, EEex_ScriptingObject::ATTACKER, &this->m_lAttacker, &pTriggerCopy->m_triggerCause); - } - break; - } - case 0x0003: { // Help - updateScriptingObject(this, EEex_ScriptingObject::HELP, &this->m_lHelp, &pTriggerCopy->m_triggerCause); - break; - } - case 0x0006: { // ReceivedOrder - updateScriptingObject(this, EEex_ScriptingObject::ORDERED_BY, &this->m_lOrderedBy, &pTriggerCopy->m_triggerCause); - break; - } - case 0x0007: { // Said - updateScriptingObject(this, EEex_ScriptingObject::TALKED_TO, &this->m_lTalkedTo, &pTriggerCopy->m_triggerCause); - break; - } - case 0x0020: { // HitBy - - this->virtual_AutoPause(4); - this->m_lAttackStyle = pTriggerCopy->m_specificID; - - updateScriptingObject(this, EEex_ScriptingObject::HITTER, &this->m_lHitter, &pTriggerCopy->m_triggerCause); - break; - } - case 0x002F: { // Heard - updateScriptingObject(this, EEex_ScriptingObject::HEARD, &this->m_lHeard, &pTriggerCopy->m_triggerCause); - break; - } - case 0x004C: { // Entered - if (this->virtual_GetObjectType() == CGameObjectType::TRIGGER) { - CGameTrigger *const pTrigger = reinterpret_cast(this); - if ((pTrigger->m_dwFlags & 2) == 0) { - pTrigger->SetDrawPoly(0); - } - } - break; - } - case 0x0052: { // Opened - if (this->virtual_GetObjectType() == CGameObjectType::DOOR) { - CGameDoor *const pDoor = reinterpret_cast(this); - if ((pDoor->m_dwFlags & 4) == 0) { - pDoor->SetDrawPoly(0); - } - } - else { - if (this->virtual_GetObjectType() == CGameObjectType::CONTAINER) { - CGameContainer *const pContainer = reinterpret_cast(this); - if ((pContainer->m_dwFlags & 8) == 0) { - pContainer->SetDrawPoly(0); - } - } - } - break; - } - case 0x0097: { // Summoned - updateScriptingObject(this, EEex_ScriptingObject::SUMMONED_BY, &this->m_lSummonedBy, &pTriggerCopy->m_triggerCause); - break; - } - } - - if (pGame->SAVE_OBJECT_LIST.Find(pTriggerCopy->m_triggerID) != nullptr) { - updateScriptingObject(this, EEex_ScriptingObject::TRIGGER, &this->m_lTrigger, &pTriggerCopy->m_triggerCause); - } - - if (this->virtual_GetObjectType() == CGameObjectType::SPRITE) { - CGameSprite *const pSprite = reinterpret_cast(this); - pSprite->GetActiveStats()->m_cContingencyList.ProcessTrigger(pSprite, pTriggerCopy); - } -} - -void CGameAIBase::Override_ApplyTriggers() { - - CBaldurChitin *const pBaldurChitin = *p_g_pBaldurChitin; - CInfGame *const pGame = pBaldurChitin->m_pObjectGame; - - if (pGame->m_worldTime.m_gameTime % 3600 == 0) { - CMessageUpdateReaction *const pMessage = newEngineObj(11, this->m_id, this->m_id); - pBaldurChitin->m_cMessageHandler.AddMessage(pMessage, 0); - } - - if (this->virtual_GetObjectType() == CGameObjectType::SPRITE) { - CGameSprite *const pSprite = reinterpret_cast(this); - pSprite->GetActiveStats()->m_cContingencyList.Process(pSprite); - } - - for (auto pNode = this->m_pendingTriggers.m_pNodeHead; pNode != nullptr; pNode = pNode->pNext) { - - CAITrigger *const pTrigger = pNode->data; - if ((pTrigger->m_flags & 4) != 0) { - continue; - } - pTrigger->m_flags |= 4; - - switch (pTrigger->m_triggerID) { - - case 0x0002: { // AttackedBy - - this->virtual_AutoPause(2); - this->m_lAttackStyle = pTrigger->m_specificID; - - if - ( - pGame->GetCharacterPortraitNum(this->m_id) == -1 - || - pGame->GetCharacterPortraitNum(pTrigger->m_triggerCause.m_Instance) == -1 - ) - { - updateScriptingObject(this, EEex_ScriptingObject::ATTACKER, &this->m_lAttacker, &pTrigger->m_triggerCause); - } - break; - } - case 0x0003: { // Help - updateScriptingObject(this, EEex_ScriptingObject::HELP, &this->m_lHelp, &pTrigger->m_triggerCause); - break; - } - case 0x0006: { // ReceivedOrder - updateScriptingObject(this, EEex_ScriptingObject::ORDERED_BY, &this->m_lOrderedBy, &pTrigger->m_triggerCause); - break; - } - case 0x0007: { // Said - updateScriptingObject(this, EEex_ScriptingObject::TALKED_TO, &this->m_lTalkedTo, &pTrigger->m_triggerCause); - break; - } - case 0x0020: { // HitBy - - this->virtual_AutoPause(4); - this->m_lAttackStyle = pTrigger->m_specificID; - - updateScriptingObject(this, EEex_ScriptingObject::HITTER, &this->m_lHitter, &pTrigger->m_triggerCause); - break; - } - case 0x002F: { // Heard - updateScriptingObject(this, EEex_ScriptingObject::HEARD, &this->m_lHeard, &pTrigger->m_triggerCause); - break; - } - case 0x0097: { // Summoned - updateScriptingObject(this, EEex_ScriptingObject::SUMMONED_BY, &this->m_lSummonedBy, &pTrigger->m_triggerCause); - break; - } - } - - if (pGame->SAVE_OBJECT_LIST.Find(pTrigger->m_triggerID) != nullptr) { - updateScriptingObject(this, EEex_ScriptingObject::TRIGGER, &this->m_lTrigger, &pTrigger->m_triggerCause); - } - - if (this->virtual_GetObjectType() == CGameObjectType::SPRITE) { - CGameSprite *const pSprite = reinterpret_cast(this); - pSprite->GetActiveStats()->m_cContingencyList.ProcessTrigger(pSprite, pTrigger); - } - } -} - -void CScreenMap::Override_OnLButtonDblClk(CPoint cPoint) { - - CBaldurEngine *const pActiveEngine = reinterpret_cast((*p_g_pBaldurChitin)->pActiveEngine); - pActiveEngine->OnLeftPanelButtonClick(0); - - // Vanilla Bugfix: Fix closing the local area map with a double click resulting in the world screen responding to the button up event - // | - lua_State *const L = luaState(); - luaCallProtected(L, 0, 0, [&](int _) { - lua_getglobal(L, "EEex_Fix_LuaHook_OnLocalMapDoubleClick"); - }); -} - ///////////////////////////// // Hooks // ///////////////////////////// From 800d8ca0f9f4f0e60b65ddf7e6d713e921219f6c Mon Sep 17 00:00:00 2001 From: Bubb13 <36863623+Bubb13@users.noreply.github.com> Date: Fri, 1 May 2026 18:39:02 -0700 Subject: [PATCH 3/6] Add `combat_round_*` override to op342 --- EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h | 3 + .../Baldur-v2.6.6.0_generated.h | 24 + .../generate_bindings/in/manual_types.txt | 3 + EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp | 57 +- ...r-v2.6.6.0_generated_internal_pointers.cpp | 6 + EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp | 5 +- .../Baldur-v2.6.6.0_generated.h | 24 + .../generate_bindings/in/manual_types.txt | 3 + ...r-v2.6.6.0_generated_internal_pointers.cpp | 6 + .../Generated/EEexLua_generated.cpp | 4257 ++++++----------- 10 files changed, 1503 insertions(+), 2885 deletions(-) diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h index c9e109d..1706c7e 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h @@ -95,6 +95,8 @@ namespace EEex { bool Opcode_Hook_Op280_ShouldSuppressWildSurgeVisuals(CGameSprite* pSprite); // op319 bool Opcode_Hook_Op319_IsInverted(CGameEffect* pEffect); + // op342 + void Opcode_Hook_Op342_OnUnhandledParam2(CGameEffect* pEffect, CGameSprite* pSprite); // New op400 int Opcode_Hook_SetTemporaryAIScript_ApplyEffect(CGameEffect* pEffect, CGameSprite* pSprite); void Opcode_Hook_SetTemporaryAIScript_OnRemove(CGameEffect* pEffect, CGameSprite* pSprite); @@ -124,6 +126,7 @@ namespace EEex { void Sprite_Hook_OnDestruct(CGameSprite* pSprite); void Sprite_Hook_OnAfterEffectListUnmarshalled(CGameSprite* pSprite); void Sprite_Hook_OnBeforeEffectListMarshalled(CGameSprite* pSprite); + byte Sprite_Hook_OnGetAttackFrameType(CGameSprite* pSprite, byte numAttacks); //////////// // Action // diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 79814b2..1a111f1 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -10876,13 +10876,37 @@ struct CVidBitmap : CVidImage, CResHelper CVidBitmap() = delete; + typedef void (__thiscall *type_Construct)(CVidBitmap* pThis); + static type_Construct p_Construct; + typedef int (__thiscall *type_GetPixelColor)(CVidBitmap* pThis, tagRGBQUAD* color, int x, int y); static type_GetPixelColor p_GetPixelColor; + typedef byte (__thiscall *type_GetPixelValueOrZero)(CVidBitmap* pThis, int x, int y); + static type_GetPixelValueOrZero p_GetPixelValueOrZero; + + typedef void (__thiscall *type_SetResRef)(CVidBitmap* pThis, const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing); + static type_SetResRef p_SetResRef; + + void Construct() + { + p_Construct(this); + } + int GetPixelColor(tagRGBQUAD* color, int x, int y) { return p_GetPixelColor(this, color, x, y); } + + byte GetPixelValue(int x, int y) + { + return p_GetPixelValueOrZero(this, x, y); + } + + void SetResRef(const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing) + { + p_SetResRef(this, cNewResRef, bSetAutoRequest, bWarningIfMissing); + } }; struct CScreenAI : CBaldurEngine diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index 78025ec..7ea0e49 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1620,7 +1620,10 @@ struct CBaldurEngine : CWarp struct CVidBitmap : CVidImage, CResHelper { + $constructor_fake Construct(); int GetPixelColor(tagRGBQUAD* color, int x, int y); + $binding_name(GetPixelValueOrZero) $pattern_name(GetPixelValue(int,int)) byte GetPixelValue(int x, int y); + void SetResRef(const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing); }; struct CVidFont : CResHelper diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp index 31a613b..2dfa92d 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp @@ -141,6 +141,7 @@ std::unordered_map> proj struct ExSpriteData { + EngineVal combatRoundsOverride[5]{}; Array oldDisabledSpellTypes; int oldDisableSpells = 0; uint64_t uuid = 0; @@ -3531,6 +3532,28 @@ int CGameEffectUsability::Override_CheckUsability(CGameSprite* pSprite) { return match ^ EEex::Opcode_Hook_Op319_IsInverted(this); } +//-------// +// op342 // +//-------// + +void EEex::Opcode_Hook_Op342_OnUnhandledParam2(CGameEffect* pEffect, CGameSprite* pSprite) { + + if (pEffect->m_dWFlags == 5) { // Override combat_round_* in animation INI + + const int nCombatRoundSlot = pEffect->m_effectAmount; + + if (nCombatRoundSlot < 0 || nCombatRoundSlot > 4) { + // Invalid combat round slot + pEffect->m_done = true; + return; + } + + ExSpriteData& exData = exSpriteDataMap[pSprite]; + exData.combatRoundsOverride[nCombatRoundSlot]->SetResRef(&pEffect->m_res, true, true); + pSprite->m_animation.m_overrides |= (0x4 << (nCombatRoundSlot + 1)); + } +} + //-----------// // New op400 // //-----------// @@ -3955,6 +3978,38 @@ void EEex::Sprite_Hook_OnBeforeEffectListMarshalled(CGameSprite* pSprite) { STUTTER_LOG_END } +static byte getAttackFrameTypeReimplementation(CVidBitmap* aBitmaps, byte numAttacks, byte speedFactor, byte combatFrame) { + + if (numAttacks <= 5 && speedFactor <= 10) { + + if (combatFrame > 100) { + return 15; + } + + return aBitmaps[numAttacks - 1].GetPixelValue(combatFrame, speedFactor); + } + + return 0; +} + +byte EEex::Sprite_Hook_OnGetAttackFrameType(CGameSprite* pSprite, byte numAttacks) { + + const CGameAnimation *const pAnimation = &pSprite->m_animation; + const byte nSpeedFactor = static_cast(pSprite->m_speedFactor); + const byte nAttackFrame = static_cast(pSprite->m_attackFrame); + + if ((pAnimation->m_overrides & (0x4 << numAttacks)) != 0) { // Override combat_round_* in animation INI + + // Passing `combatRoundsOverride` as a raw `CVidBitmap` array requires that the `EngineVal` wrapper isn't adding any fields + static_assert(sizeof(EngineVal) == sizeof(CVidBitmap)); + + ExSpriteData& exData = exSpriteDataMap[pSprite]; + return getAttackFrameTypeReimplementation(&**exData.combatRoundsOverride, numAttacks, nSpeedFactor, nAttackFrame); + } + + return pAnimation->m_animation->virtual_GetAttackFrameType(numAttacks, nSpeedFactor, nAttackFrame); +} + CGameEffectDamage* CGameSprite::Override_Damage( CItem* curWeaponIn, CItem* pLauncher, int curAttackNum, int criticalDamage, CAIObjectType* type, short facing, short myFacing, CGameSprite* target, int lastSwing) @@ -5087,7 +5142,7 @@ void EEex::Fix_Hook_ImplementWSPECIALSpeedColumn(CGameSprite* pSprite, int nProf if (bOffHand) { return; } - + const C2DArray& WSPECIAL = (*p_g_pBaldurChitin)->m_pObjectGame->m_ruleTables.m_tWeaponSpecialization; const CString *const sCell = WSPECIAL.GetAt(2, nProficiencyLevel); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index d21ae1d..77b96dc 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -188,7 +188,10 @@ CAIScriptFile::type_ParseObjectType CAIScriptFile::p_ParseObjectType; CAIScriptFile::type_ParseResponseString CAIScriptFile::p_ParseResponseString; CSound::type_Construct CSound::p_Construct; CSound::type_Destruct CSound::p_Destruct; +CVidBitmap::type_Construct CVidBitmap::p_Construct; CVidBitmap::type_GetPixelColor CVidBitmap::p_GetPixelColor; +CVidBitmap::type_GetPixelValueOrZero CVidBitmap::p_GetPixelValueOrZero; +CVidBitmap::type_SetResRef CVidBitmap::p_SetResRef; CSearchBitmap::type_GetCost CSearchBitmap::p_GetCost; CSearchBitmap::type_GetLOSCost CSearchBitmap::p_GetLOSCost; CSearchBitmap::type_GetNearestOpenSquare CSearchBitmap::p_GetNearestOpenSquare; @@ -515,7 +518,10 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("CAIScriptFile::ParseResponseString"), CAIScriptFile::p_ParseResponseString); attemptFillPointer(TEXT("CSound::Construct"), CSound::p_Construct); attemptFillPointer(TEXT("CSound::Destruct"), CSound::p_Destruct); + attemptFillPointer(TEXT("CVidBitmap::Construct"), CVidBitmap::p_Construct); attemptFillPointer(TEXT("CVidBitmap::GetPixelColor"), CVidBitmap::p_GetPixelColor); + attemptFillPointer(TEXT("CVidBitmap::GetPixelValue(int,int)"), CVidBitmap::p_GetPixelValueOrZero); + attemptFillPointer(TEXT("CVidBitmap::SetResRef"), CVidBitmap::p_SetResRef); attemptFillPointer(TEXT("CSearchBitmap::GetCost"), CSearchBitmap::p_GetCost); attemptFillPointer(TEXT("CSearchBitmap::GetLOSCost"), CSearchBitmap::p_GetLOSCost); attemptFillPointer(TEXT("CSearchBitmap::GetNearestOpenSquare"), CSearchBitmap::p_GetNearestOpenSquare); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp index feaf4c9..a716d99 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp @@ -49,8 +49,8 @@ static void exportPatterns() { exportPattern(TEXT("CGameText::Override_Render"), getMemberPtr(&CGameText::Override_Render)); exportPattern(TEXT("CInfinity::Override_AdjustViewPosition"), getMemberPtr(&CInfinity::Override_AdjustViewPosition)); exportPattern(TEXT("CInfinity::Override_FitViewPosition"), getMemberPtr(&CInfinity::Override_FitViewPosition)); - exportPattern(TEXT("CInfinity::Override_SetScrollDest"), getMemberPtr(&CInfinity::Override_SetScrollDest)); exportPattern(TEXT("CInfinity::Override_Scroll"), getMemberPtr(&CInfinity::Override_Scroll)); + exportPattern(TEXT("CInfinity::Override_SetScrollDest"), getMemberPtr(&CInfinity::Override_SetScrollDest)); exportPattern(TEXT("CMessageSetLastObject::Override_Run"), getMemberPtr(&CMessageSetLastObject::Override_Run)); exportPattern(TEXT("CScreenMap::Override_CenterViewPort"), getMemberPtr(&CScreenMap::Override_CenterViewPort)); exportPattern(TEXT("CScreenMap::Override_OnLButtonDblClk"), getMemberPtr(&CScreenMap::Override_OnLButtonDblClk)); @@ -113,6 +113,8 @@ static void exportPatterns() { exportPattern(TEXT("EEex::Opcode_Hook_Op280_ShouldSuppressWildSurgeVisuals"), EEex::Opcode_Hook_Op280_ShouldSuppressWildSurgeVisuals); // op319 exportPattern(TEXT("EEex::Opcode_Hook_Op319_IsInverted"), EEex::Opcode_Hook_Op319_IsInverted); + // op342 + exportPattern(TEXT("EEex::Opcode_Hook_Op342_OnUnhandledParam2"), EEex::Opcode_Hook_Op342_OnUnhandledParam2); // New op400 exportPattern(TEXT("EEex::Opcode_Hook_SetTemporaryAIScript_ApplyEffect"), EEex::Opcode_Hook_SetTemporaryAIScript_ApplyEffect); exportPattern(TEXT("EEex::Opcode_Hook_SetTemporaryAIScript_OnRemove"), EEex::Opcode_Hook_SetTemporaryAIScript_OnRemove); @@ -142,6 +144,7 @@ static void exportPatterns() { exportPattern(TEXT("EEex::Sprite_Hook_OnDestruct"), EEex::Sprite_Hook_OnDestruct); exportPattern(TEXT("EEex::Sprite_Hook_OnAfterEffectListUnmarshalled"), EEex::Sprite_Hook_OnAfterEffectListUnmarshalled); exportPattern(TEXT("EEex::Sprite_Hook_OnBeforeEffectListMarshalled"), EEex::Sprite_Hook_OnBeforeEffectListMarshalled); + exportPattern(TEXT("EEex::Sprite_Hook_OnGetAttackFrameType"), EEex::Sprite_Hook_OnGetAttackFrameType); //////////// // Action // diff --git a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 36232d8..5cc0b40 100644 --- a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -10740,13 +10740,37 @@ struct CVidBitmap : CVidImage, CResHelper CVidBitmap() = delete; + typedef void (__thiscall *type_Construct)(CVidBitmap* pThis); + static type_Construct p_Construct; + typedef int (__thiscall *type_GetPixelColor)(CVidBitmap* pThis, tagRGBQUAD* color, int x, int y); static type_GetPixelColor p_GetPixelColor; + typedef byte (__thiscall *type_GetPixelValueOrZero)(CVidBitmap* pThis, int x, int y); + static type_GetPixelValueOrZero p_GetPixelValueOrZero; + + typedef void (__thiscall *type_SetResRef)(CVidBitmap* pThis, const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing); + static type_SetResRef p_SetResRef; + + void Construct() + { + p_Construct(this); + } + int GetPixelColor(tagRGBQUAD* color, int x, int y) { return p_GetPixelColor(this, color, x, y); } + + byte GetPixelValue(int x, int y) + { + return p_GetPixelValueOrZero(this, x, y); + } + + void SetResRef(const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing) + { + p_SetResRef(this, cNewResRef, bSetAutoRequest, bWarningIfMissing); + } }; struct CScreenAI : CBaldurEngine diff --git a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index 770e500..093525f 100644 --- a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1620,7 +1620,10 @@ struct CBaldurEngine : CWarp struct CVidBitmap : CVidImage, CResHelper { + $constructor_fake Construct(); int GetPixelColor(tagRGBQUAD* color, int x, int y); + $binding_name(GetPixelValueOrZero) $pattern_name(GetPixelValue(int,int)) byte GetPixelValue(int x, int y); + void SetResRef(const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing); }; struct CVidFont : CResHelper diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index 13e1822..d030ea1 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -176,7 +176,10 @@ CAIScriptFile::type_ParseObjectType CAIScriptFile::p_ParseObjectType; CAIScriptFile::type_ParseResponseString CAIScriptFile::p_ParseResponseString; CSound::type_Construct CSound::p_Construct; CSound::type_Destruct CSound::p_Destruct; +CVidBitmap::type_Construct CVidBitmap::p_Construct; CVidBitmap::type_GetPixelColor CVidBitmap::p_GetPixelColor; +CVidBitmap::type_GetPixelValueOrZero CVidBitmap::p_GetPixelValueOrZero; +CVidBitmap::type_SetResRef CVidBitmap::p_SetResRef; CSearchBitmap::type_GetCost CSearchBitmap::p_GetCost; CSearchBitmap::type_GetLOSCost CSearchBitmap::p_GetLOSCost; CSearchBitmap::type_GetNearestOpenSquare CSearchBitmap::p_GetNearestOpenSquare; @@ -502,7 +505,10 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("CAIScriptFile::ParseResponseString"), CAIScriptFile::p_ParseResponseString); attemptFillPointer(TEXT("CSound::Construct"), CSound::p_Construct); attemptFillPointer(TEXT("CSound::Destruct"), CSound::p_Destruct); + attemptFillPointer(TEXT("CVidBitmap::Construct"), CVidBitmap::p_Construct); attemptFillPointer(TEXT("CVidBitmap::GetPixelColor"), CVidBitmap::p_GetPixelColor); + attemptFillPointer(TEXT("CVidBitmap::GetPixelValue(int,int)"), CVidBitmap::p_GetPixelValueOrZero); + attemptFillPointer(TEXT("CVidBitmap::SetResRef"), CVidBitmap::p_SetResRef); attemptFillPointer(TEXT("CSearchBitmap::GetCost"), CSearchBitmap::p_GetCost); attemptFillPointer(TEXT("CSearchBitmap::GetLOSCost"), CSearchBitmap::p_GetLOSCost); attemptFillPointer(TEXT("CSearchBitmap::GetNearestOpenSquare"), CSearchBitmap::p_GetNearestOpenSquare); diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp index 90de7c5..55bba0d 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp @@ -243,51 +243,27 @@ static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_uiVariantType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_uiVariantType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_uiItemType__value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uiItemType__value(lua_State* L) +static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -987,6 +963,30 @@ static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_Sta return 1; } +static int tolua_get_Primitive_uiVariantType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_uiVariantType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + static int tolua_get_Primitive_DrawFilter__value(lua_State* L) { Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); @@ -1227,75 +1227,75 @@ static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_DrawMode__value(lua_State* L) +static int tolua_get_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawMode__value(lua_State* L) +static int tolua_set_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) +static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) +static int tolua_get_Primitive_DrawMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) +static int tolua_set_Primitive_DrawMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int16__value(lua_State* L) +static int tolua_get_Primitive_INT__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int16__value(lua_State* L) +static int tolua_set_Primitive_INT__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int16>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int16__reference_value(lua_State* L) +static int tolua_get_Primitive_INT__reference_value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1323,171 +1323,75 @@ static int tolua_get_Primitive___int8__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_long_double__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); - return 1; -} - -static int tolua_set_Primitive_long_double__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); - return 0; -} - -static int tolua_get_Primitive_long_double__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_LONG__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_LONG__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_LONG__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_int16_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_int16_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_LRESULT__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_LRESULT__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_uint64_t__value(lua_State* L) +static int tolua_get_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint64_t__value(lua_State* L) +static int tolua_set_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_UINT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint__value(lua_State* L) +static int tolua_get_Primitive_char__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + lua_pushlstring(L, (const char*)self->value, 1); return 1; } -static int tolua_set_Primitive_uint__value(lua_State* L) +static int tolua_set_Primitive_char__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tochar(L, "value"); return 0; } -static int tolua_get_Primitive_uint__reference_value(lua_State* L) +static int tolua_get_Primitive_char__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "char"); return 1; } -static int tolua_get_Primitive_lua_Integer__value(lua_State* L) +static int tolua_get_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_lua_Integer__value(lua_State* L) +static int tolua_set_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) +static int tolua_get_Primitive_long__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1515,123 +1419,107 @@ static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_uintptr_t__value(lua_State* L) +static int tolua_get_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uintptr_t__value(lua_State* L) +static int tolua_set_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int16>(L, "value"); return 0; } -static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive___int16__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); return 1; } -static int tolua_get_Primitive_int32_t__value(lua_State* L) +static int tolua_get_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int32_t__value(lua_State* L) +static int tolua_set_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_ushort__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int32__value(lua_State* L) +static int tolua_get_Primitive_byte__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int32__value(lua_State* L) +static int tolua_set_Primitive_byte__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int32__reference_value(lua_State* L) +static int tolua_get_Primitive_byte__reference_value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_bool__value(lua_State* L) +static int tolua_get_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushboolean(L, (bool)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_bool__value(lua_State* L) +static int tolua_set_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_toboolean(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_bool__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_byte__value(lua_State* L) +static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_set_Primitive_byte__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_byte__reference_value(lua_State* L) +static int tolua_get_Primitive_char___value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); return 1; } @@ -1659,51 +1547,51 @@ static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_long__value(lua_State* L) +static int tolua_get_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_long__value(lua_State* L) +static int tolua_set_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_long__reference_value(lua_State* L) +static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_intptr_t__value(lua_State* L) +static int tolua_get_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_intptr_t__value(lua_State* L) +static int tolua_set_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1731,179 +1619,171 @@ static int tolua_get_Primitive___int64__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_DWORD__value(lua_State* L) +static int tolua_get_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DWORD__value(lua_State* L) +static int tolua_set_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) +static int tolua_get_Primitive_uint__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ushort__value(lua_State* L) +static int tolua_get_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ushort__value(lua_State* L) +static int tolua_set_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ushort__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_char___value(lua_State* L) +static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_size_t__value(lua_State* L) +static int tolua_get_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_size_t__value(lua_State* L) +static int tolua_set_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_size_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int__value(lua_State* L) +static int tolua_get_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushboolean(L, (bool)self->value); return 1; } -static int tolua_set_Primitive_int__value(lua_State* L) +static int tolua_set_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_toboolean(L, "value"); return 0; } -static int tolua_get_Primitive_int__reference_value(lua_State* L) +static int tolua_get_Primitive_bool__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_INT__value(lua_State* L) +static int tolua_get_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_INT__value(lua_State* L) +static int tolua_set_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_INT__reference_value(lua_State* L) +static int tolua_get_Primitive_size_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_float__value(lua_State* L) +static int tolua_get_Primitive_uint16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_float__value(lua_State* L) +static int tolua_set_Primitive_uint16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_float__reference_value(lua_State* L) +static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int8_t__value(lua_State* L) +static int tolua_get_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int8_t__value(lua_State* L) +static int tolua_set_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1931,75 +1811,99 @@ static int tolua_get_Primitive_short__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_BOOL__value(lua_State* L) +static int tolua_get_Primitive_uint32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_BOOL__value(lua_State* L) +static int tolua_set_Primitive_uint32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) +static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_set_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint16_t__value(lua_State* L) +static int tolua_get_Primitive_DWORD__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint16_t__value(lua_State* L) +static int tolua_set_Primitive_DWORD__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_lua_Integer__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_lua_Integer__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tointeger(L, "value"); + return 0; +} + +static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -2027,99 +1931,195 @@ static int tolua_get_Primitive_double__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_uint32_t__value(lua_State* L) +static int tolua_get_Primitive_HRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint32_t__value(lua_State* L) +static int tolua_set_Primitive_HRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_UINT__value(lua_State* L) +static int tolua_get_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushnumber(L, (lua_Number)self->value); + return 1; +} + +static int tolua_set_Primitive_long_double__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tonumber(L, "value"); + return 0; +} + +static int tolua_get_Primitive_long_double__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_float__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushnumber(L, (lua_Number)self->value); + return 1; +} + +static int tolua_set_Primitive_float__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tonumber(L, "value"); + return 0; +} + +static int tolua_get_Primitive_float__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_LONG__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_UINT__value(lua_State* L) +static int tolua_set_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_UINT__reference_value(lua_State* L) +static int tolua_get_Primitive_LONG__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_HRESULT__value(lua_State* L) +static int tolua_get_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_HRESULT__value(lua_State* L) +static int tolua_set_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive_int__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_char__value(lua_State* L) +static int tolua_get_Primitive_intptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushlstring(L, (const char*)self->value, 1); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_char__value(lua_State* L) +static int tolua_set_Primitive_intptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tochar(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_char__reference_value(lua_State* L) +static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "char"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tointeger(L, "value"); + return 0; +} + +static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive___int32__value(lua_State* L) +{ + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive___int32__value(lua_State* L) +{ + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive___int32__reference_value(lua_State* L) +{ + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); return 1; } @@ -27043,72 +27043,46 @@ static int tolua_function_VariableArray_void___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_ushort__get(lua_State* L) +static int tolua_function_VariableArray_char__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushinteger(L, (lua_Integer)returnVal); - return 1; -} - -static int tolua_function_VariableArray_ushort__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } -static int tolua_function_VariableArray_ushort__set(lua_State* L) +static int tolua_function_VariableArray_char__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } -static int tolua_function_VariableArray_byte__get(lua_State* L) +static int tolua_function_VariableArray_ushort__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_byte__getReference(lua_State* L) +static int tolua_function_VariableArray_ushort__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); - return 1; -} - -static int tolua_function_VariableArray_byte__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); - return 0; -} - -static int tolua_function_VariableArray_char__get(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushlstring(L, (const char*)&returnVal, 1); + ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray_char__set(lua_State* L) +static int tolua_function_VariableArray_ushort__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27155,6 +27129,32 @@ static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(l return 0; } +static int tolua_function_VariableArray_byte__get(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_VariableArray_byte__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; +} + +static int tolua_function_VariableArray_byte__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + return 0; +} + static int tolua_function_VariableArray_CRes___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -27604,23 +27604,6 @@ static int tolua_function_VariableArray_ID3DXEffect___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_SAreaFileWrapper__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SAreaFileWrapper* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "SAreaFileWrapper"); - return 1; -} - -static int tolua_function_VariableArray_SAreaFileWrapper__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SAreaFileWrapper*)tolua_tousertype_dynamic(L, 3, 0, "SAreaFileWrapper")); - return 0; -} - static int tolua_function_VariableArray_SDL_Cursor__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -27681,23 +27664,6 @@ static int tolua_function_VariableArray_const__D3DXMACRO__getReference(lua_State return 1; } -static int tolua_function_VariableArray___POSITION__getReference(lua_State* L) -{ - VariableArray<__POSITION>* self = (VariableArray<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__POSITION>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __POSITION* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "__POSITION"); - return 1; -} - -static int tolua_function_VariableArray___POSITION__set(lua_State* L) -{ - VariableArray<__POSITION>* self = (VariableArray<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__POSITION>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(__POSITION*)tolua_tousertype_dynamic(L, 3, 0, "__POSITION")); - return 0; -} - static int tolua_function_VariableArray_const_unsigned___int16__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -27948,23 +27914,6 @@ static int tolua_function_VariableArray_CVisibilityMapEllipse__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CColorRange__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CColorRange* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CColorRange"); - return 1; -} - -static int tolua_function_VariableArray_CColorRange__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CColorRange*)tolua_tousertype_dynamic(L, 3, 0, "CColorRange")); - return 0; -} - static int tolua_function_VariableArray__iobuf__getReference(lua_State* L) { VariableArray<_iobuf>* self = (VariableArray<_iobuf>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_iobuf>"); @@ -28008,24 +27957,6 @@ static int tolua_function_VariableArray_bool__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_const_byte__get(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushinteger(L, (lua_Integer)returnVal); - return 1; -} - -static int tolua_function_VariableArray_const_byte__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); - return 1; -} - static int tolua_function_VariableArray_const_char___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28626,23 +28557,6 @@ static int tolua_function_VariableArray_CallInfo__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CWeaponIdentification__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWeaponIdentification* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CWeaponIdentification"); - return 1; -} - -static int tolua_function_VariableArray_CWeaponIdentification__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CWeaponIdentification*)tolua_tousertype_dynamic(L, 3, 0, "CWeaponIdentification")); - return 0; -} - static int tolua_function_VariableArray_CVariableHash__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28694,23 +28608,6 @@ static int tolua_function_VariableArray_CVIDPALETTE_COLOR__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSchoolAndSecondaryDecrementing* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSchoolAndSecondaryDecrementing"); - return 1; -} - -static int tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 3, 0, "CSchoolAndSecondaryDecrementing")); - return 0; -} - static int tolua_function_VariableArray_CResTile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28814,23 +28711,6 @@ static int tolua_function_VariableArray_CPathNode___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CParticle__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CParticle* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CParticle"); - return 1; -} - -static int tolua_function_VariableArray_CParticle__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CParticle*)tolua_tousertype_dynamic(L, 3, 0, "CParticle")); - return 0; -} - static int tolua_function_VariableArray_CSnowFlake__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28865,57 +28745,6 @@ static int tolua_function_VariableArray_CRainDrop__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CMusicPosition__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMusicPosition* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CMusicPosition"); - return 1; -} - -static int tolua_function_VariableArray_CMusicPosition__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMusicPosition*)tolua_tousertype_dynamic(L, 3, 0, "CMusicPosition")); - return 0; -} - -static int tolua_function_VariableArray_CImmunitiesItemTypeEquip__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CImmunitiesItemTypeEquip* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemTypeEquip"); - return 1; -} - -static int tolua_function_VariableArray_CImmunitiesItemTypeEquip__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemTypeEquip")); - return 0; -} - -static int tolua_function_VariableArray_CGameTimer__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameTimer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameTimer"); - return 1; -} - -static int tolua_function_VariableArray_CGameTimer__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameTimer*)tolua_tousertype_dynamic(L, 3, 0, "CGameTimer")); - return 0; -} - static int tolua_function_VariableArray_CGameRemoteObjectListEntry___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28976,91 +28805,6 @@ static int tolua_function_VariableArray_CGameRemoteObjectControlChange__set(lua_ return 0; } -static int tolua_function_VariableArray_CGameOptions__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameOptions* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "EEex_CGameOptions"); - return 1; -} - -static int tolua_function_VariableArray_CGameOptions__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameOptions*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CGameOptions")); - return 0; -} - -static int tolua_function_VariableArray_CGameJournalEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameJournalEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameJournalEntry"); - return 1; -} - -static int tolua_function_VariableArray_CGameJournalEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameJournalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameJournalEntry")); - return 0; -} - -static int tolua_function_VariableArray_CDeathSound__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CDeathSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CDeathSound"); - return 1; -} - -static int tolua_function_VariableArray_CDeathSound__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CDeathSound*)tolua_tousertype_dynamic(L, 3, 0, "CDeathSound")); - return 0; -} - -static int tolua_function_VariableArray_CColorEffect__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CColorEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CColorEffect"); - return 1; -} - -static int tolua_function_VariableArray_CColorEffect__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CColorEffect*)tolua_tousertype_dynamic(L, 3, 0, "CColorEffect")); - return 0; -} - -static int tolua_function_VariableArray_CBounceEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBounceEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CBounceEntry"); - return 1; -} - -static int tolua_function_VariableArray_CBounceEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBounceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CBounceEntry")); - return 0; -} - static int tolua_function_VariableArray_BAMHEADERV2__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29497,40 +29241,6 @@ static int tolua_function_VariableArray_const_CString__getReference(lua_State* L return 1; } -static int tolua_function_VariableArray_CAIId__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIId* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAIId"); - return 1; -} - -static int tolua_function_VariableArray_CAIId__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIId*)tolua_tousertype_dynamic(L, 3, 0, "CAIId")); - return 0; -} - -static int tolua_function_VariableArray_CFeedbackEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CFeedbackEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CFeedbackEntry"); - return 1; -} - -static int tolua_function_VariableArray_CFeedbackEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CFeedbackEntry*)tolua_tousertype_dynamic(L, 3, 0, "CFeedbackEntry")); - return 0; -} - static int tolua_function_VariableArray_CSpawnVar__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29582,23 +29292,6 @@ static int tolua_function_VariableArray_CSoundMixer__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CRes__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CRes* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CRes"); - return 1; -} - -static int tolua_function_VariableArray_CRes__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CRes*)tolua_tousertype_dynamic(L, 3, 0, "CRes")); - return 0; -} - static int tolua_function_VariableArray_const_CRes__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29677,57 +29370,6 @@ static int tolua_function_VariableArray_const_CPoint__getReference(lua_State* L) return 1; } -static int tolua_function_VariableArray_CAOEEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAOEEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAOEEntry"); - return 1; -} - -static int tolua_function_VariableArray_CAOEEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAOEEntry*)tolua_tousertype_dynamic(L, 3, 0, "CAOEEntry")); - return 0; -} - -static int tolua_function_VariableArray_CSpawnPoint__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawnPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSpawnPoint"); - return 1; -} - -static int tolua_function_VariableArray_CSpawnPoint__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawnPoint*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnPoint")); - return 0; -} - -static int tolua_function_VariableArray_CPersistantEffect__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPersistantEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CPersistantEffect"); - return 1; -} - -static int tolua_function_VariableArray_CPersistantEffect__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPersistantEffect*)tolua_tousertype_dynamic(L, 3, 0, "CPersistantEffect")); - return 0; -} - static int tolua_function_VariableArray_CObject__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29822,40 +29464,6 @@ static int tolua_function_VariableArray_CMapStringToString__CAssoc___set(lua_Sta return 0; } -static int tolua_function_VariableArray_CVoice__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVoice* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CVoice"); - return 1; -} - -static int tolua_function_VariableArray_CVoice__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVoice*)tolua_tousertype_dynamic(L, 3, 0, "CVoice")); - return 0; -} - -static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____getReference(lua_State* L) -{ - VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); - return 1; -} - -static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____set(lua_State* L) -{ - VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); - return 0; -} - static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReference(lua_State* L) { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); @@ -29907,23 +29515,6 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___CNode__set return 0; } -static int tolua_function_VariableArray_CTimer__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTimer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CTimer"); - return 1; -} - -static int tolua_function_VariableArray_CTimer__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTimer*)tolua_tousertype_dynamic(L, 3, 0, "CTimer")); - return 0; -} - static int tolua_function_VariableArray_CStringList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29992,23 +29583,6 @@ static int tolua_function_VariableArray_CAIResponseSet__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CAIConditionResponse__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIConditionResponse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAIConditionResponse"); - return 1; -} - -static int tolua_function_VariableArray_CAIConditionResponse__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIConditionResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIConditionResponse")); - return 0; -} - static int tolua_function_VariableArray_CGameButtonList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30026,40 +29600,6 @@ static int tolua_function_VariableArray_CGameButtonList__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CAIResponse__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIResponse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAIResponse"); - return 1; -} - -static int tolua_function_VariableArray_CAIResponse__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIResponse")); - return 0; -} - -static int tolua_function_VariableArray_CWarp__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWarp* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "EEex_CWarp"); - return 1; -} - -static int tolua_function_VariableArray_CWarp__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CWarp*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CWarp")); - return 0; -} - static int tolua_function_VariableArray_CMemINISection__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30111,23 +29651,6 @@ static int tolua_function_VariableArray_CSpawnFile__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CSoundChannel__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSoundChannel* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSoundChannel"); - return 1; -} - -static int tolua_function_VariableArray_CSoundChannel__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSoundChannel*)tolua_tousertype_dynamic(L, 3, 0, "CSoundChannel")); - return 0; -} - static int tolua_function_VariableArray_CPtrList__CNode__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30145,23 +29668,6 @@ static int tolua_function_VariableArray_CPtrList__CNode__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CGameDialogEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameDialogEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameDialogEntry"); - return 1; -} - -static int tolua_function_VariableArray_CGameDialogEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameDialogEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogEntry")); - return 0; -} - static int tolua_function_VariableArray_CGameAbilityList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30196,57 +29702,6 @@ static int tolua_function_VariableArray_CObList__CNode__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CMessage__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMessage* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CMessage"); - return 1; -} - -static int tolua_function_VariableArray_CMessage__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMessage*)tolua_tousertype_dynamic(L, 3, 0, "CMessage")); - return 0; -} - -static int tolua_function_VariableArray_CMemINIValue__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMemINIValue* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CMemINIValue"); - return 1; -} - -static int tolua_function_VariableArray_CMemINIValue__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMemINIValue*)tolua_tousertype_dynamic(L, 3, 0, "CMemINIValue")); - return 0; -} - -static int tolua_function_VariableArray_CGameAreaClairvoyanceEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameAreaClairvoyanceEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameAreaClairvoyanceEntry"); - return 1; -} - -static int tolua_function_VariableArray_CGameAreaClairvoyanceEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameAreaClairvoyanceEntry")); - return 0; -} - static int tolua_function_VariableArray_CFile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30596,23 +30051,6 @@ static int tolua_function_VariableArray_CSoundMixerImp__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CSearchRequest__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSearchRequest* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSearchRequest"); - return 1; -} - -static int tolua_function_VariableArray_CSearchRequest__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSearchRequest*)tolua_tousertype_dynamic(L, 3, 0, "CSearchRequest")); - return 0; -} - static int tolua_function_VariableArray_CScreenMovies__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30852,23 +30290,6 @@ static int tolua_function_VariableArray_CVidCellFont__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CPortraitIcon__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPortraitIcon* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CPortraitIcon"); - return 1; -} - -static int tolua_function_VariableArray_CPortraitIcon__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPortraitIcon*)tolua_tousertype_dynamic(L, 3, 0, "CPortraitIcon")); - return 0; -} - static int tolua_function_VariableArray_CScreenCreateChar__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31056,40 +30477,6 @@ static int tolua_function_VariableArray_CGameFile__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CGameDialogReply__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameDialogReply* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameDialogReply"); - return 1; -} - -static int tolua_function_VariableArray_CGameDialogReply__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameDialogReply*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogReply")); - return 0; -} - -static int tolua_function_VariableArray_CAbilityData__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAbilityData* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAbilityData"); - return 1; -} - -static int tolua_function_VariableArray_CAbilityData__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAbilityData*)tolua_tousertype_dynamic(L, 3, 0, "CAbilityData")); - return 0; -} - static int tolua_function_VariableArray_CAreaFileProjectileObject__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31107,108 +30494,6 @@ static int tolua_function_VariableArray_CAreaFileProjectileObject__set(lua_State return 0; } -static int tolua_function_VariableArray_CCriticalEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCriticalEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CCriticalEntry"); - return 1; -} - -static int tolua_function_VariableArray_CCriticalEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCriticalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CCriticalEntry")); - return 0; -} - -static int tolua_function_VariableArray_CGameSprite__GroundItem__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameSprite::GroundItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameSprite::GroundItem"); - return 1; -} - -static int tolua_function_VariableArray_CGameSprite__GroundItem__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite::GroundItem")); - return 0; -} - -static int tolua_function_VariableArray_CImmunitiesItemEquip__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CImmunitiesItemEquip* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemEquip"); - return 1; -} - -static int tolua_function_VariableArray_CImmunitiesItemEquip__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemEquip")); - return 0; -} - -static int tolua_function_VariableArray_CImmunitySpell__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CImmunitySpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CImmunitySpell"); - return 1; -} - -static int tolua_function_VariableArray_CImmunitySpell__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitySpell*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitySpell")); - return 0; -} - -static int tolua_function_VariableArray_CMoveListEntry__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMoveListEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CMoveListEntry"); - return 1; -} - -static int tolua_function_VariableArray_CMoveListEntry__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMoveListEntry*)tolua_tousertype_dynamic(L, 3, 0, "CMoveListEntry")); - return 0; -} - -static int tolua_function_VariableArray_CCreatureFileKnownSpell__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileKnownSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); - return 1; -} - -static int tolua_function_VariableArray_CCreatureFileKnownSpell__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileKnownSpell")); - return 0; -} - static int tolua_function_VariableArray_WED_LayerHeader_st__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31414,40 +30699,6 @@ static int tolua_function_VariableArray_CVVCHashEntry__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CVEFEvent__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVEFEvent* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CVEFEvent"); - return 1; -} - -static int tolua_function_VariableArray_CVEFEvent__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVEFEvent*)tolua_tousertype_dynamic(L, 3, 0, "CVEFEvent")); - return 0; -} - -static int tolua_function_VariableArray_CTiledObject__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTiledObject* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CTiledObject"); - return 1; -} - -static int tolua_function_VariableArray_CTiledObject__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTiledObject*)tolua_tousertype_dynamic(L, 3, 0, "CTiledObject")); - return 0; -} - static int tolua_function_VariableArray_CStoreFileSpell__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31465,23 +30716,6 @@ static int tolua_function_VariableArray_CStoreFileSpell__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CStoreFileItem__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStoreFileItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CStoreFileItem"); - return 1; -} - -static int tolua_function_VariableArray_CStoreFileItem__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CStoreFileItem*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileItem")); - return 0; -} - static int tolua_function_VariableArray_CStoreFileDrinks__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31516,23 +30750,6 @@ static int tolua_function_VariableArray_CSpell__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CSequenceSound__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSequenceSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSequenceSound"); - return 1; -} - -static int tolua_function_VariableArray_CSequenceSound__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSequenceSound*)tolua_tousertype_dynamic(L, 3, 0, "CSequenceSound")); - return 0; -} - static int tolua_function_VariableArray_CScreenWorldMap__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31584,23 +30801,6 @@ static int tolua_function_VariableArray_CScreenWizSpell__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CScreenStoreItem__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenStoreItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CScreenStoreItem"); - return 1; -} - -static int tolua_function_VariableArray_CScreenStoreItem__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenStoreItem*)tolua_tousertype_dynamic(L, 3, 0, "CScreenStoreItem")); - return 0; -} - static int tolua_function_VariableArray_CScreenPriestSpell__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31686,57 +30886,6 @@ static int tolua_function_VariableArray_CScreenChapter__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CSavedGameStoredLocation__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSavedGameStoredLocation* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSavedGameStoredLocation"); - return 1; -} - -static int tolua_function_VariableArray_CSavedGameStoredLocation__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGameStoredLocation")); - return 0; -} - -static int tolua_function_VariableArray_CSavedGamePartyCreature__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSavedGamePartyCreature* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSavedGamePartyCreature"); - return 1; -} - -static int tolua_function_VariableArray_CSavedGamePartyCreature__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGamePartyCreature")); - return 0; -} - -static int tolua_function_VariableArray_CSaveGameSlot__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSaveGameSlot* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSaveGameSlot"); - return 1; -} - -static int tolua_function_VariableArray_CSaveGameSlot__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSaveGameSlot*)tolua_tousertype_dynamic(L, 3, 0, "CSaveGameSlot")); - return 0; -} - static int tolua_function_VariableArray_CPlex__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31822,23 +30971,6 @@ static int tolua_function_VariableArray_CGameEffectBase__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CGameEffect__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameEffect"); - return 1; -} - -static int tolua_function_VariableArray_CGameEffect__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffect*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffect")); - return 0; -} - static int tolua_function_VariableArray_CGameEffectDamage__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31856,23 +30988,6 @@ static int tolua_function_VariableArray_CGameEffectDamage__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CGameEffectUsability__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameEffectUsability* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CGameEffectUsability"); - return 1; -} - -static int tolua_function_VariableArray_CGameEffectUsability__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffectUsability*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectUsability")); - return 0; -} - static int tolua_function_VariableArray_CGameAnimationType__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31907,23 +31022,6 @@ static int tolua_function_VariableArray_CDerivedStats__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CCreatureFileMemorizedSpell__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpell"); - return 1; -} - -static int tolua_function_VariableArray_CCreatureFileMemorizedSpell__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpell")); - return 0; -} - static int tolua_function_VariableArray_CCreatureFileItem__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32001,23 +31099,6 @@ static int tolua_function_VariableArray_GCObject___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CBlood__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBlood* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CBlood"); - return 1; -} - -static int tolua_function_VariableArray_CBlood__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBlood*)tolua_tousertype_dynamic(L, 3, 0, "CBlood")); - return 0; -} - static int tolua_function_VariableArray_CBaldurProjector__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32052,23 +31133,6 @@ static int tolua_function_VariableArray_CBaldurChitin__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CAreaUserNote__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaUserNote* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAreaUserNote"); - return 1; -} - -static int tolua_function_VariableArray_CAreaUserNote__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaUserNote*)tolua_tousertype_dynamic(L, 3, 0, "CAreaUserNote")); - return 0; -} - static int tolua_function_VariableArray_CAreaFileContainer__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32086,40 +31150,6 @@ static int tolua_function_VariableArray_CAreaFileContainer__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CAreaFileCharacterEntryPoint__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaFileCharacterEntryPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAreaFileCharacterEntryPoint"); - return 1; -} - -static int tolua_function_VariableArray_CAreaFileCharacterEntryPoint__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileCharacterEntryPoint")); - return 0; -} - -static int tolua_function_VariableArray_CAIObjectType__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIObjectType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); - return 1; -} - -static int tolua_function_VariableArray_CAIObjectType__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType")); - return 0; -} - static int tolua_function_VariableArray_const_CAIObjectType__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32129,23 +31159,6 @@ static int tolua_function_VariableArray_const_CAIObjectType__getReference(lua_St return 1; } -static int tolua_function_VariableArray_CAIAction__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIAction* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAIAction"); - return 1; -} - -static int tolua_function_VariableArray_CAIAction__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIAction*)tolua_tousertype_dynamic(L, 3, 0, "CAIAction")); - return 0; -} - static int tolua_function_VariableArray_const_CAIAction__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32155,57 +31168,6 @@ static int tolua_function_VariableArray_const_CAIAction__getReference(lua_State* return 1; } -static int tolua_function_VariableArray_CSpawn__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawn* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSpawn"); - return 1; -} - -static int tolua_function_VariableArray_CSpawn__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawn*)tolua_tousertype_dynamic(L, 3, 0, "CSpawn")); - return 0; -} - -static int tolua_function_VariableArray_CSelectiveWeaponType__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSelectiveWeaponType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSelectiveWeaponType"); - return 1; -} - -static int tolua_function_VariableArray_CSelectiveWeaponType__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveWeaponType")); - return 0; -} - -static int tolua_function_VariableArray_CSelectiveBonus__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSelectiveBonus* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CSelectiveBonus"); - return 1; -} - -static int tolua_function_VariableArray_CSelectiveBonus__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSelectiveBonus*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveBonus")); - return 0; -} - static int tolua_function_VariableArray_CScreenStore__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32249,23 +31211,6 @@ static int tolua_function_VariableArray_CGameObject___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CProjectile__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CProjectile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CProjectile"); - return 1; -} - -static int tolua_function_VariableArray_CProjectile__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectile*)tolua_tousertype_dynamic(L, 3, 0, "CProjectile")); - return 0; -} - static int tolua_function_VariableArray_CProjectileBAM__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32351,23 +31296,6 @@ static int tolua_function_VariableArray_CObjectMarker__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CAITrigger__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAITrigger* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); - return 1; -} - -static int tolua_function_VariableArray_CAITrigger__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAITrigger*)tolua_tousertype_dynamic(L, 3, 0, "CAITrigger")); - return 0; -} - static int tolua_function_VariableArray_const_CAITrigger__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32454,23 +31382,6 @@ static int tolua_function_VariableArray_CGameContainer__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CContingency__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CContingency* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CContingency"); - return 1; -} - -static int tolua_function_VariableArray_CContingency__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CContingency*)tolua_tousertype_dynamic(L, 3, 0, "CContingency")); - return 0; -} - static int tolua_function_VariableArray_wchar_t__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -55450,27 +54361,27 @@ static int tolua_function_Pointer_SDL_Keycode__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55498,819 +54409,819 @@ static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_long_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); return 1; } -static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); return 0; } -static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); return 0; } -static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); return 1; } -static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); return 0; } -static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); return 0; } -static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int8_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int8_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); return 1; } -static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); return 0; } -static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); return 0; } @@ -60239,75 +59150,51 @@ static int tolua_function_Pointer_view_t__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); - return 1; -} - -static int tolua_set_Pointer_VariableArray_ushort___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); - return 0; -} - -static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); - return 0; -} - -static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); return 1; } -static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); return 0; } -static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray_char___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } -static int tolua_get_Pointer_VariableArray_char___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); return 1; } -static int tolua_set_Pointer_VariableArray_char___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); return 0; } -static int tolua_function_Pointer_VariableArray_char___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60359,6 +59246,30 @@ static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081B return 0; } +static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + return 1; +} + +static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + return 0; +} + +static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + return 0; +} + static int tolua_get_Pointer_VariableArray_CRes_____reference(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); @@ -129906,6 +128817,14 @@ static int tolua_get_CVidBitmap_m_szResFileName(lua_State* L) return 1; } +static int tolua_function_CVidBitmap_Construct(lua_State* L) +{ + CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'Construct'", NULL); + self->Construct(); + return 0; +} + static int tolua_function_CVidBitmap_GetPixelColor(lua_State* L) { CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); @@ -129915,6 +128834,23 @@ static int tolua_function_CVidBitmap_GetPixelColor(lua_State* L) return 1; } +static int tolua_function_CVidBitmap_GetPixelValueOrZero(lua_State* L) +{ + CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GetPixelValueOrZero'", NULL); + byte returnVal = self->GetPixelValue(tolua_function_tointeger(L, 2, "GetPixelValueOrZero"), tolua_function_tointeger(L, 3, "GetPixelValueOrZero")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_CVidBitmap_SetResRef(lua_State* L) +{ + CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetResRef'", NULL); + self->SetResRef((const CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "SetResRef"), tolua_function_tointeger(L, 4, "SetResRef")); + return 0; +} + static int tolua_get_CScreenAI_m_bmpScreen(lua_State* L) { CScreenAI* self = (CScreenAI*)tolua_tousertype_dynamic(L, 1, 0, "CScreenAI"); @@ -208434,8 +207370,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); @@ -208465,6 +207400,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<_D3DFORMAT>"); @@ -208475,44 +207411,44 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int16>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<__int8>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int32>"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int16>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<__int64>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int32>"); tolua_usertype(L, "SAreaFileWrapper"); tolua_usertype(L, "SDL_Cursor"); tolua_usertype(L, "SDL_WindowUserData"); @@ -208765,11 +207701,11 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray*>"); @@ -208789,12 +207725,10 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray<__POSITION>"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208808,10 +207742,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_iobuf>"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208847,30 +207779,19 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208898,51 +207819,34 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray::CNode>"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208963,7 +207867,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208978,7 +207881,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208990,15 +207892,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -209010,68 +207904,46 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "SDL_Rect"); tolua_usertype(L, "SDL_Window"); @@ -209824,42 +208696,42 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -210013,11 +208885,11 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>*>"); @@ -211926,26 +210798,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212267,6 +211128,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); @@ -212377,6 +211249,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); @@ -212388,26 +211271,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int16>"); - tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); @@ -212421,81 +211293,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_UINT__value, tolua_set_Primitive_UINT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_UINT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint__value, tolua_set_Primitive_uint__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "char"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212509,59 +211337,58 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int16>"); + tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int32>"); - tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "ConstCharString"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212575,26 +211402,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); @@ -212608,36 +211435,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DWORD__value, tolua_set_Primitive_DWORD__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DWORD__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint__value, tolua_set_Primitive_uint__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "ConstCharString"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int8_t__value, tolua_set_Primitive_int8_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int8_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212651,48 +211490,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int8_t__value, tolua_set_Primitive_int8_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int8_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212706,37 +211523,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DWORD__value, tolua_set_Primitive_DWORD__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DWORD__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212750,48 +211578,92 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_UINT__value, tolua_set_Primitive_UINT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_UINT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "char"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int32>"); + tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "SAreaFileWrapper", "SAreaFileWrapper", {}, NULL); @@ -219564,6 +218436,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_void___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_char__get); + tolua_function(L, "set", &tolua_function_VariableArray_char__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); @@ -219571,19 +218449,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_byte__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_byte__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_char__get); - tolua_function(L, "set", &tolua_function_VariableArray_char__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_short__get); @@ -219597,6 +218462,13 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_byte__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_byte__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_CRes___get); @@ -219725,12 +218597,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_ID3DXEffect___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_SAreaFileWrapper__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_SAreaFileWrapper__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_Cursor__getReference); @@ -219754,12 +218620,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const__D3DXMACRO__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray<__POSITION>", "VariableArray<__POSITION>", {}, NULL); - tolua_beginmodule(L, "VariableArray<__POSITION>"); - tolua_function(L, "getReference", &tolua_function_VariableArray___POSITION__getReference); - tolua_function(L, "set", &tolua_function_VariableArray___POSITION__set); - tolua_constant(L, "sizeof", sizeof(VariableArray<__POSITION>)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_const_unsigned___int16__get); @@ -219841,12 +218701,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVisibilityMapEllipse__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CColorRange__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CColorRange__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray<_iobuf>", "VariableArray<_iobuf>", {}, NULL); tolua_beginmodule(L, "VariableArray<_iobuf>"); tolua_function(L, "getReference", &tolua_function_VariableArray__iobuf__getReference); @@ -219860,12 +218714,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_bool__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_const_byte__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_const_byte__getReference); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_char___getReference); @@ -220076,12 +218924,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CallInfo__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CWeaponIdentification__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CWeaponIdentification__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CVariableHash__getReference); @@ -220100,12 +218942,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVIDPALETTE_COLOR__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CResTile__getReference); @@ -220138,12 +218974,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CPathNode___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CParticle__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CParticle__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CSnowFlake__getReference); @@ -220156,24 +218986,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CRainDrop__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CMusicPosition__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CMusicPosition__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CImmunitiesItemTypeEquip__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CImmunitiesItemTypeEquip__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameTimer__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameTimer__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_CGameRemoteObjectListEntry___get); @@ -220193,36 +219005,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameRemoteObjectControlChange__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameOptions__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameOptions__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameJournalEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameJournalEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CDeathSound__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CDeathSound__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CColorEffect__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CColorEffect__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CBounceEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CBounceEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_BAMHEADERV2__getReference); @@ -220382,18 +219164,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const_CString__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAIId__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAIId__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CFeedbackEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CFeedbackEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CSpawnVar__getReference); @@ -220412,12 +219182,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSoundMixer__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CRes__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CRes__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CRes__getReference); @@ -220451,24 +219215,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const_CPoint__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAOEEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAOEEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSpawnPoint__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSpawnPoint__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CPersistantEffect__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CPersistantEffect__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CObject__getReference); @@ -220500,18 +219246,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CMapStringToString__CAssoc___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CVoice__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CVoice__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray>", "VariableArray>", {}, NULL); - tolua_beginmodule(L, "VariableArray>"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry____set); - tolua_constant(L, "sizeof", sizeof(VariableArray>)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray>", "VariableArray>", {}, NULL); tolua_beginmodule(L, "VariableArray>"); tolua_function(L, "getReference", &tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReference); @@ -220530,12 +219264,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CTypedPtrList_CPtrList_long___CNode__set); tolua_constant(L, "sizeof", sizeof(VariableArray::CNode>)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CTimer__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CTimer__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CStringList__getReference); @@ -220560,30 +219288,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CAIResponseSet__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAIConditionResponse__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAIConditionResponse__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameButtonList__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CGameButtonList__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAIResponse__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAIResponse__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CWarp__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CWarp__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CMemINISection__getReference); @@ -220602,24 +219312,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSpawnFile__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSoundChannel__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSoundChannel__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CPtrList__CNode__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CPtrList__CNode__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameDialogEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameDialogEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameAbilityList__getReference); @@ -220632,24 +219330,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CObList__CNode__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CMessage__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CMessage__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CMemINIValue__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CMemINIValue__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameAreaClairvoyanceEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameAreaClairvoyanceEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CFile__getReference); @@ -220771,12 +219451,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSoundMixerImp__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSearchRequest__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSearchRequest__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenMovies__getReference); @@ -220861,12 +219535,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVidCellFont__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CPortraitIcon__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CPortraitIcon__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenCreateChar__getReference); @@ -220933,60 +219601,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameFile__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameDialogReply__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameDialogReply__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAbilityData__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAbilityData__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaFileProjectileObject__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CAreaFileProjectileObject__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CCriticalEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CCriticalEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameSprite__GroundItem__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameSprite__GroundItem__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CImmunitiesItemEquip__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CImmunitiesItemEquip__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CImmunitySpell__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CImmunitySpell__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CMoveListEntry__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CMoveListEntry__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CCreatureFileKnownSpell__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CCreatureFileKnownSpell__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_WED_LayerHeader_st__getReference); @@ -221055,30 +219675,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVVCHashEntry__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CVEFEvent__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CVEFEvent__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CTiledObject__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CTiledObject__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CStoreFileSpell__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CStoreFileSpell__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CStoreFileItem__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CStoreFileItem__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CStoreFileDrinks__getReference); @@ -221091,12 +219693,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSpell__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSequenceSound__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSequenceSound__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenWorldMap__getReference); @@ -221115,12 +219711,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CScreenWizSpell__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenStoreItem__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CScreenStoreItem__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenPriestSpell__getReference); @@ -221151,24 +219741,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CScreenChapter__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSavedGameStoredLocation__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSavedGameStoredLocation__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSavedGamePartyCreature__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSavedGamePartyCreature__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSaveGameSlot__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSaveGameSlot__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CPlex__getReference); @@ -221199,24 +219771,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameEffectBase__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameEffect__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameEffect__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameEffectDamage__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CGameEffectDamage__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CGameEffectUsability__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CGameEffectUsability__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameAnimationType__getReference); @@ -221229,12 +219789,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CDerivedStats__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CCreatureFileMemorizedSpell__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CCreatureFileMemorizedSpell__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CCreatureFileItem__getReference); @@ -221260,12 +219814,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_GCObject___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CBlood__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CBlood__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CBaldurProjector__getReference); @@ -221278,64 +219826,22 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CBaldurChitin__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaUserNote__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAreaUserNote__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaFileContainer__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CAreaFileContainer__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaFileCharacterEntryPoint__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAreaFileCharacterEntryPoint__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAIObjectType__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAIObjectType__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CAIObjectType__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAIAction__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAIAction__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CAIAction__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSpawn__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSpawn__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSelectiveWeaponType__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSelectiveWeaponType__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CSelectiveBonus__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CSelectiveBonus__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenStore__getReference); @@ -221349,12 +219855,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameObject___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CProjectile__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CProjectile__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CProjectileBAM__getReference); @@ -221385,12 +219885,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CObjectMarker__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CAITrigger__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CAITrigger__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CAITrigger__getReference); @@ -221421,12 +219915,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameContainer__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CContingency__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CContingency__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_wchar_t__get); @@ -230355,15 +228843,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230377,81 +228865,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint___reference, tolua_set_Pointer_Primitive_uint___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230465,59 +228909,59 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ushort___reference, tolua_set_Pointer_Primitive_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230531,26 +228975,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230564,37 +229008,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_DWORD___reference, tolua_set_Pointer_Primitive_DWORD___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_DWORD___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint___reference, tolua_set_Pointer_Primitive_uint___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ushort___reference, tolua_set_Pointer_Primitive_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230608,48 +229063,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230663,37 +229096,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_DWORD___reference, tolua_set_Pointer_Primitive_DWORD___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_DWORD___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230707,48 +229151,92 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); @@ -232462,28 +230950,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_char___reference, tolua_set_Pointer_VariableArray_char___reference); @@ -232495,6 +230961,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); @@ -232517,6 +230994,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); tolua_beginmodule(L, "Pointer*>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CRes_____reference, tolua_set_Pointer_VariableArray_CRes_____reference); @@ -253017,7 +251505,10 @@ int OpenBindingsInternal(lua_State* L) tolua_variable(L, "m_nBitCount", tolua_get_CVidBitmap_m_nBitCount, tolua_set_CVidBitmap_m_nBitCount); tolua_variable(L, "reference_m_nBitCount", tolua_get_CVidBitmap_reference_m_nBitCount, NULL); tolua_variable(L, "m_szResFileName", tolua_get_CVidBitmap_m_szResFileName, NULL); + tolua_function(L, "Construct", &tolua_function_CVidBitmap_Construct); tolua_function(L, "GetPixelColor", &tolua_function_CVidBitmap_GetPixelColor); + tolua_function(L, "GetPixelValueOrZero", &tolua_function_CVidBitmap_GetPixelValueOrZero); + tolua_function(L, "SetResRef", &tolua_function_CVidBitmap_SetResRef); tolua_constant(L, "sizeof", sizeof(CVidBitmap)); tolua_constantstring(L, "usertype_m_nBitCount", "Primitive<__int16>"); tolua_constantstring(L, "usertype_m_szResFileName", "CString"); From ca13ba6f3be9e8f638c66ce1b66515760a6735b7 Mon Sep 17 00:00:00 2001 From: Bubb13 <36863623+Bubb13@users.noreply.github.com> Date: Sat, 2 May 2026 12:03:23 -0700 Subject: [PATCH 4/6] Fix CVidBitmap objects not being destructed --- .../Baldur-v2.6.6.0_generated.h | 8 + .../generate_bindings/in/manual_types.txt | 1 + ...r-v2.6.6.0_generated_internal_pointers.cpp | 2 + .../Baldur-v2.6.6.0_generated.h | 8 + .../generate_bindings/in/manual_types.txt | 1 + ...r-v2.6.6.0_generated_internal_pointers.cpp | 2 + .../Generated/EEexLua_generated.cpp | 3956 +++++++++-------- 7 files changed, 2017 insertions(+), 1961 deletions(-) diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 1a111f1..8204a35 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -10879,6 +10879,9 @@ struct CVidBitmap : CVidImage, CResHelper typedef void (__thiscall *type_Construct)(CVidBitmap* pThis); static type_Construct p_Construct; + typedef void (__thiscall *type_Destruct)(CVidBitmap* pThis); + static type_Destruct p_Destruct; + typedef int (__thiscall *type_GetPixelColor)(CVidBitmap* pThis, tagRGBQUAD* color, int x, int y); static type_GetPixelColor p_GetPixelColor; @@ -10893,6 +10896,11 @@ struct CVidBitmap : CVidImage, CResHelper p_Construct(this); } + void Destruct() + { + p_Destruct(this); + } + int GetPixelColor(tagRGBQUAD* color, int x, int y) { return p_GetPixelColor(this, color, x, y); diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index 7ea0e49..b6037c6 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1621,6 +1621,7 @@ struct CBaldurEngine : CWarp struct CVidBitmap : CVidImage, CResHelper { $constructor_fake Construct(); + void Destruct(); int GetPixelColor(tagRGBQUAD* color, int x, int y); $binding_name(GetPixelValueOrZero) $pattern_name(GetPixelValue(int,int)) byte GetPixelValue(int x, int y); void SetResRef(const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index 77b96dc..ee37a10 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -189,6 +189,7 @@ CAIScriptFile::type_ParseResponseString CAIScriptFile::p_ParseResponseString; CSound::type_Construct CSound::p_Construct; CSound::type_Destruct CSound::p_Destruct; CVidBitmap::type_Construct CVidBitmap::p_Construct; +CVidBitmap::type_Destruct CVidBitmap::p_Destruct; CVidBitmap::type_GetPixelColor CVidBitmap::p_GetPixelColor; CVidBitmap::type_GetPixelValueOrZero CVidBitmap::p_GetPixelValueOrZero; CVidBitmap::type_SetResRef CVidBitmap::p_SetResRef; @@ -519,6 +520,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("CSound::Construct"), CSound::p_Construct); attemptFillPointer(TEXT("CSound::Destruct"), CSound::p_Destruct); attemptFillPointer(TEXT("CVidBitmap::Construct"), CVidBitmap::p_Construct); + attemptFillPointer(TEXT("CVidBitmap::Destruct"), CVidBitmap::p_Destruct); attemptFillPointer(TEXT("CVidBitmap::GetPixelColor"), CVidBitmap::p_GetPixelColor); attemptFillPointer(TEXT("CVidBitmap::GetPixelValue(int,int)"), CVidBitmap::p_GetPixelValueOrZero); attemptFillPointer(TEXT("CVidBitmap::SetResRef"), CVidBitmap::p_SetResRef); diff --git a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 5cc0b40..4d0f94c 100644 --- a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -10743,6 +10743,9 @@ struct CVidBitmap : CVidImage, CResHelper typedef void (__thiscall *type_Construct)(CVidBitmap* pThis); static type_Construct p_Construct; + typedef void (__thiscall *type_Destruct)(CVidBitmap* pThis); + static type_Destruct p_Destruct; + typedef int (__thiscall *type_GetPixelColor)(CVidBitmap* pThis, tagRGBQUAD* color, int x, int y); static type_GetPixelColor p_GetPixelColor; @@ -10757,6 +10760,11 @@ struct CVidBitmap : CVidImage, CResHelper p_Construct(this); } + void Destruct() + { + p_Destruct(this); + } + int GetPixelColor(tagRGBQUAD* color, int x, int y) { return p_GetPixelColor(this, color, x, y); diff --git a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index 093525f..7314672 100644 --- a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1621,6 +1621,7 @@ struct CBaldurEngine : CWarp struct CVidBitmap : CVidImage, CResHelper { $constructor_fake Construct(); + void Destruct(); int GetPixelColor(tagRGBQUAD* color, int x, int y); $binding_name(GetPixelValueOrZero) $pattern_name(GetPixelValue(int,int)) byte GetPixelValue(int x, int y); void SetResRef(const CResRef* cNewResRef, int bSetAutoRequest, int bWarningIfMissing); diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index d030ea1..5473efe 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -177,6 +177,7 @@ CAIScriptFile::type_ParseResponseString CAIScriptFile::p_ParseResponseString; CSound::type_Construct CSound::p_Construct; CSound::type_Destruct CSound::p_Destruct; CVidBitmap::type_Construct CVidBitmap::p_Construct; +CVidBitmap::type_Destruct CVidBitmap::p_Destruct; CVidBitmap::type_GetPixelColor CVidBitmap::p_GetPixelColor; CVidBitmap::type_GetPixelValueOrZero CVidBitmap::p_GetPixelValueOrZero; CVidBitmap::type_SetResRef CVidBitmap::p_SetResRef; @@ -506,6 +507,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("CSound::Construct"), CSound::p_Construct); attemptFillPointer(TEXT("CSound::Destruct"), CSound::p_Destruct); attemptFillPointer(TEXT("CVidBitmap::Construct"), CVidBitmap::p_Construct); + attemptFillPointer(TEXT("CVidBitmap::Destruct"), CVidBitmap::p_Destruct); attemptFillPointer(TEXT("CVidBitmap::GetPixelColor"), CVidBitmap::p_GetPixelColor); attemptFillPointer(TEXT("CVidBitmap::GetPixelValue(int,int)"), CVidBitmap::p_GetPixelValueOrZero); attemptFillPointer(TEXT("CVidBitmap::SetResRef"), CVidBitmap::p_SetResRef); diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp index 55bba0d..b9b42d2 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp @@ -27,30 +27,6 @@ static int tolua_get_CVideo_reference_pCurrentMode(lua_State* L) return 1; } -static int tolua_get_Primitive_CGameObjectType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_CGameObjectType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CGameObjectType)tolua_setter_tointeger<__int8>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_CGameObjectType__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) { Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); @@ -219,6 +195,30 @@ static int tolua_get_Primitive_CAOEEntry__AOEType__reference_value(lua_State* L) return 1; } +static int tolua_get_Primitive_CGameObjectType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_CGameObjectType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (CGameObjectType)tolua_setter_tointeger<__int8>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_CGameObjectType__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + static int tolua_get_Primitive_VertListType__value(lua_State* L) { Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); @@ -243,27 +243,51 @@ static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) +static int tolua_set_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_uiItemType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_uiItemType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -363,6 +387,270 @@ static int tolua_get_Primitive_SDL_EventType__reference_value(lua_State* L) return 1; } +static int tolua_get_Primitive_DrawFilter__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_DrawFilter__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (DrawFilter)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_DrawFilter__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_DepthLockState__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_DepthLockState__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (DepthLockState)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_DepthLockState__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive__D3DFORMAT__value(lua_State* L) +{ + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive__D3DFORMAT__value(lua_State* L) +{ + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (_D3DFORMAT)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive__D3DFORMAT__reference_value(lua_State* L) +{ + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DFORMAT>"); + return 1; +} + +static int tolua_get_Primitive__D3DSWAPEFFECT__value(lua_State* L) +{ + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive__D3DSWAPEFFECT__value(lua_State* L) +{ + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (_D3DSWAPEFFECT)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive__D3DSWAPEFFECT__reference_value(lua_State* L) +{ + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DSWAPEFFECT>"); + return 1; +} + +static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +{ + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +{ + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (_D3DMULTISAMPLE_TYPE)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value(lua_State* L) +{ + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DMULTISAMPLE_TYPE>"); + return 1; +} + +static int tolua_get_Primitive_RendererType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_RendererType__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (RendererType)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_RendererType__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_DrawTone__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_DrawTone__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (DrawTone)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_DrawTone__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_DrawFeature__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_DrawFeature__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (DrawFeature)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_DrawFeature__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_DrawBlend__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_DrawBlend__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (DrawBlend)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_DrawBlend__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_SDL_Keymod__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_SDL_Keymod__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (SDL_Keymod)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_DrawMode__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_DrawMode__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); + return 0; +} + +static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + static int tolua_get_Primitive_CScreenCreateCharStep__value(lua_State* L) { Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); @@ -963,363 +1251,251 @@ static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_Sta return 1; } -static int tolua_get_Primitive_uiVariantType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_uiVariantType__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_DrawFilter__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_DrawFilter__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawFilter)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_DrawFilter__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_DepthLockState__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_DepthLockState__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DepthLockState)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive_DepthLockState__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive__D3DFORMAT__value(lua_State* L) -{ - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive__D3DFORMAT__value(lua_State* L) -{ - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DFORMAT)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive__D3DFORMAT__reference_value(lua_State* L) -{ - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DFORMAT>"); - return 1; -} - -static int tolua_get_Primitive__D3DSWAPEFFECT__value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DSWAPEFFECT__value(lua_State* L) +static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DSWAPEFFECT)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DSWAPEFFECT__reference_value(lua_State* L) -{ - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DSWAPEFFECT>"); - return 1; -} - -static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) -{ - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DMULTISAMPLE_TYPE)tolua_setter_tointeger<__int32>(L, "value"); - return 0; -} - -static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value(lua_State* L) +static int tolua_get_Primitive_char___value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); return 1; } -static int tolua_get_Primitive_RendererType__value(lua_State* L) +static int tolua_get_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_RendererType__value(lua_State* L) +static int tolua_set_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (RendererType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_RendererType__reference_value(lua_State* L) +static int tolua_get_Primitive_long__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawTone__value(lua_State* L) +static int tolua_get_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawTone__value(lua_State* L) +static int tolua_set_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawTone)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DrawTone__reference_value(lua_State* L) +static int tolua_get_Primitive_size_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawFeature__value(lua_State* L) +static int tolua_get_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawFeature__value(lua_State* L) +static int tolua_set_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawFeature)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DrawFeature__reference_value(lua_State* L) +static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawBlend__value(lua_State* L) +static int tolua_get_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawBlend__value(lua_State* L) +static int tolua_set_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawBlend)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DrawBlend__reference_value(lua_State* L) +static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Keymod__value(lua_State* L) +static int tolua_get_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Keymod__value(lua_State* L) +static int tolua_set_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Keymod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) +static int tolua_get_Primitive_short__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uiItemType__value(lua_State* L) +static int tolua_get_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_uiItemType__value(lua_State* L) +static int tolua_set_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) +static int tolua_get_Primitive_float__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawMode__value(lua_State* L) +static int tolua_get_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawMode__value(lua_State* L) +static int tolua_set_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) +static int tolua_get_Primitive_LONG__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_INT__value(lua_State* L) +static int tolua_get_Primitive_uint32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_INT__value(lua_State* L) +static int tolua_set_Primitive_uint32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_INT__reference_value(lua_State* L) +static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int8__value(lua_State* L) +static int tolua_get_Primitive_ushort__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int8__value(lua_State* L) +static int tolua_set_Primitive_ushort__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int8>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int8__reference_value(lua_State* L) +static int tolua_get_Primitive_ushort__reference_value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1347,251 +1523,195 @@ static int tolua_get_Primitive_UINT__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_char__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushlstring(L, (const char*)self->value, 1); - return 1; -} - -static int tolua_set_Primitive_char__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tochar(L, "value"); - return 0; -} - -static int tolua_get_Primitive_char__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "char"); - return 1; -} - -static int tolua_get_Primitive_long__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_long__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_long__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_uint8_t__value(lua_State* L) +static int tolua_get_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint8_t__value(lua_State* L) +static int tolua_set_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int16__value(lua_State* L) +static int tolua_get_Primitive_HRESULT__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int16__value(lua_State* L) +static int tolua_set_Primitive_HRESULT__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int16>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int16__reference_value(lua_State* L) +static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ushort__value(lua_State* L) +static int tolua_get_Primitive_intptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ushort__value(lua_State* L) +static int tolua_set_Primitive_intptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ushort__reference_value(lua_State* L) +static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_byte__value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_byte__value(lua_State* L) +static int tolua_set_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_byte__reference_value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_BOOL__value(lua_State* L) +static int tolua_get_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_BOOL__value(lua_State* L) +static int tolua_set_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_char___value(lua_State* L) +static int tolua_get_Primitive_long_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int64_t__value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int64_t__value(lua_State* L) +static int tolua_set_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint64_t__value(lua_State* L) +static int tolua_get_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint64_t__value(lua_State* L) +static int tolua_set_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int16>(L, "value"); return 0; } -static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) +static int tolua_get_Primitive___int16__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); return 1; } -static int tolua_get_Primitive_int16_t__value(lua_State* L) +static int tolua_get_Primitive_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_int16_t__value(lua_State* L) +static int tolua_set_Primitive_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1643,219 +1763,99 @@ static int tolua_get_Primitive_uint__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_int32_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_int32_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_int8_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_int8_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_bool__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushboolean(L, (bool)self->value); - return 1; -} - -static int tolua_set_Primitive_bool__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_toboolean(L, "value"); - return 0; -} - -static int tolua_get_Primitive_bool__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_size_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_size_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_size_t__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_uint16_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); - return 1; -} - -static int tolua_set_Primitive_uint16_t__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_LRESULT__value(lua_State* L) +static int tolua_get_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LRESULT__value(lua_State* L) +static int tolua_set_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive___int32__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); return 1; } -static int tolua_get_Primitive_short__value(lua_State* L) +static int tolua_get_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_short__value(lua_State* L) +static int tolua_set_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_short__reference_value(lua_State* L) +static int tolua_get_Primitive___int8__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); return 1; } -static int tolua_get_Primitive_uint32_t__value(lua_State* L) +static int tolua_get_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint32_t__value(lua_State* L) +static int tolua_set_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_INT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uintptr_t__value(lua_State* L) +static int tolua_get_Primitive_byte__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uintptr_t__value(lua_State* L) +static int tolua_set_Primitive_byte__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_byte__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1883,243 +1883,243 @@ static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_lua_Integer__value(lua_State* L) +static int tolua_get_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_lua_Integer__value(lua_State* L) +static int tolua_set_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) +static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_double__value(lua_State* L) +static int tolua_get_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + tolua_pushboolean(L, (bool)self->value); return 1; } -static int tolua_set_Primitive_double__value(lua_State* L) +static int tolua_set_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_toboolean(L, "value"); return 0; } -static int tolua_get_Primitive_double__reference_value(lua_State* L) +static int tolua_get_Primitive_bool__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_HRESULT__value(lua_State* L) +static int tolua_get_Primitive_int64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_HRESULT__value(lua_State* L) +static int tolua_set_Primitive_int64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_long_double__value(lua_State* L) +static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_long_double__value(lua_State* L) +static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_long_double__reference_value(lua_State* L) +static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_float__value(lua_State* L) +static int tolua_get_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_float__value(lua_State* L) +static int tolua_set_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_float__reference_value(lua_State* L) +static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_LONG__value(lua_State* L) +static int tolua_get_Primitive_char__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + lua_pushlstring(L, (const char*)self->value, 1); return 1; } -static int tolua_set_Primitive_LONG__value(lua_State* L) +static int tolua_set_Primitive_char__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tochar(L, "value"); return 0; } -static int tolua_get_Primitive_LONG__reference_value(lua_State* L) +static int tolua_get_Primitive_char__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "char"); return 1; } -static int tolua_get_Primitive_int__value(lua_State* L) +static int tolua_get_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int__value(lua_State* L) +static int tolua_set_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int__reference_value(lua_State* L) +static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_intptr_t__value(lua_State* L) +static int tolua_get_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_intptr_t__value(lua_State* L) +static int tolua_set_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_get_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_set_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int32__value(lua_State* L) +static int tolua_get_Primitive_uint16_t__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int32__value(lua_State* L) +static int tolua_set_Primitive_uint16_t__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int32__reference_value(lua_State* L) +static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -27043,46 +27043,46 @@ static int tolua_function_VariableArray_void___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_char__get(lua_State* L) +static int tolua_function_VariableArray_byte__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushlstring(L, (const char*)&returnVal, 1); + byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_char__set(lua_State* L) +static int tolua_function_VariableArray_byte__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); - return 0; + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; } -static int tolua_function_VariableArray_ushort__get(lua_State* L) +static int tolua_function_VariableArray_byte__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushinteger(L, (lua_Integer)returnVal); - return 1; + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + return 0; } -static int tolua_function_VariableArray_ushort__getReference(lua_State* L) +static int tolua_function_VariableArray_char__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } -static int tolua_function_VariableArray_ushort__set(lua_State* L) +static int tolua_function_VariableArray_char__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -27129,29 +27129,46 @@ static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(l return 0; } -static int tolua_function_VariableArray_byte__get(lua_State* L) +static int tolua_function_VariableArray_ushort__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_byte__getReference(lua_State* L) +static int tolua_function_VariableArray_ushort__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray_byte__set(lua_State* L) +static int tolua_function_VariableArray_ushort__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + return 0; +} + +static int tolua_function_VariableArray_CRect__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CRect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CRect"); + return 1; +} + +static int tolua_function_VariableArray_CRect__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CRect*)tolua_tousertype_dynamic(L, 3, 0, "CRect")); return 0; } @@ -27458,23 +27475,6 @@ static int tolua_function_VariableArray_CSoundChannel___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_CRect__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CRect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "CRect"); - return 1; -} - -static int tolua_function_VariableArray_CRect__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CRect*)tolua_tousertype_dynamic(L, 3, 0, "CRect")); - return 0; -} - static int tolua_function_VariableArray_ALCcontext_struct__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -27957,6 +27957,24 @@ static int tolua_function_VariableArray_bool__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_const_byte__get(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + const byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_VariableArray_const_byte__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + const byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; +} + static int tolua_function_VariableArray_const_char___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -54361,246 +54379,6 @@ static int tolua_function_Pointer_SDL_Keycode__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); - return 1; -} - -static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); - return 0; -} - -static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); - return 0; -} - -static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); - return 1; -} - -static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); - return 0; -} - -static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); - return 0; -} - -static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); @@ -54625,123 +54403,51 @@ static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -54793,267 +54499,243 @@ static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55081,123 +54763,123 @@ static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); return 1; } -static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); return 0; } -static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); return 0; } -static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); return 1; } -static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); return 0; } -static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); return 0; } -static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55225,6 +54907,342 @@ static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) return 0; } +static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); + return 1; +} + +static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); + return 0; +} + +static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); + return 0; +} + +static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + static int tolua_get_Pointer_const_void___reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -59150,6 +59168,30 @@ static int tolua_function_Pointer_view_t__setValue(lua_State* L) return 0; } +static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + return 1; +} + +static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + return 0; +} + +static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + return 0; +} + static int tolua_get_Pointer_VariableArray_char___reference(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); @@ -59174,6 +59216,54 @@ static int tolua_function_Pointer_VariableArray_char___setValue(lua_State* L) return 0; } +static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + return 1; +} + +static int tolua_set_Pointer_VariableArray_short___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + return 0; +} + +static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + return 0; +} + +static int tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 1; +} + +static int tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 0; +} + +static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); + return 0; +} + static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); @@ -59198,75 +59288,36 @@ static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); - return 1; -} - -static int tolua_set_Pointer_VariableArray_short___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); - return 0; -} - -static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); - return 0; -} - -static int tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray_CRect____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_pushusertype(L, (void*)self->reference, "Pointer>"); return 1; } -static int tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray_CRect____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 0; -} - -static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); + self->reference = (VariableArray**)tolua_tousertype_dynamic(L, 2, 0, "Pointer>"); return 0; } -static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_function_Pointer_VariableArray_CRect____getValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + VariableArray* returnVal = self->getValue(); + tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } -static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); - return 0; -} - -static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray_CRect____setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -59666,39 +59717,6 @@ static int tolua_function_Pointer_VariableArray_CSoundChannel_____setValue(lua_S return 0; } -static int tolua_get_Pointer_VariableArray_CRect____reference(lua_State* L) -{ - Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Pointer>"); - return 1; -} - -static int tolua_set_Pointer_VariableArray_CRect____reference(lua_State* L) -{ - Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray**)tolua_tousertype_dynamic(L, 2, 0, "Pointer>"); - return 0; -} - -static int tolua_function_Pointer_VariableArray_CRect____getValue(lua_State* L) -{ - Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); - tolua_pushusertype(L, (void*)returnVal, "VariableArray"); - return 1; -} - -static int tolua_function_Pointer_VariableArray_CRect____setValue(lua_State* L) -{ - Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); - return 0; -} - static int tolua_get_Pointer_uiItem__movie_t__reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -128825,6 +128843,14 @@ static int tolua_function_CVidBitmap_Construct(lua_State* L) return 0; } +static int tolua_function_CVidBitmap_Destruct(lua_State* L) +{ + CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); + self->Destruct(); + return 0; +} + static int tolua_function_CVidBitmap_GetPixelColor(lua_State* L) { CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); @@ -207361,7 +207387,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "ID3DXBuffer"); tolua_usertype(L, "ID3DXBaseEffect"); tolua_usertype(L, "ID3DXEffect"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); @@ -207369,12 +207394,25 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<_D3DFORMAT>"); + tolua_usertype(L, "Primitive<_D3DSWAPEFFECT>"); + tolua_usertype(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); @@ -207400,55 +207438,43 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<_D3DFORMAT>"); - tolua_usertype(L, "Primitive<_D3DSWAPEFFECT>"); - tolua_usertype(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int8>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int16>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int64>"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int16>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int64>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<__int32>"); + tolua_usertype(L, "Primitive<__int8>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "SAreaFileWrapper"); tolua_usertype(L, "SDL_Cursor"); tolua_usertype(L, "SDL_WindowUserData"); @@ -207701,11 +207727,12 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray*>"); @@ -207718,7 +207745,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<__int8>"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207744,6 +207770,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_iobuf>"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208696,42 +208723,42 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -208885,11 +208912,12 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>*>"); @@ -208902,7 +208930,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); - tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer<_4BC756EB7537E12A00FC57C6BF2CCA8B>"); @@ -210699,17 +210726,6 @@ int OpenBindingsInternal(lua_State* L) tolua_beginmodule(L, "ID3DXEffect"); tolua_constant(L, "sizeof", sizeof(ID3DXEffect)); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CGameObjectType__value, tolua_set_Primitive_CGameObjectType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CGameObjectType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); @@ -210787,6 +210803,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CGameObjectType__value, tolua_set_Primitive_CGameObjectType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CGameObjectType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); @@ -210798,15 +210825,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -210853,6 +210891,127 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFilter__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DepthLockState__value, tolua_set_Primitive_DepthLockState__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DepthLockState__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<_D3DFORMAT>", "Primitive<_D3DFORMAT>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DFORMAT>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DFORMAT__value, tolua_set_Primitive__D3DFORMAT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DFORMAT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DFORMAT>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DFORMAT>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DFORMAT>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<_D3DSWAPEFFECT>", "Primitive<_D3DSWAPEFFECT>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DSWAPEFFECT>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DSWAPEFFECT__value, tolua_set_Primitive__D3DSWAPEFFECT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DSWAPEFFECT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DSWAPEFFECT>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DSWAPEFFECT>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DSWAPEFFECT>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<_D3DMULTISAMPLE_TYPE>", "Primitive<_D3DMULTISAMPLE_TYPE>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value, tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_RendererType__value, tolua_set_Primitive_RendererType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_RendererType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawTone__value, tolua_set_Primitive_DrawTone__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawTone__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawFeature__value, tolua_set_Primitive_DrawFeature__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFeature__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawBlend__value, tolua_set_Primitive_DrawBlend__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawBlend__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_Keymod__value, tolua_set_Primitive_SDL_Keymod__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Keymod__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_CScreenCreateCharStep__value, tolua_set_Primitive_CScreenCreateCharStep__value); @@ -211128,169 +211287,124 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFilter__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DepthLockState__value, tolua_set_Primitive_DepthLockState__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DepthLockState__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DFORMAT>", "Primitive<_D3DFORMAT>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DFORMAT>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DFORMAT__value, tolua_set_Primitive__D3DFORMAT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DFORMAT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DFORMAT>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DFORMAT>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DFORMAT>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DSWAPEFFECT>", "Primitive<_D3DSWAPEFFECT>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DSWAPEFFECT>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DSWAPEFFECT__value, tolua_set_Primitive__D3DSWAPEFFECT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DSWAPEFFECT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DSWAPEFFECT>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DSWAPEFFECT>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DSWAPEFFECT>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DMULTISAMPLE_TYPE>", "Primitive<_D3DMULTISAMPLE_TYPE>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value, tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DMULTISAMPLE_TYPE>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "ConstCharString"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_RendererType__value, tolua_set_Primitive_RendererType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_RendererType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawTone__value, tolua_set_Primitive_DrawTone__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawTone__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_size_t__value, tolua_set_Primitive_size_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_size_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawFeature__value, tolua_set_Primitive_DrawFeature__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFeature__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawBlend__value, tolua_set_Primitive_DrawBlend__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawBlend__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int8_t__value, tolua_set_Primitive_int8_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int8_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_Keymod__value, tolua_set_Primitive_SDL_Keymod__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Keymod__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_short__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int8>"); - tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211304,124 +211418,92 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "char"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint8_t__value, tolua_set_Primitive_uint8_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint8_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int16>"); - tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "ConstCharString"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int64_t__value, tolua_set_Primitive_int64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int16>"); + tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_double__value, tolua_set_Primitive_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); @@ -211446,103 +211528,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int8_t__value, tolua_set_Primitive_int8_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int8_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_size_t__value, tolua_set_Primitive_size_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_size_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int32>"); + tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_short__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int8>"); + tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211556,114 +211583,114 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_double__value, tolua_set_Primitive_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int64_t__value, tolua_set_Primitive_int64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "char"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint8_t__value, tolua_set_Primitive_uint8_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint8_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int32>"); - tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "SAreaFileWrapper", "SAreaFileWrapper", {}, NULL); @@ -218436,19 +218463,19 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_void___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_byte__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_byte__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_char__get); tolua_function(L, "set", &tolua_function_VariableArray_char__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_ushort__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_short__get); @@ -218462,12 +218489,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_byte__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_byte__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_ushort__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CRect__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CRect__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); @@ -218552,12 +218585,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSoundChannel___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "getReference", &tolua_function_VariableArray_CRect__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_CRect__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_ALCcontext_struct__getReference); @@ -218714,6 +218741,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_bool__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_const_byte__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_const_byte__getReference); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_char___getReference); @@ -228843,81 +228876,103 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_size_t___reference, tolua_set_Pointer_Primitive_size_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_size_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_short___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -228931,70 +228986,103 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int64_t___reference, tolua_set_Pointer_Primitive_int64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_double___reference, tolua_set_Pointer_Primitive_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -229019,103 +229107,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_size_t___reference, tolua_set_Pointer_Primitive_size_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_size_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_short___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -229129,114 +229162,114 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_double___reference, tolua_set_Pointer_Primitive_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int64_t___reference, tolua_set_Pointer_Primitive_int64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); @@ -230950,6 +230983,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_char___reference, tolua_set_Pointer_VariableArray_char___reference); @@ -230961,17 +231005,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); @@ -230994,15 +231027,27 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); + tolua_beginmodule(L, "Pointer*>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CRect____reference, tolua_set_Pointer_VariableArray_CRect____reference); + tolua_function(L, "getValue", &tolua_function_Pointer_VariableArray_CRect____getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_CRect____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer*>)); + tolua_constantstring(L, "usertype_reference", "Pointer*>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer*>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); @@ -231149,18 +231194,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer*>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); - tolua_beginmodule(L, "Pointer*>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CRect____reference, tolua_set_Pointer_VariableArray_CRect____reference); - tolua_function(L, "getValue", &tolua_function_Pointer_VariableArray_CRect____getValue); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_CRect____setValue); - tolua_constant(L, "sizeof", sizeof(Pointer*>)); - tolua_constantstring(L, "usertype_reference", "Pointer*>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer*>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_uiItem__movie_t__reference, tolua_set_Pointer_uiItem__movie_t__reference); @@ -251506,6 +251539,7 @@ int OpenBindingsInternal(lua_State* L) tolua_variable(L, "reference_m_nBitCount", tolua_get_CVidBitmap_reference_m_nBitCount, NULL); tolua_variable(L, "m_szResFileName", tolua_get_CVidBitmap_m_szResFileName, NULL); tolua_function(L, "Construct", &tolua_function_CVidBitmap_Construct); + tolua_function(L, "Destruct", &tolua_function_CVidBitmap_Destruct); tolua_function(L, "GetPixelColor", &tolua_function_CVidBitmap_GetPixelColor); tolua_function(L, "GetPixelValueOrZero", &tolua_function_CVidBitmap_GetPixelValueOrZero); tolua_function(L, "SetResRef", &tolua_function_CVidBitmap_SetResRef); From 82349cb48658c6a8cec326409d6cd2cad9bb4660 Mon Sep 17 00:00:00 2001 From: Bubb13 <36863623+Bubb13@users.noreply.github.com> Date: Sat, 9 May 2026 13:03:20 -0700 Subject: [PATCH 5/6] Fix UI tooltip delay with uncapped fps --- EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h | 1 + .../Baldur-v2.6.6.0_generated.h | 25 + .../generate_bindings/in/manual_types.txt | 6 + ...r-v2.6.6.0_generated_internal_pointers.cpp | 12 + EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp | 1 + .../source/EEex-v2.6.6.0/uncap_fps.cpp | 86 + .../Baldur-v2.6.6.0_generated.h | 25 + .../generate_bindings/in/manual_types.txt | 6 + ...r-v2.6.6.0_generated_internal_pointers.cpp | 12 + .../Generated/EEexLua_generated.cpp | 6005 ++++++++++------- 10 files changed, 3922 insertions(+), 2257 deletions(-) diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h index 1706c7e..edc3203 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/EEex.h @@ -55,6 +55,7 @@ namespace EEex { int __cdecl Override_Infinity_TransitionMenu(lua_State* L); int __cdecl Override_Infinity_WriteINILine(lua_State* L); void __cdecl Override_uiDoFile(char* fileName); + void __cdecl Override_uiDrawMenuStack(); bool __cdecl Override_uiEventMenuStack(SDL_Event* pEvent, SDL_Rect* pWindow); //-------------------------// diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 8204a35..c2967d7 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -3741,6 +3741,19 @@ struct slicedRect } }; +struct _820A8B7015E7E0FD9144A7C186FBF075 +{ + SDL_Point pt; + bool on; + const char* text; + SDL_Rect r; + int count; + const char* lastText; + bool playedSound; + + _820A8B7015E7E0FD9144A7C186FBF075() = delete; +}; + struct _9B9540D9920A90D57A3D80DDD1A70514 { bool (__fastcall *f)(uiMenu*, const SDL_Rect*, SDL_Event*); @@ -9524,6 +9537,9 @@ extern type_DrawEndScaled p_DrawEndScaled; typedef void (*type_drawLetters)(int X, int Y, int W, const SDL_Rect* rClip, const letter_t* letters, int nletters, int horizontalAlignment, font_t* font, int pointSize, int cursorPosition, int cursor, int selectionStart, int selectionEnd, int nLines, bool inlineColor, int indent, float fOffsetX, float fOffsetY); extern type_drawLetters p_drawLetters; +typedef bool (__cdecl *type_drawMenu)(uiMenu* m, const SDL_Rect* window); +extern type_drawMenu p_drawMenu; + typedef void (*type_DrawOrtho11Begin)(); extern type_DrawOrtho11Begin p_DrawOrtho11Begin; @@ -9548,6 +9564,9 @@ extern type_drawSliceSide p_drawSliceSide; typedef void (*type_DrawTexCoord)(int s, int t); extern type_DrawTexCoord p_DrawTexCoord; +typedef bool (__cdecl *type_drawTop)(const SDL_Rect* window); +extern type_drawTop p_drawTop; + typedef void (__cdecl *type_DrawTransformToScreen)(SDL_Rect* w, SDL_Rect* s); extern type_DrawTransformToScreen p_DrawTransformToScreen; @@ -9599,6 +9618,9 @@ extern type_uiDrawSlicedRect p_uiDrawSlicedRect; typedef int (*type_uiExecLuaInt)(int id); extern type_uiExecLuaInt p_uiExecLuaInt; +typedef void (__cdecl *type_uiHandleTooltip)(); +extern type_uiHandleTooltip p_uiHandleTooltip; + typedef bool (*type_uiPop)(const char* name); extern type_uiPop p_uiPop; @@ -9625,6 +9647,8 @@ extern type_YScreenToZoomed p_YScreenToZoomed; extern char** p_afxPchNil; extern _9B9540D9920A90D57A3D80DDD1A70514* p_capture; +extern bool* p_fingerDown; +extern uiMenu** p_g_backgroundMenu; extern RendererType* p_g_drawBackend; extern Array* p_g_keywords; extern lua_State** p_g_lua; @@ -9637,6 +9661,7 @@ extern Array* p_menuStack; extern int* p_nextStackMenuIdx; extern int* p_numMenus; extern CTypedPtrArray* p_resources; +extern _820A8B7015E7E0FD9144A7C186FBF075* p_tooltip; extern _A92C2F5FC159A4FE55DD6CCAABD58E72* p_transition; extern ConstArray* p_yy_action; extern ConstArray* p_yy_default; diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index b6037c6..f513aba 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1678,6 +1678,7 @@ $nobinding void DrawEnable(DrawFeature f); $nobinding void DrawEnd(); $nobinding void DrawEndScaled(); $nobinding void drawLetters(int X, int Y, int W, const SDL_Rect* rClip, const letter_t* letters, int nletters, int horizontalAlignment, font_t* font, int pointSize, int cursorPosition, int cursor, int selectionStart, int selectionEnd, int nLines, bool inlineColor, int indent, float fOffsetX, float fOffsetY); +$nobinding bool __cdecl drawMenu(uiMenu* m, const SDL_Rect* window); $nobinding void DrawOrtho11Begin(); $nobinding void DrawOrtho11End(); $nobinding void DrawPopState(); @@ -1686,6 +1687,7 @@ $pattern_name(DrawQuad(CRect*,CRect*)) void DrawQuad(const CRect* rDest, const C $nobinding void drawSlice(const SDL_Rect* dr, const SDL_Rect* r, const SDL_Rect* rClip, float scaleX, float scaleY, bool unused); $nobinding void drawSliceSide(const SDL_Rect* dr, const SDL_Rect* r, const SDL_Rect* rClip, float scaleX, float scaleY, bool wide); $nobinding void DrawTexCoord(int s, int t); +$nobinding bool __cdecl drawTop(const SDL_Rect* window); $nobinding void __cdecl DrawTransformToScreen(SDL_Rect* w, SDL_Rect* s); $nobinding float __cdecl DrawTransformToScreenH(float h); $nobinding void DrawVertex(int x, int y); @@ -1703,6 +1705,7 @@ $nobinding int __cdecl SDL_ShowSimpleMessageBox(uint flags, const char* title, c $nobinding void SearchThreadMain(); $nobinding void uiDrawSlicedRect(int rectNum, const SDL_Rect* bounds, int alpha, const SDL_Rect* rClip); $nobinding int uiExecLuaInt(int id); +$nobinding void __cdecl uiHandleTooltip(); $nobinding bool uiPop(const char* name); $nobinding bool uiPush(const char* name); $nobinding void uiSetHidden(bool bHidden); @@ -1718,6 +1721,8 @@ $nobinding float YScreenToZoomed(float y); char* afxPchNil; $9B9540D9920A90D57A3D80DDD1A70514 capture; +bool fingerDown; +uiMenu* g_backgroundMenu; RendererType g_drawBackend; keyword g_keywords[124]; lua_State* g_lua; @@ -1730,6 +1735,7 @@ uiMenu* menuStack[256]; int nextStackMenuIdx; int numMenus; CTypedPtrArray resources; +$820A8B7015E7E0FD9144A7C186FBF075 tooltip; $A92C2F5FC159A4FE55DD6CCAABD58E72 transition; const ushort yy_action[1765]; const ushort yy_default[329]; diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index ee37a10..716ae5a 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -93,6 +93,7 @@ type_DrawEnable p_DrawEnable; type_DrawEnd p_DrawEnd; type_DrawEndScaled p_DrawEndScaled; type_drawLetters p_drawLetters; +type_drawMenu p_drawMenu; type_DrawOrtho11Begin p_DrawOrtho11Begin; type_DrawOrtho11End p_DrawOrtho11End; type_DrawPopState p_DrawPopState; @@ -101,6 +102,7 @@ type_DrawQuad p_DrawQuad; type_drawSlice p_drawSlice; type_drawSliceSide p_drawSliceSide; type_DrawTexCoord p_DrawTexCoord; +type_drawTop p_drawTop; type_DrawTransformToScreen p_DrawTransformToScreen; type_DrawTransformToScreenH p_DrawTransformToScreenH; type_DrawVertex p_DrawVertex; @@ -118,6 +120,7 @@ type_SDL_ShowSimpleMessageBox p_SDL_ShowSimpleMessageBox; type_SearchThreadMain p_SearchThreadMain; type_uiDrawSlicedRect p_uiDrawSlicedRect; type_uiExecLuaInt p_uiExecLuaInt; +type_uiHandleTooltip p_uiHandleTooltip; type_uiPop p_uiPop; type_uiPush p_uiPush; type_uiSetHidden p_uiSetHidden; @@ -128,6 +131,8 @@ type_XScreenToZoomed p_XScreenToZoomed; type_YScreenToZoomed p_YScreenToZoomed; char** p_afxPchNil; _9B9540D9920A90D57A3D80DDD1A70514* p_capture; +bool* p_fingerDown; +uiMenu** p_g_backgroundMenu; RendererType* p_g_drawBackend; Array* p_g_keywords; lua_State** p_g_lua; @@ -140,6 +145,7 @@ Array* p_menuStack; int* p_nextStackMenuIdx; int* p_numMenus; CTypedPtrArray* p_resources; +_820A8B7015E7E0FD9144A7C186FBF075* p_tooltip; _A92C2F5FC159A4FE55DD6CCAABD58E72* p_transition; ConstArray* p_yy_action; ConstArray* p_yy_default; @@ -424,6 +430,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("DrawEnd"), p_DrawEnd); attemptFillPointer(TEXT("DrawEndScaled"), p_DrawEndScaled); attemptFillPointer(TEXT("drawLetters"), p_drawLetters); + attemptFillPointer(TEXT("drawMenu"), p_drawMenu); attemptFillPointer(TEXT("DrawOrtho11Begin"), p_DrawOrtho11Begin); attemptFillPointer(TEXT("DrawOrtho11End"), p_DrawOrtho11End); attemptFillPointer(TEXT("DrawPopState"), p_DrawPopState); @@ -432,6 +439,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("drawSlice"), p_drawSlice); attemptFillPointer(TEXT("drawSliceSide"), p_drawSliceSide); attemptFillPointer(TEXT("DrawTexCoord"), p_DrawTexCoord); + attemptFillPointer(TEXT("drawTop"), p_drawTop); attemptFillPointer(TEXT("DrawTransformToScreen"), p_DrawTransformToScreen); attemptFillPointer(TEXT("DrawTransformToScreenH"), p_DrawTransformToScreenH); attemptFillPointer(TEXT("DrawVertex"), p_DrawVertex); @@ -449,6 +457,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("SearchThreadMain"), p_SearchThreadMain); attemptFillPointer(TEXT("uiDrawSlicedRect"), p_uiDrawSlicedRect); attemptFillPointer(TEXT("uiExecLuaInt"), p_uiExecLuaInt); + attemptFillPointer(TEXT("uiHandleTooltip"), p_uiHandleTooltip); attemptFillPointer(TEXT("uiPop"), p_uiPop); attemptFillPointer(TEXT("uiPush"), p_uiPush); attemptFillPointer(TEXT("uiSetHidden"), p_uiSetHidden); @@ -459,6 +468,8 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("YScreenToZoomed"), p_YScreenToZoomed); attemptFillPointer(TEXT("afxPchNil"), p_afxPchNil); attemptFillPointer(TEXT("capture"), p_capture); + attemptFillPointer(TEXT("fingerDown"), p_fingerDown); + attemptFillPointer(TEXT("g_backgroundMenu"), p_g_backgroundMenu); attemptFillPointer(TEXT("g_drawBackend"), p_g_drawBackend); attemptFillPointer(TEXT("g_keywords"), p_g_keywords); attemptFillPointer(TEXT("g_lua"), p_g_lua); @@ -471,6 +482,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("nextStackMenuIdx"), p_nextStackMenuIdx); attemptFillPointer(TEXT("numMenus"), p_numMenus); attemptFillPointer(TEXT("resources"), p_resources); + attemptFillPointer(TEXT("tooltip"), p_tooltip); attemptFillPointer(TEXT("transition"), p_transition); attemptFillPointer(TEXT("yy_action"), p_yy_action); attemptFillPointer(TEXT("yy_default"), p_yy_default); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp index a716d99..11789cd 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp @@ -73,6 +73,7 @@ static void exportPatterns() { exportPattern(TEXT("EEex::Override_Infinity_TransitionMenu"), EEex::Override_Infinity_TransitionMenu); exportPattern(TEXT("EEex::Override_Infinity_WriteINILine"), EEex::Override_Infinity_WriteINILine); exportPattern(TEXT("EEex::Override_uiDoFile"), EEex::Override_uiDoFile); + exportPattern(TEXT("EEex::Override_uiDrawMenuStack"), EEex::Override_uiDrawMenuStack); exportPattern(TEXT("EEex::Override_uiEventMenuStack"), EEex::Override_uiEventMenuStack); ///////////////////////////// diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp index 9f52e65..4c0ac05 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp @@ -140,6 +140,7 @@ long long nRemainingAutoZoomTime = 0; long long nRemainingScrollTime = 0; int nScreenShakeSavedX = 0; int nScreenShakeSavedY = 0; +long long nTooltipEnableTime = 0; long long nTransitionStartTime = 0; long long nTransitionEndTime = 0; CPoint ptMapPosExact; @@ -2320,6 +2321,91 @@ int __cdecl EEex::Override_Infinity_TransitionMenu(lua_State* L) return 0; } +void __cdecl EEex::Override_uiDrawMenuStack() +{ + CBaldurChitin *const pChitin = *p_g_pBaldurChitin; + CScreenWorld *const pWorld = pChitin->m_pEngineWorld; + + if + ( + (pChitin->pActiveEngine == pWorld && p_uiIsHidden()) + || + pWorld->m_bWaitToRender + ) + { + return; + } + + const uint nTooltipDelay = pChitin->m_pObjectGame->m_options.m_toolTips; + + // | + // Patch: Enable UI tooltips based on microsecond measurements (versus the tick-based vanilla implementation) + // | + // | if + // | ( + // | (!pChitin->m_bIsTouchUI || *p_fingerDown) + // | && + // | nTooltipDelay != 99 && static_cast(p_tooltip->count) > nTooltipDelay + // | ) + // | { + // | p_tooltip->on = true; + // | } + // | + // | ++p_tooltip->count; + // | + const long long nCurTime = getTime(); + // | + if (p_tooltip->count == nTooltipDelay || (GetAsyncKeyState(VK_TAB) & 0x8000) != 0) + { + // Pressing tab (to force the tooltip) sets `p_tooltip->count = nTooltipDelay`, which has been detected. + // This patch also directly checks the TAB key state, which is a bit hacky, but the vanilla implementation + // has an annoying flicker to the tooltip if the tab key is held down while the mouse is moved. The engine + // usually waits a tick to display the tooltip, but this patch immediately enables the tooltip to prevent + // flicker. + p_tooltip->count = -1; + nTooltipEnableTime = nCurTime; + } + else if (p_tooltip->count == 0) + { + // Engine has started the tooltip timer. The default implementation never immediately enables the tooltip, + // but this patch can do so for `nTooltipDelay == 0` to prevent flicker when the mouse is moved. + p_tooltip->count = -1; + nTooltipEnableTime = nCurTime + nTooltipDelay * 33333LL; + } + // | + if + ( + (!pChitin->m_bIsTouchUI || *p_fingerDown) + && + nTooltipDelay != 99 && nCurTime >= nTooltipEnableTime + ) + { + p_tooltip->on = true; + } + + const SDL_Rect rWindow { 0, 0, *CVidMode::p_SCREENWIDTH, *CVidMode::p_SCREENHEIGHT }; + + if (uiMenu *const g_backgroundMenu = *p_g_backgroundMenu; g_backgroundMenu != nullptr) + { + p_drawMenu(g_backgroundMenu, &rWindow); + } + + for (int nMenuIndex = 0; ; ++nMenuIndex) + { + uiMenu *const pMenu = getStackMenu(nMenuIndex); + if (pMenu == nullptr) break; + p_drawMenu(pMenu, &rWindow); + } + + if (uiMenu *const g_overlayMenu = *p_g_overlayMenu; g_overlayMenu != nullptr) + { + p_drawMenu(g_overlayMenu, &rWindow); + } + + p_drawTop(&rWindow); + p_uiHandleTooltip(); +} + //-----------------------------------// // Local Map Fixes // //-----------------------------------// diff --git a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index 4d0f94c..f58767e 100644 --- a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -3686,6 +3686,19 @@ struct slicedRect } }; +struct _820A8B7015E7E0FD9144A7C186FBF075 +{ + SDL_Point pt; + bool on; + const char* text; + SDL_Rect r; + int count; + const char* lastText; + bool playedSound; + + _820A8B7015E7E0FD9144A7C186FBF075() = delete; +}; + struct _9B9540D9920A90D57A3D80DDD1A70514 { bool (__fastcall *f)(uiMenu*, const SDL_Rect*, SDL_Event*); @@ -9397,6 +9410,9 @@ extern type_DrawEndScaled p_DrawEndScaled; typedef void (*type_drawLetters)(int X, int Y, int W, const SDL_Rect* rClip, const letter_t* letters, int nletters, int horizontalAlignment, font_t* font, int pointSize, int cursorPosition, int cursor, int selectionStart, int selectionEnd, int nLines, bool inlineColor, int indent, float fOffsetX, float fOffsetY); extern type_drawLetters p_drawLetters; +typedef bool (__cdecl *type_drawMenu)(uiMenu* m, const SDL_Rect* window); +extern type_drawMenu p_drawMenu; + typedef void (*type_DrawOrtho11Begin)(); extern type_DrawOrtho11Begin p_DrawOrtho11Begin; @@ -9421,6 +9437,9 @@ extern type_drawSliceSide p_drawSliceSide; typedef void (*type_DrawTexCoord)(int s, int t); extern type_DrawTexCoord p_DrawTexCoord; +typedef bool (__cdecl *type_drawTop)(const SDL_Rect* window); +extern type_drawTop p_drawTop; + typedef void (__cdecl *type_DrawTransformToScreen)(SDL_Rect* w, SDL_Rect* s); extern type_DrawTransformToScreen p_DrawTransformToScreen; @@ -9472,6 +9491,9 @@ extern type_uiDrawSlicedRect p_uiDrawSlicedRect; typedef int (*type_uiExecLuaInt)(int id); extern type_uiExecLuaInt p_uiExecLuaInt; +typedef void (__cdecl *type_uiHandleTooltip)(); +extern type_uiHandleTooltip p_uiHandleTooltip; + typedef bool (*type_uiPop)(const char* name); extern type_uiPop p_uiPop; @@ -9498,6 +9520,8 @@ extern type_YScreenToZoomed p_YScreenToZoomed; extern char** p_afxPchNil; extern _9B9540D9920A90D57A3D80DDD1A70514* p_capture; +extern bool* p_fingerDown; +extern uiMenu** p_g_backgroundMenu; extern RendererType* p_g_drawBackend; extern Array* p_g_keywords; extern lua_State** p_g_lua; @@ -9510,6 +9534,7 @@ extern Array* p_menuStack; extern int* p_nextStackMenuIdx; extern int* p_numMenus; extern CTypedPtrArray* p_resources; +extern _820A8B7015E7E0FD9144A7C186FBF075* p_tooltip; extern _A92C2F5FC159A4FE55DD6CCAABD58E72* p_transition; extern ConstArray* p_yy_action; extern ConstArray* p_yy_default; diff --git a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index 7314672..6e2cfe4 100644 --- a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1678,6 +1678,7 @@ $nobinding void DrawEnable(DrawFeature f); $nobinding void DrawEnd(); $nobinding void DrawEndScaled(); $nobinding void drawLetters(int X, int Y, int W, const SDL_Rect* rClip, const letter_t* letters, int nletters, int horizontalAlignment, font_t* font, int pointSize, int cursorPosition, int cursor, int selectionStart, int selectionEnd, int nLines, bool inlineColor, int indent, float fOffsetX, float fOffsetY); +$nobinding bool __cdecl drawMenu(uiMenu* m, const SDL_Rect* window); $nobinding void DrawOrtho11Begin(); $nobinding void DrawOrtho11End(); $nobinding void DrawPopState(); @@ -1686,6 +1687,7 @@ $pattern_name(DrawQuad(CRect*,CRect*)) void DrawQuad(const CRect* rDest, const C $nobinding void drawSlice(const SDL_Rect* dr, const SDL_Rect* r, const SDL_Rect* rClip, float scaleX, float scaleY, bool unused); $nobinding void drawSliceSide(const SDL_Rect* dr, const SDL_Rect* r, const SDL_Rect* rClip, float scaleX, float scaleY, bool wide); $nobinding void DrawTexCoord(int s, int t); +$nobinding bool __cdecl drawTop(const SDL_Rect* window); $nobinding void __cdecl DrawTransformToScreen(SDL_Rect* w, SDL_Rect* s); $nobinding float __cdecl DrawTransformToScreenH(float h); $nobinding void DrawVertex(int x, int y); @@ -1703,6 +1705,7 @@ $nobinding int __cdecl SDL_ShowSimpleMessageBox(uint flags, const char* title, c $nobinding void SearchThreadMain(); $nobinding void uiDrawSlicedRect(int rectNum, const SDL_Rect* bounds, int alpha, const SDL_Rect* rClip); $nobinding int uiExecLuaInt(int id); +$nobinding void __cdecl uiHandleTooltip(); $nobinding bool uiPop(const char* name); $nobinding bool uiPush(const char* name); $nobinding void uiSetHidden(bool bHidden); @@ -1718,6 +1721,8 @@ $nobinding float YScreenToZoomed(float y); char* afxPchNil; $9B9540D9920A90D57A3D80DDD1A70514 capture; +bool fingerDown; +uiMenu* g_backgroundMenu; RendererType g_drawBackend; keyword g_keywords[124]; lua_State* g_lua; @@ -1730,6 +1735,7 @@ uiMenu* menuStack[256]; int nextStackMenuIdx; int numMenus; CTypedPtrArray resources; +$820A8B7015E7E0FD9144A7C186FBF075 tooltip; $A92C2F5FC159A4FE55DD6CCAABD58E72 transition; const ushort yy_action[1765]; const ushort yy_default[329]; diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index 5473efe..27c7c65 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -81,6 +81,7 @@ type_DrawEnable p_DrawEnable; type_DrawEnd p_DrawEnd; type_DrawEndScaled p_DrawEndScaled; type_drawLetters p_drawLetters; +type_drawMenu p_drawMenu; type_DrawOrtho11Begin p_DrawOrtho11Begin; type_DrawOrtho11End p_DrawOrtho11End; type_DrawPopState p_DrawPopState; @@ -89,6 +90,7 @@ type_DrawQuad p_DrawQuad; type_drawSlice p_drawSlice; type_drawSliceSide p_drawSliceSide; type_DrawTexCoord p_DrawTexCoord; +type_drawTop p_drawTop; type_DrawTransformToScreen p_DrawTransformToScreen; type_DrawTransformToScreenH p_DrawTransformToScreenH; type_DrawVertex p_DrawVertex; @@ -106,6 +108,7 @@ type_SDL_ShowSimpleMessageBox p_SDL_ShowSimpleMessageBox; type_SearchThreadMain p_SearchThreadMain; type_uiDrawSlicedRect p_uiDrawSlicedRect; type_uiExecLuaInt p_uiExecLuaInt; +type_uiHandleTooltip p_uiHandleTooltip; type_uiPop p_uiPop; type_uiPush p_uiPush; type_uiSetHidden p_uiSetHidden; @@ -116,6 +119,8 @@ type_XScreenToZoomed p_XScreenToZoomed; type_YScreenToZoomed p_YScreenToZoomed; char** p_afxPchNil; _9B9540D9920A90D57A3D80DDD1A70514* p_capture; +bool* p_fingerDown; +uiMenu** p_g_backgroundMenu; RendererType* p_g_drawBackend; Array* p_g_keywords; lua_State** p_g_lua; @@ -128,6 +133,7 @@ Array* p_menuStack; int* p_nextStackMenuIdx; int* p_numMenus; CTypedPtrArray* p_resources; +_820A8B7015E7E0FD9144A7C186FBF075* p_tooltip; _A92C2F5FC159A4FE55DD6CCAABD58E72* p_transition; ConstArray* p_yy_action; ConstArray* p_yy_default; @@ -411,6 +417,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("DrawEnd"), p_DrawEnd); attemptFillPointer(TEXT("DrawEndScaled"), p_DrawEndScaled); attemptFillPointer(TEXT("drawLetters"), p_drawLetters); + attemptFillPointer(TEXT("drawMenu"), p_drawMenu); attemptFillPointer(TEXT("DrawOrtho11Begin"), p_DrawOrtho11Begin); attemptFillPointer(TEXT("DrawOrtho11End"), p_DrawOrtho11End); attemptFillPointer(TEXT("DrawPopState"), p_DrawPopState); @@ -419,6 +426,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("drawSlice"), p_drawSlice); attemptFillPointer(TEXT("drawSliceSide"), p_drawSliceSide); attemptFillPointer(TEXT("DrawTexCoord"), p_DrawTexCoord); + attemptFillPointer(TEXT("drawTop"), p_drawTop); attemptFillPointer(TEXT("DrawTransformToScreen"), p_DrawTransformToScreen); attemptFillPointer(TEXT("DrawTransformToScreenH"), p_DrawTransformToScreenH); attemptFillPointer(TEXT("DrawVertex"), p_DrawVertex); @@ -436,6 +444,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("SearchThreadMain"), p_SearchThreadMain); attemptFillPointer(TEXT("uiDrawSlicedRect"), p_uiDrawSlicedRect); attemptFillPointer(TEXT("uiExecLuaInt"), p_uiExecLuaInt); + attemptFillPointer(TEXT("uiHandleTooltip"), p_uiHandleTooltip); attemptFillPointer(TEXT("uiPop"), p_uiPop); attemptFillPointer(TEXT("uiPush"), p_uiPush); attemptFillPointer(TEXT("uiSetHidden"), p_uiSetHidden); @@ -446,6 +455,8 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("YScreenToZoomed"), p_YScreenToZoomed); attemptFillPointer(TEXT("afxPchNil"), p_afxPchNil); attemptFillPointer(TEXT("capture"), p_capture); + attemptFillPointer(TEXT("fingerDown"), p_fingerDown); + attemptFillPointer(TEXT("g_backgroundMenu"), p_g_backgroundMenu); attemptFillPointer(TEXT("g_drawBackend"), p_g_drawBackend); attemptFillPointer(TEXT("g_keywords"), p_g_keywords); attemptFillPointer(TEXT("g_lua"), p_g_lua); @@ -458,6 +469,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("nextStackMenuIdx"), p_nextStackMenuIdx); attemptFillPointer(TEXT("numMenus"), p_numMenus); attemptFillPointer(TEXT("resources"), p_resources); + attemptFillPointer(TEXT("tooltip"), p_tooltip); attemptFillPointer(TEXT("transition"), p_transition); attemptFillPointer(TEXT("yy_action"), p_yy_action); attemptFillPointer(TEXT("yy_default"), p_yy_default); diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp index b9b42d2..dbd7104 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp @@ -27,1227 +27,1227 @@ static int tolua_get_CVideo_reference_pCurrentMode(lua_State* L) return 1; } -static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) +static int tolua_get_Primitive_CGameObjectType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_WindowShapeMode__value(lua_State* L) +static int tolua_set_Primitive_CGameObjectType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (WindowShapeMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CGameObjectType)tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_WindowShapeMode__reference_value(lua_State* L) +static int tolua_get_Primitive_CGameObjectType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_HitTestResult__value(lua_State* L) +static int tolua_get_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_HitTestResult__value(lua_State* L) +static int tolua_set_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_HitTestResult)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_SYSWM_TYPE)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_HitTestResult__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_SYSWM_TYPE__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_bool__value(lua_State* L) +static int tolua_get_Primitive_SDL_Keycode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_bool__value(lua_State* L) +static int tolua_set_Primitive_SDL_Keycode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_bool)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_Keycode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_bool__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_Keycode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CButtonType__value(lua_State* L) +static int tolua_get_Primitive_SDL_Scancode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CButtonType__value(lua_State* L) +static int tolua_set_Primitive_SDL_Scancode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CButtonType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_Scancode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CButtonType__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_Scancode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CGameJournalEntryFlag__value(lua_State* L) +static int tolua_get_Primitive_SDL_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CGameJournalEntryFlag__value(lua_State* L) +static int tolua_set_Primitive_SDL_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CGameJournalEntryFlag)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_EventType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CGameJournalEntryFlag__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_EventType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CSpawn__ePMode__value(lua_State* L) +static int tolua_get_Primitive_importStateType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CSpawn__ePMode__value(lua_State* L) +static int tolua_set_Primitive_importStateType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CSpawn::ePMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (importStateType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CSpawn__ePMode__reference_value(lua_State* L) +static int tolua_get_Primitive_importStateType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CAOEEntry__AOEType__value(lua_State* L) +static int tolua_get_Primitive_CScreenCreateCharStep__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CAOEEntry__AOEType__value(lua_State* L) +static int tolua_set_Primitive_CScreenCreateCharStep__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CAOEEntry::AOEType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CScreenCreateCharStep)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CAOEEntry__AOEType__reference_value(lua_State* L) +static int tolua_get_Primitive_CScreenCreateCharStep__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CGameObjectType__value(lua_State* L) +static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CGameObjectType__value(lua_State* L) +static int tolua_set_Primitive_WindowShapeMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CGameObjectType)tolua_setter_tointeger<__int8>(L, "value"); + self->value = (WindowShapeMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CGameObjectType__reference_value(lua_State* L) +static int tolua_get_Primitive_WindowShapeMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_VertListType__value(lua_State* L) +static int tolua_get_Primitive_SDL_HitTestResult__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_VertListType__value(lua_State* L) +static int tolua_set_Primitive_SDL_HitTestResult__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (VertListType)tolua_setter_tointeger<__int8>(L, "value"); + self->value = (SDL_HitTestResult)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_HitTestResult__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uiVariantType__value(lua_State* L) +static int tolua_get_Primitive_SDL_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uiVariantType__value(lua_State* L) +static int tolua_set_Primitive_SDL_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_bool)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_bool__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uiItemType__value(lua_State* L) +static int tolua_get_Primitive_CSpawn__ePMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uiItemType__value(lua_State* L) +static int tolua_set_Primitive_CSpawn__ePMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CSpawn::ePMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) +static int tolua_get_Primitive_CSpawn__ePMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) +static int tolua_get_Primitive_CAOEEntry__AOEType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) +static int tolua_set_Primitive_CAOEEntry__AOEType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_SYSWM_TYPE)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CAOEEntry::AOEType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_SYSWM_TYPE__reference_value(lua_State* L) +static int tolua_get_Primitive_CAOEEntry__AOEType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Scancode__value(lua_State* L) +static int tolua_get_Primitive_CButtonType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Scancode__value(lua_State* L) +static int tolua_set_Primitive_CButtonType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Scancode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CButtonType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Scancode__reference_value(lua_State* L) +static int tolua_get_Primitive_CButtonType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Keycode__value(lua_State* L) +static int tolua_get_Primitive_CGameJournalEntryFlag__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Keycode__value(lua_State* L) +static int tolua_set_Primitive_CGameJournalEntryFlag__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Keycode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CGameJournalEntryFlag)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Keycode__reference_value(lua_State* L) +static int tolua_get_Primitive_CGameJournalEntryFlag__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_EventType__value(lua_State* L) +static int tolua_get_Primitive_CChitin__EngineMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_EventType__value(lua_State* L) +static int tolua_set_Primitive_CChitin__EngineMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_EventType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CChitin::EngineMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_EventType__reference_value(lua_State* L) +static int tolua_get_Primitive_CChitin__EngineMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawFilter__value(lua_State* L) +static int tolua_get_Primitive_EUGCReadAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawFilter__value(lua_State* L) +static int tolua_set_Primitive_EUGCReadAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawFilter)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUGCReadAction)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawFilter__reference_value(lua_State* L) +static int tolua_get_Primitive_EUGCReadAction__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DepthLockState__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopEnumerationType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DepthLockState__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopEnumerationType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DepthLockState)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopEnumerationType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DepthLockState__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive__D3DFORMAT__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileType__value(lua_State* L) { - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DFORMAT__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopFileType__value(lua_State* L) { - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DFORMAT)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopFileType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DFORMAT__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileType__reference_value(lua_State* L) { - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DFORMAT>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive__D3DSWAPEFFECT__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopVideoProvider__value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DSWAPEFFECT__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopVideoProvider__value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DSWAPEFFECT)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopVideoProvider)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DSWAPEFFECT__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopVideoProvider__reference_value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DSWAPEFFECT>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +static int tolua_set_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DMULTISAMPLE_TYPE)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ERemoteStoragePublishedFileVisibility)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__reference_value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_RendererType__value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePlatform__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_RendererType__value(lua_State* L) +static int tolua_set_Primitive_ERemoteStoragePlatform__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (RendererType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ERemoteStoragePlatform)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_RendererType__reference_value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePlatform__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawTone__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawTone__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopFileAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawTone)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopFileAction)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawTone__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileAction__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawFeature__value(lua_State* L) +static int tolua_get_Primitive_EResult__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawFeature__value(lua_State* L) +static int tolua_set_Primitive_EResult__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawFeature)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EResult)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawFeature__reference_value(lua_State* L) +static int tolua_get_Primitive_EResult__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawBlend__value(lua_State* L) +static int tolua_get_Primitive_EUserUGCListSortOrder__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawBlend__value(lua_State* L) +static int tolua_set_Primitive_EUserUGCListSortOrder__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawBlend)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUserUGCListSortOrder)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawBlend__reference_value(lua_State* L) +static int tolua_get_Primitive_EUserUGCListSortOrder__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Keymod__value(lua_State* L) +static int tolua_get_Primitive_EItemPreviewType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Keymod__value(lua_State* L) +static int tolua_set_Primitive_EItemPreviewType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Keymod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EItemPreviewType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) +static int tolua_get_Primitive_EItemPreviewType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawMode__value(lua_State* L) +static int tolua_get_Primitive_EUserUGCList__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawMode__value(lua_State* L) +static int tolua_set_Primitive_EUserUGCList__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUserUGCList)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) +static int tolua_get_Primitive_EUserUGCList__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CScreenCreateCharStep__value(lua_State* L) +static int tolua_get_Primitive_EUGCQuery__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CScreenCreateCharStep__value(lua_State* L) +static int tolua_set_Primitive_EUGCQuery__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CScreenCreateCharStep)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUGCQuery)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CScreenCreateCharStep__reference_value(lua_State* L) +static int tolua_get_Primitive_EUGCQuery__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_importStateType__value(lua_State* L) +static int tolua_get_Primitive_EItemUpdateStatus__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_importStateType__value(lua_State* L) +static int tolua_set_Primitive_EItemUpdateStatus__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (importStateType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EItemUpdateStatus)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_importStateType__reference_value(lua_State* L) +static int tolua_get_Primitive_EItemUpdateStatus__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CChitin__EngineMode__value(lua_State* L) +static int tolua_get_Primitive_EUGCMatchingUGCType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CChitin__EngineMode__value(lua_State* L) +static int tolua_set_Primitive_EUGCMatchingUGCType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CChitin::EngineMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUGCMatchingUGCType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CChitin__EngineMode__reference_value(lua_State* L) +static int tolua_get_Primitive_EUGCMatchingUGCType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) +static int tolua_get_Primitive_EItemStatistic__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) +static int tolua_set_Primitive_EItemStatistic__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DPWrapper::PEER_STATE_t)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EItemStatistic)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value(lua_State* L) +static int tolua_get_Primitive_EItemStatistic__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DP_EventType__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDisplayType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DP_EventType__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardDisplayType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DP_EventType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardDisplayType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DP_EventType__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDisplayType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DP_ProviderID__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDataRequest__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DP_ProviderID__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardDataRequest__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DP_ProviderID)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardDataRequest)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DP_ProviderID__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDataRequest__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EResult__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardSortMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EResult__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardSortMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EResult)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardSortMethod)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EResult__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardSortMethod__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EWorkshopFileType__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopFileType__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopFileType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardUploadScoreMethod)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopFileType__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUserUGCList__value(lua_State* L) +static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUserUGCList__value(lua_State* L) +static int tolua_set_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUserUGCList)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DPWrapper::PEER_STATE_t)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUserUGCList__reference_value(lua_State* L) +static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUGCQuery__value(lua_State* L) +static int tolua_get_Primitive_DP_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUGCQuery__value(lua_State* L) +static int tolua_set_Primitive_DP_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUGCQuery)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DP_EventType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUGCQuery__reference_value(lua_State* L) +static int tolua_get_Primitive_DP_EventType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EItemUpdateStatus__value(lua_State* L) +static int tolua_get_Primitive_DP_ProviderID__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EItemUpdateStatus__value(lua_State* L) +static int tolua_set_Primitive_DP_ProviderID__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EItemUpdateStatus)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DP_ProviderID)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EItemUpdateStatus__reference_value(lua_State* L) +static int tolua_get_Primitive_DP_ProviderID__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) +static int tolua_get_Primitive_VertListType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) +static int tolua_set_Primitive_VertListType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ERemoteStoragePublishedFileVisibility)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (VertListType)tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__reference_value(lua_State* L) +static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUGCMatchingUGCType__value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUGCMatchingUGCType__value(lua_State* L) +static int tolua_set_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUGCMatchingUGCType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUGCMatchingUGCType__reference_value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EItemStatistic__value(lua_State* L) +static int tolua_get_Primitive_DepthLockState__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EItemStatistic__value(lua_State* L) +static int tolua_set_Primitive_DepthLockState__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EItemStatistic)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DepthLockState)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EItemStatistic__reference_value(lua_State* L) +static int tolua_get_Primitive_DepthLockState__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUserUGCListSortOrder__value(lua_State* L) +static int tolua_get_Primitive__D3DFORMAT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUserUGCListSortOrder__value(lua_State* L) +static int tolua_set_Primitive__D3DFORMAT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUserUGCListSortOrder)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (_D3DFORMAT)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUserUGCListSortOrder__reference_value(lua_State* L) +static int tolua_get_Primitive__D3DFORMAT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DFORMAT>"); return 1; } -static int tolua_get_Primitive_EItemPreviewType__value(lua_State* L) +static int tolua_get_Primitive_DrawFilter__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EItemPreviewType__value(lua_State* L) +static int tolua_set_Primitive_DrawFilter__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EItemPreviewType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawFilter)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EItemPreviewType__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawFilter__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ELeaderboardDataRequest__value(lua_State* L) +static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardDataRequest__value(lua_State* L) +static int tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardDataRequest)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (_D3DMULTISAMPLE_TYPE)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardDataRequest__reference_value(lua_State* L) +static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DMULTISAMPLE_TYPE>"); return 1; } -static int tolua_get_Primitive_ELeaderboardSortMethod__value(lua_State* L) +static int tolua_get_Primitive__D3DSWAPEFFECT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardSortMethod__value(lua_State* L) +static int tolua_set_Primitive__D3DSWAPEFFECT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardSortMethod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (_D3DSWAPEFFECT)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardSortMethod__reference_value(lua_State* L) +static int tolua_get_Primitive__D3DSWAPEFFECT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DSWAPEFFECT>"); return 1; } -static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) +static int tolua_get_Primitive_RendererType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) +static int tolua_set_Primitive_RendererType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardUploadScoreMethod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (RendererType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__reference_value(lua_State* L) +static int tolua_get_Primitive_RendererType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ELeaderboardDisplayType__value(lua_State* L) +static int tolua_get_Primitive_DrawFeature__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardDisplayType__value(lua_State* L) +static int tolua_set_Primitive_DrawFeature__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardDisplayType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawFeature)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardDisplayType__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawFeature__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EWorkshopVideoProvider__value(lua_State* L) +static int tolua_get_Primitive_DrawTone__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopVideoProvider__value(lua_State* L) +static int tolua_set_Primitive_DrawTone__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopVideoProvider)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawTone)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopVideoProvider__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawTone__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ERemoteStoragePlatform__value(lua_State* L) +static int tolua_get_Primitive_SDL_Keymod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ERemoteStoragePlatform__value(lua_State* L) +static int tolua_set_Primitive_SDL_Keymod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ERemoteStoragePlatform)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_Keymod)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ERemoteStoragePlatform__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EWorkshopFileAction__value(lua_State* L) +static int tolua_get_Primitive_DrawBlend__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopFileAction__value(lua_State* L) +static int tolua_set_Primitive_DrawBlend__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopFileAction)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawBlend)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopFileAction__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawBlend__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUGCReadAction__value(lua_State* L) +static int tolua_get_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUGCReadAction__value(lua_State* L) +static int tolua_set_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUGCReadAction)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUGCReadAction__reference_value(lua_State* L) +static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EWorkshopEnumerationType__value(lua_State* L) +static int tolua_get_Primitive_DrawMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopEnumerationType__value(lua_State* L) +static int tolua_set_Primitive_DrawMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopEnumerationType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1275,179 +1275,179 @@ static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_char___value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); - return 1; -} - -static int tolua_get_Primitive_long__value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_long__value(lua_State* L) +static int tolua_set_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_long__reference_value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_size_t__value(lua_State* L) +static int tolua_get_Primitive_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_size_t__value(lua_State* L) +static int tolua_set_Primitive_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_size_t__reference_value(lua_State* L) +static int tolua_get_Primitive_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int32_t__value(lua_State* L) +static int tolua_get_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int32_t__value(lua_State* L) +static int tolua_set_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int8_t__value(lua_State* L) +static int tolua_get_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_int8_t__value(lua_State* L) +static int tolua_set_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_float__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_short__value(lua_State* L) +static int tolua_get_Primitive_char___value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + return 1; +} + +static int tolua_get_Primitive___int8__value(lua_State* L) +{ + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_short__value(lua_State* L) +static int tolua_set_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_short__reference_value(lua_State* L) +static int tolua_get_Primitive___int8__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); return 1; } -static int tolua_get_Primitive_float__value(lua_State* L) +static int tolua_get_Primitive_int64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_float__value(lua_State* L) +static int tolua_set_Primitive_int64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_float__reference_value(lua_State* L) +static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_LONG__value(lua_State* L) +static int tolua_get_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LONG__value(lua_State* L) +static int tolua_set_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_LONG__reference_value(lua_State* L) +static int tolua_get_Primitive_INT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -1475,555 +1475,531 @@ static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_ushort__value(lua_State* L) +static int tolua_get_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ushort__value(lua_State* L) +static int tolua_set_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ushort__reference_value(lua_State* L) +static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_UINT__value(lua_State* L) +static int tolua_get_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_UINT__value(lua_State* L) +static int tolua_set_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_UINT__reference_value(lua_State* L) +static int tolua_get_Primitive_size_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_LRESULT__value(lua_State* L) +static int tolua_get_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LRESULT__value(lua_State* L) +static int tolua_set_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_HRESULT__value(lua_State* L) +static int tolua_get_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_HRESULT__value(lua_State* L) +static int tolua_set_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive___int32__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); return 1; } -static int tolua_get_Primitive_intptr_t__value(lua_State* L) +static int tolua_get_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_intptr_t__value(lua_State* L) +static int tolua_set_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_lua_Integer__value(lua_State* L) +static int tolua_get_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_lua_Integer__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); - return 0; -} - -static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_long_double__value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); - return 1; -} - -static int tolua_set_Primitive_long_double__value(lua_State* L) +static int tolua_set_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_long_double__reference_value(lua_State* L) +static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uintptr_t__value(lua_State* L) +static int tolua_get_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uintptr_t__value(lua_State* L) +static int tolua_set_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int16__value(lua_State* L) +static int tolua_get_Primitive___int64__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int16__value(lua_State* L) +static int tolua_set_Primitive___int64__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int16>(L, "value"); + self->value = tolua_setter_tointeger<__int64>(L, "value"); return 0; } -static int tolua_get_Primitive___int16__reference_value(lua_State* L) +static int tolua_get_Primitive___int64__reference_value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int64>"); return 1; } -static int tolua_get_Primitive_double__value(lua_State* L) +static int tolua_get_Primitive_uint16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_double__value(lua_State* L) +static int tolua_set_Primitive_uint16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_double__reference_value(lua_State* L) +static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int64__value(lua_State* L) +static int tolua_get_Primitive_DWORD__value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int64__value(lua_State* L) +static int tolua_set_Primitive_DWORD__value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int64>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int64__reference_value(lua_State* L) +static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint__value(lua_State* L) +static int tolua_get_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_uint__value(lua_State* L) +static int tolua_set_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_uint__reference_value(lua_State* L) +static int tolua_get_Primitive_long_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int32__value(lua_State* L) +static int tolua_get_Primitive_bool__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushboolean(L, (bool)self->value); return 1; } -static int tolua_set_Primitive___int32__value(lua_State* L) +static int tolua_set_Primitive_bool__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_toboolean(L, "value"); return 0; } -static int tolua_get_Primitive___int32__reference_value(lua_State* L) +static int tolua_get_Primitive_bool__reference_value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int8__value(lua_State* L) +static int tolua_get_Primitive_intptr_t__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int8__value(lua_State* L) +static int tolua_set_Primitive_intptr_t__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int8>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int8__reference_value(lua_State* L) +static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_INT__value(lua_State* L) +static int tolua_get_Primitive_byte__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_INT__value(lua_State* L) +static int tolua_set_Primitive_byte__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_INT__reference_value(lua_State* L) +static int tolua_get_Primitive_byte__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_byte__value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_byte__value(lua_State* L) +static int tolua_set_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_byte__reference_value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DWORD__value(lua_State* L) +static int tolua_get_Primitive_HRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DWORD__value(lua_State* L) +static int tolua_set_Primitive_HRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) +static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_BOOL__value(lua_State* L) +static int tolua_get_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_BOOL__value(lua_State* L) +static int tolua_set_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) +static int tolua_get_Primitive_short__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_bool__value(lua_State* L) +static int tolua_get_Primitive_char__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushboolean(L, (bool)self->value); + lua_pushlstring(L, (const char*)self->value, 1); return 1; } -static int tolua_set_Primitive_bool__value(lua_State* L) +static int tolua_set_Primitive_char__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_toboolean(L, "value"); + self->value = tolua_setter_tochar(L, "value"); return 0; } -static int tolua_get_Primitive_bool__reference_value(lua_State* L) +static int tolua_get_Primitive_char__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "char"); return 1; } -static int tolua_get_Primitive_int64_t__value(lua_State* L) +static int tolua_get_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int64_t__value(lua_State* L) +static int tolua_set_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_get_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_set_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +static int tolua_get_Primitive_ushort__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint64_t__value(lua_State* L) +static int tolua_get_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint64_t__value(lua_State* L) +static int tolua_set_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_UINT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_char__value(lua_State* L) +static int tolua_get_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushlstring(L, (const char*)self->value, 1); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_char__value(lua_State* L) +static int tolua_set_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tochar(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_char__reference_value(lua_State* L) +static int tolua_get_Primitive_long__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "char"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -2051,75 +2027,99 @@ static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_uint8_t__value(lua_State* L) +static int tolua_get_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint8_t__value(lua_State* L) +static int tolua_set_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int__value(lua_State* L) +static int tolua_get_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int__value(lua_State* L) +static int tolua_set_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int16>(L, "value"); return 0; } -static int tolua_get_Primitive_int__reference_value(lua_State* L) +static int tolua_get_Primitive___int16__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); return 1; } -static int tolua_get_Primitive_uint16_t__value(lua_State* L) +static int tolua_get_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint16_t__value(lua_State* L) +static int tolua_set_Primitive_LONG__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LONG__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); + return 1; +} + +static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + lua_pushinteger(L, (lua_Integer)self->value); + return 1; +} + +static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + self->value = tolua_setter_tointeger(L, "value"); + return 0; +} + +static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -27043,29 +27043,46 @@ static int tolua_function_VariableArray_void___set(lua_State* L) return 0; } -static int tolua_function_VariableArray_byte__get(lua_State* L) +static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); + return 1; +} + +static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(lua_State* L) +{ + VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 3, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + return 0; +} + +static int tolua_function_VariableArray_ushort__get(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_byte__getReference(lua_State* L) +static int tolua_function_VariableArray_ushort__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray_byte__set(lua_State* L) +static int tolua_function_VariableArray_ushort__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27086,72 +27103,55 @@ static int tolua_function_VariableArray_char__set(lua_State* L) return 0; } -static int tolua_function_VariableArray_short__get(lua_State* L) +static int tolua_function_VariableArray_byte__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_short__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); - return 1; -} - -static int tolua_function_VariableArray_short__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); - return 0; -} - -static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference(lua_State* L) +static int tolua_function_VariableArray_byte__getReference(lua_State* L) { - VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); + byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(lua_State* L) +static int tolua_function_VariableArray_byte__set(lua_State* L) { - VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 3, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } -static int tolua_function_VariableArray_ushort__get(lua_State* L) +static int tolua_function_VariableArray_short__get(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } -static int tolua_function_VariableArray_ushort__getReference(lua_State* L) +static int tolua_function_VariableArray_short__getReference(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); + short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } -static int tolua_function_VariableArray_ushort__set(lua_State* L) +static int tolua_function_VariableArray_short__set(lua_State* L) { - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27604,6 +27604,23 @@ static int tolua_function_VariableArray_ID3DXEffect___set(lua_State* L) return 0; } +static int tolua_function_VariableArray_SAreaFileWrapper__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SAreaFileWrapper* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SAreaFileWrapper"); + return 1; +} + +static int tolua_function_VariableArray_SAreaFileWrapper__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(SAreaFileWrapper*)tolua_tousertype_dynamic(L, 3, 0, "SAreaFileWrapper")); + return 0; +} + static int tolua_function_VariableArray_SDL_Cursor__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -27664,6 +27681,23 @@ static int tolua_function_VariableArray_const__D3DXMACRO__getReference(lua_State return 1; } +static int tolua_function_VariableArray___POSITION__getReference(lua_State* L) +{ + VariableArray<__POSITION>* self = (VariableArray<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__POSITION>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + __POSITION* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "__POSITION"); + return 1; +} + +static int tolua_function_VariableArray___POSITION__set(lua_State* L) +{ + VariableArray<__POSITION>* self = (VariableArray<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__POSITION>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(__POSITION*)tolua_tousertype_dynamic(L, 3, 0, "__POSITION")); + return 0; +} + static int tolua_function_VariableArray_const_unsigned___int16__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -27914,6 +27948,23 @@ static int tolua_function_VariableArray_CVisibilityMapEllipse__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CColorRange__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CColorRange* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CColorRange"); + return 1; +} + +static int tolua_function_VariableArray_CColorRange__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CColorRange*)tolua_tousertype_dynamic(L, 3, 0, "CColorRange")); + return 0; +} + static int tolua_function_VariableArray__iobuf__getReference(lua_State* L) { VariableArray<_iobuf>* self = (VariableArray<_iobuf>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_iobuf>"); @@ -28575,6 +28626,23 @@ static int tolua_function_VariableArray_CallInfo__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CWeaponIdentification__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CWeaponIdentification* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CWeaponIdentification"); + return 1; +} + +static int tolua_function_VariableArray_CWeaponIdentification__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CWeaponIdentification*)tolua_tousertype_dynamic(L, 3, 0, "CWeaponIdentification")); + return 0; +} + static int tolua_function_VariableArray_CVariableHash__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28626,6 +28694,23 @@ static int tolua_function_VariableArray_CVIDPALETTE_COLOR__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSchoolAndSecondaryDecrementing* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSchoolAndSecondaryDecrementing"); + return 1; +} + +static int tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 3, 0, "CSchoolAndSecondaryDecrementing")); + return 0; +} + static int tolua_function_VariableArray_CResTile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28729,6 +28814,23 @@ static int tolua_function_VariableArray_CPathNode___set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CParticle__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CParticle* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CParticle"); + return 1; +} + +static int tolua_function_VariableArray_CParticle__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CParticle*)tolua_tousertype_dynamic(L, 3, 0, "CParticle")); + return 0; +} + static int tolua_function_VariableArray_CSnowFlake__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28763,6 +28865,57 @@ static int tolua_function_VariableArray_CRainDrop__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CMusicPosition__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CMusicPosition* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CMusicPosition"); + return 1; +} + +static int tolua_function_VariableArray_CMusicPosition__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CMusicPosition*)tolua_tousertype_dynamic(L, 3, 0, "CMusicPosition")); + return 0; +} + +static int tolua_function_VariableArray_CImmunitiesItemTypeEquip__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CImmunitiesItemTypeEquip* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemTypeEquip"); + return 1; +} + +static int tolua_function_VariableArray_CImmunitiesItemTypeEquip__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemTypeEquip")); + return 0; +} + +static int tolua_function_VariableArray_CGameTimer__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameTimer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameTimer"); + return 1; +} + +static int tolua_function_VariableArray_CGameTimer__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameTimer*)tolua_tousertype_dynamic(L, 3, 0, "CGameTimer")); + return 0; +} + static int tolua_function_VariableArray_CGameRemoteObjectListEntry___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -28823,6 +28976,91 @@ static int tolua_function_VariableArray_CGameRemoteObjectControlChange__set(lua_ return 0; } +static int tolua_function_VariableArray_CGameOptions__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameOptions* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "EEex_CGameOptions"); + return 1; +} + +static int tolua_function_VariableArray_CGameOptions__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameOptions*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CGameOptions")); + return 0; +} + +static int tolua_function_VariableArray_CGameJournalEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameJournalEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameJournalEntry"); + return 1; +} + +static int tolua_function_VariableArray_CGameJournalEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameJournalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameJournalEntry")); + return 0; +} + +static int tolua_function_VariableArray_CDeathSound__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CDeathSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CDeathSound"); + return 1; +} + +static int tolua_function_VariableArray_CDeathSound__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CDeathSound*)tolua_tousertype_dynamic(L, 3, 0, "CDeathSound")); + return 0; +} + +static int tolua_function_VariableArray_CColorEffect__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CColorEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CColorEffect"); + return 1; +} + +static int tolua_function_VariableArray_CColorEffect__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CColorEffect*)tolua_tousertype_dynamic(L, 3, 0, "CColorEffect")); + return 0; +} + +static int tolua_function_VariableArray_CBounceEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CBounceEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CBounceEntry"); + return 1; +} + +static int tolua_function_VariableArray_CBounceEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CBounceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CBounceEntry")); + return 0; +} + static int tolua_function_VariableArray_BAMHEADERV2__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29259,6 +29497,23 @@ static int tolua_function_VariableArray_const_CString__getReference(lua_State* L return 1; } +static int tolua_function_VariableArray_CFeedbackEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CFeedbackEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CFeedbackEntry"); + return 1; +} + +static int tolua_function_VariableArray_CFeedbackEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CFeedbackEntry*)tolua_tousertype_dynamic(L, 3, 0, "CFeedbackEntry")); + return 0; +} + static int tolua_function_VariableArray_CSpawnVar__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29388,6 +29643,40 @@ static int tolua_function_VariableArray_const_CPoint__getReference(lua_State* L) return 1; } +static int tolua_function_VariableArray_CAOEEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAOEEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAOEEntry"); + return 1; +} + +static int tolua_function_VariableArray_CAOEEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAOEEntry*)tolua_tousertype_dynamic(L, 3, 0, "CAOEEntry")); + return 0; +} + +static int tolua_function_VariableArray_CPersistantEffect__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CPersistantEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CPersistantEffect"); + return 1; +} + +static int tolua_function_VariableArray_CPersistantEffect__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CPersistantEffect*)tolua_tousertype_dynamic(L, 3, 0, "CPersistantEffect")); + return 0; +} + static int tolua_function_VariableArray_CObject__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29482,6 +29771,23 @@ static int tolua_function_VariableArray_CMapStringToString__CAssoc___set(lua_Sta return 0; } +static int tolua_function_VariableArray_CVoice__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CVoice* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CVoice"); + return 1; +} + +static int tolua_function_VariableArray_CVoice__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CVoice*)tolua_tousertype_dynamic(L, 3, 0, "CVoice")); + return 0; +} + static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReference(lua_State* L) { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); @@ -29533,6 +29839,23 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___CNode__set return 0; } +static int tolua_function_VariableArray_CTimer__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CTimer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CTimer"); + return 1; +} + +static int tolua_function_VariableArray_CTimer__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CTimer*)tolua_tousertype_dynamic(L, 3, 0, "CTimer")); + return 0; +} + static int tolua_function_VariableArray_CStringList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29601,6 +29924,23 @@ static int tolua_function_VariableArray_CAIResponseSet__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CAIConditionResponse__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAIConditionResponse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAIConditionResponse"); + return 1; +} + +static int tolua_function_VariableArray_CAIConditionResponse__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAIConditionResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIConditionResponse")); + return 0; +} + static int tolua_function_VariableArray_CGameButtonList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29618,6 +29958,40 @@ static int tolua_function_VariableArray_CGameButtonList__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CAIResponse__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAIResponse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAIResponse"); + return 1; +} + +static int tolua_function_VariableArray_CAIResponse__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAIResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIResponse")); + return 0; +} + +static int tolua_function_VariableArray_CWarp__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CWarp* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "EEex_CWarp"); + return 1; +} + +static int tolua_function_VariableArray_CWarp__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CWarp*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CWarp")); + return 0; +} + static int tolua_function_VariableArray_CMemINISection__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -29720,6 +30094,57 @@ static int tolua_function_VariableArray_CObList__CNode__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CMessage__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CMessage* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CMessage"); + return 1; +} + +static int tolua_function_VariableArray_CMessage__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CMessage*)tolua_tousertype_dynamic(L, 3, 0, "CMessage")); + return 0; +} + +static int tolua_function_VariableArray_CMemINIValue__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CMemINIValue* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CMemINIValue"); + return 1; +} + +static int tolua_function_VariableArray_CMemINIValue__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CMemINIValue*)tolua_tousertype_dynamic(L, 3, 0, "CMemINIValue")); + return 0; +} + +static int tolua_function_VariableArray_CGameAreaClairvoyanceEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameAreaClairvoyanceEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameAreaClairvoyanceEntry"); + return 1; +} + +static int tolua_function_VariableArray_CGameAreaClairvoyanceEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameAreaClairvoyanceEntry")); + return 0; +} + static int tolua_function_VariableArray_CFile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30069,6 +30494,23 @@ static int tolua_function_VariableArray_CSoundMixerImp__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CSearchRequest__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSearchRequest* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSearchRequest"); + return 1; +} + +static int tolua_function_VariableArray_CSearchRequest__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSearchRequest*)tolua_tousertype_dynamic(L, 3, 0, "CSearchRequest")); + return 0; +} + static int tolua_function_VariableArray_CScreenMovies__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30308,6 +30750,23 @@ static int tolua_function_VariableArray_CVidCellFont__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CPortraitIcon__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CPortraitIcon* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CPortraitIcon"); + return 1; +} + +static int tolua_function_VariableArray_CPortraitIcon__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CPortraitIcon*)tolua_tousertype_dynamic(L, 3, 0, "CPortraitIcon")); + return 0; +} + static int tolua_function_VariableArray_CScreenCreateChar__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30512,6 +30971,108 @@ static int tolua_function_VariableArray_CAreaFileProjectileObject__set(lua_State return 0; } +static int tolua_function_VariableArray_CCriticalEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CCriticalEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CCriticalEntry"); + return 1; +} + +static int tolua_function_VariableArray_CCriticalEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CCriticalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CCriticalEntry")); + return 0; +} + +static int tolua_function_VariableArray_CGameSprite__GroundItem__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameSprite::GroundItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameSprite::GroundItem"); + return 1; +} + +static int tolua_function_VariableArray_CGameSprite__GroundItem__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite::GroundItem")); + return 0; +} + +static int tolua_function_VariableArray_CImmunitiesItemEquip__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CImmunitiesItemEquip* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemEquip"); + return 1; +} + +static int tolua_function_VariableArray_CImmunitiesItemEquip__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemEquip")); + return 0; +} + +static int tolua_function_VariableArray_CImmunitySpell__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CImmunitySpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CImmunitySpell"); + return 1; +} + +static int tolua_function_VariableArray_CImmunitySpell__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitySpell*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitySpell")); + return 0; +} + +static int tolua_function_VariableArray_CMoveListEntry__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CMoveListEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CMoveListEntry"); + return 1; +} + +static int tolua_function_VariableArray_CMoveListEntry__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CMoveListEntry*)tolua_tousertype_dynamic(L, 3, 0, "CMoveListEntry")); + return 0; +} + +static int tolua_function_VariableArray_CCreatureFileKnownSpell__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CCreatureFileKnownSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); + return 1; +} + +static int tolua_function_VariableArray_CCreatureFileKnownSpell__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileKnownSpell")); + return 0; +} + static int tolua_function_VariableArray_WED_LayerHeader_st__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30717,6 +31278,40 @@ static int tolua_function_VariableArray_CVVCHashEntry__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CVEFEvent__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CVEFEvent* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CVEFEvent"); + return 1; +} + +static int tolua_function_VariableArray_CVEFEvent__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CVEFEvent*)tolua_tousertype_dynamic(L, 3, 0, "CVEFEvent")); + return 0; +} + +static int tolua_function_VariableArray_CTiledObject__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CTiledObject* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CTiledObject"); + return 1; +} + +static int tolua_function_VariableArray_CTiledObject__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CTiledObject*)tolua_tousertype_dynamic(L, 3, 0, "CTiledObject")); + return 0; +} + static int tolua_function_VariableArray_CStoreFileSpell__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30734,6 +31329,23 @@ static int tolua_function_VariableArray_CStoreFileSpell__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CStoreFileItem__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CStoreFileItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CStoreFileItem"); + return 1; +} + +static int tolua_function_VariableArray_CStoreFileItem__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CStoreFileItem*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileItem")); + return 0; +} + static int tolua_function_VariableArray_CStoreFileDrinks__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30768,6 +31380,23 @@ static int tolua_function_VariableArray_CSpell__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CSequenceSound__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSequenceSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSequenceSound"); + return 1; +} + +static int tolua_function_VariableArray_CSequenceSound__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSequenceSound*)tolua_tousertype_dynamic(L, 3, 0, "CSequenceSound")); + return 0; +} + static int tolua_function_VariableArray_CScreenWorldMap__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30819,6 +31448,23 @@ static int tolua_function_VariableArray_CScreenWizSpell__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CScreenStoreItem__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CScreenStoreItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CScreenStoreItem"); + return 1; +} + +static int tolua_function_VariableArray_CScreenStoreItem__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenStoreItem*)tolua_tousertype_dynamic(L, 3, 0, "CScreenStoreItem")); + return 0; +} + static int tolua_function_VariableArray_CScreenPriestSpell__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30904,6 +31550,23 @@ static int tolua_function_VariableArray_CScreenChapter__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CSavedGameStoredLocation__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSavedGameStoredLocation* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSavedGameStoredLocation"); + return 1; +} + +static int tolua_function_VariableArray_CSavedGameStoredLocation__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGameStoredLocation")); + return 0; +} + static int tolua_function_VariableArray_CPlex__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -30989,6 +31652,23 @@ static int tolua_function_VariableArray_CGameEffectBase__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CGameEffect__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameEffect"); + return 1; +} + +static int tolua_function_VariableArray_CGameEffect__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffect*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffect")); + return 0; +} + static int tolua_function_VariableArray_CGameEffectDamage__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31006,6 +31686,23 @@ static int tolua_function_VariableArray_CGameEffectDamage__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CGameEffectUsability__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CGameEffectUsability* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CGameEffectUsability"); + return 1; +} + +static int tolua_function_VariableArray_CGameEffectUsability__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffectUsability*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectUsability")); + return 0; +} + static int tolua_function_VariableArray_CGameAnimationType__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31040,6 +31737,23 @@ static int tolua_function_VariableArray_CDerivedStats__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CCreatureFileMemorizedSpell__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CCreatureFileMemorizedSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpell"); + return 1; +} + +static int tolua_function_VariableArray_CCreatureFileMemorizedSpell__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpell")); + return 0; +} + static int tolua_function_VariableArray_CCreatureFileItem__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31117,6 +31831,23 @@ static int tolua_function_VariableArray_GCObject___set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CBlood__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CBlood* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CBlood"); + return 1; +} + +static int tolua_function_VariableArray_CBlood__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CBlood*)tolua_tousertype_dynamic(L, 3, 0, "CBlood")); + return 0; +} + static int tolua_function_VariableArray_CBaldurProjector__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31151,6 +31882,23 @@ static int tolua_function_VariableArray_CBaldurChitin__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CAreaUserNote__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAreaUserNote* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAreaUserNote"); + return 1; +} + +static int tolua_function_VariableArray_CAreaUserNote__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaUserNote*)tolua_tousertype_dynamic(L, 3, 0, "CAreaUserNote")); + return 0; +} + static int tolua_function_VariableArray_CAreaFileContainer__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31168,6 +31916,40 @@ static int tolua_function_VariableArray_CAreaFileContainer__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CAreaFileCharacterEntryPoint__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAreaFileCharacterEntryPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAreaFileCharacterEntryPoint"); + return 1; +} + +static int tolua_function_VariableArray_CAreaFileCharacterEntryPoint__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileCharacterEntryPoint")); + return 0; +} + +static int tolua_function_VariableArray_CAIObjectType__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAIObjectType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); + return 1; +} + +static int tolua_function_VariableArray_CAIObjectType__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType")); + return 0; +} + static int tolua_function_VariableArray_const_CAIObjectType__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31177,6 +31959,23 @@ static int tolua_function_VariableArray_const_CAIObjectType__getReference(lua_St return 1; } +static int tolua_function_VariableArray_CAIAction__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAIAction* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAIAction"); + return 1; +} + +static int tolua_function_VariableArray_CAIAction__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAIAction*)tolua_tousertype_dynamic(L, 3, 0, "CAIAction")); + return 0; +} + static int tolua_function_VariableArray_const_CAIAction__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31186,6 +31985,57 @@ static int tolua_function_VariableArray_const_CAIAction__getReference(lua_State* return 1; } +static int tolua_function_VariableArray_CSpawn__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSpawn* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSpawn"); + return 1; +} + +static int tolua_function_VariableArray_CSpawn__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawn*)tolua_tousertype_dynamic(L, 3, 0, "CSpawn")); + return 0; +} + +static int tolua_function_VariableArray_CSelectiveWeaponType__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSelectiveWeaponType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSelectiveWeaponType"); + return 1; +} + +static int tolua_function_VariableArray_CSelectiveWeaponType__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveWeaponType")); + return 0; +} + +static int tolua_function_VariableArray_CSelectiveBonus__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CSelectiveBonus* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CSelectiveBonus"); + return 1; +} + +static int tolua_function_VariableArray_CSelectiveBonus__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CSelectiveBonus*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveBonus")); + return 0; +} + static int tolua_function_VariableArray_CScreenStore__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31229,6 +32079,23 @@ static int tolua_function_VariableArray_CGameObject___set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CProjectile__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CProjectile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CProjectile"); + return 1; +} + +static int tolua_function_VariableArray_CProjectile__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectile*)tolua_tousertype_dynamic(L, 3, 0, "CProjectile")); + return 0; +} + static int tolua_function_VariableArray_CProjectileBAM__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31314,6 +32181,23 @@ static int tolua_function_VariableArray_CObjectMarker__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CAITrigger__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CAITrigger* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); + return 1; +} + +static int tolua_function_VariableArray_CAITrigger__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CAITrigger*)tolua_tousertype_dynamic(L, 3, 0, "CAITrigger")); + return 0; +} + static int tolua_function_VariableArray_const_CAITrigger__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -31400,6 +32284,23 @@ static int tolua_function_VariableArray_CGameContainer__set(lua_State* L) return 0; } +static int tolua_function_VariableArray_CContingency__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + CContingency* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "CContingency"); + return 1; +} + +static int tolua_function_VariableArray_CContingency__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + self->set(tolua_function_tointeger(L, 2, "set"), *(CContingency*)tolua_tousertype_dynamic(L, 3, 0, "CContingency")); + return 0; +} + static int tolua_function_VariableArray_wchar_t__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); @@ -32987,6 +33888,110 @@ static int tolua_get_slicedRect_reference_flags(lua_State* L) return 1; } +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_pt(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'pt'", NULL); + tolua_pushusertype(L, (void*)&self->pt, "SDL_Point"); + return 1; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_on(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'on'", NULL); + tolua_pushboolean(L, (bool)self->on); + return 1; +} + +static int tolua_set__820A8B7015E7E0FD9144A7C186FBF075_on(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'on'", NULL); + self->on = tolua_setter_toboolean(L, "on"); + return 0; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_reference_on(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'on'", NULL); + tolua_pushusertype(L, (void*)&self->on, "Primitive"); + return 1; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_text(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'text'", NULL); + tolua_pushusertype(L, (void*)&self->text, "ConstCharString"); + return 1; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_r(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'r'", NULL); + tolua_pushusertype(L, (void*)&self->r, "SDL_Rect"); + return 1; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_count(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'count'", NULL); + lua_pushinteger(L, (lua_Integer)self->count); + return 1; +} + +static int tolua_set__820A8B7015E7E0FD9144A7C186FBF075_count(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'count'", NULL); + self->count = tolua_setter_tointeger(L, "count"); + return 0; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_reference_count(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'count'", NULL); + tolua_pushusertype(L, (void*)&self->count, "Primitive"); + return 1; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_lastText(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'lastText'", NULL); + tolua_pushusertype(L, (void*)&self->lastText, "ConstCharString"); + return 1; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_playedSound(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'playedSound'", NULL); + tolua_pushboolean(L, (bool)self->playedSound); + return 1; +} + +static int tolua_set__820A8B7015E7E0FD9144A7C186FBF075_playedSound(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'playedSound'", NULL); + self->playedSound = tolua_setter_toboolean(L, "playedSound"); + return 0; +} + +static int tolua_get__820A8B7015E7E0FD9144A7C186FBF075_reference_playedSound(lua_State* L) +{ + _820A8B7015E7E0FD9144A7C186FBF075* self = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 1, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'playedSound'", NULL); + tolua_pushusertype(L, (void*)&self->playedSound, "Primitive"); + return 1; +} + static int tolua_get__9B9540D9920A90D57A3D80DDD1A70514_start(lua_State* L) { _9B9540D9920A90D57A3D80DDD1A70514* self = (_9B9540D9920A90D57A3D80DDD1A70514*)tolua_tousertype_dynamic(L, 1, 0, "_9B9540D9920A90D57A3D80DDD1A70514"); @@ -54379,195 +55384,195 @@ static int tolua_function_Pointer_SDL_Keycode__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int8_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int8_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); return 1; } -static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); return 0; } -static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); return 0; } -static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -54595,147 +55600,243 @@ static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); return 1; } -static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); return 0; } -static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); return 0; } -static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); + return 1; +} + +static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); + return 0; +} + +static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + return 0; +} + +static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -54763,315 +55864,363 @@ static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); + return 1; +} + +static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); + return 0; +} + +static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); + return 0; +} + +static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55099,150 +56248,6 @@ static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - -static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); - return 1; -} - -static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); - return 0; -} - -static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); - return 0; -} - static int tolua_get_Pointer_const_void___reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -56096,6 +57101,39 @@ static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB__setValue(lu return 0; } +static int tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 1; +} + +static int tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (_D98D369160A0DDA2B95F5D0F301081BB**)tolua_tousertype_dynamic(L, 2, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 0; +} + +static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getValue(); + tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); + return 1; +} + +static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue((_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + return 0; +} + static int tolua_get_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -56137,39 +57175,6 @@ static int tolua_function_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB___getV return 1; } -static int tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 1; -} - -static int tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (_D98D369160A0DDA2B95F5D0F301081BB**)tolua_tousertype_dynamic(L, 2, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 0; -} - -static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getValue(); - tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); - return 1; -} - -static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); - return 0; -} - static int tolua_get_Pointer_const_char___reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -59168,27 +60173,51 @@ static int tolua_function_Pointer_view_t__setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + tolua_pushusertype(L, (void*)self->reference, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); return 1; } -static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) +static int tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + self->reference = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); return 0; } -static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); + return 0; +} + +static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + return 1; +} + +static int tolua_set_Pointer_VariableArray_ushort___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + return 0; +} + +static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -59216,6 +60245,30 @@ static int tolua_function_Pointer_VariableArray_char___setValue(lua_State* L) return 0; } +static int tolua_get_Pointer_VariableArray_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + return 1; +} + +static int tolua_set_Pointer_VariableArray_byte___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + return 0; +} + +static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + return 0; +} + static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); @@ -59240,54 +60293,6 @@ static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) return 0; } -static int tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 1; -} - -static int tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 0; -} - -static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); - return 0; -} - -static int tolua_get_Pointer_VariableArray_ushort___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); - return 1; -} - -static int tolua_set_Pointer_VariableArray_ushort___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); - return 0; -} - -static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); - return 0; -} - static int tolua_get_Pointer_VariableArray_CRect____reference(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); @@ -59870,6 +60875,30 @@ static int tolua_function_Pointer_slicedRect___setValue(lua_State* L) return 0; } +static int tolua_get_Pointer__820A8B7015E7E0FD9144A7C186FBF075__reference(lua_State* L) +{ + Pointer<_820A8B7015E7E0FD9144A7C186FBF075>* self = (Pointer<_820A8B7015E7E0FD9144A7C186FBF075>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "_820A8B7015E7E0FD9144A7C186FBF075"); + return 1; +} + +static int tolua_set_Pointer__820A8B7015E7E0FD9144A7C186FBF075__reference(lua_State* L) +{ + Pointer<_820A8B7015E7E0FD9144A7C186FBF075>* self = (Pointer<_820A8B7015E7E0FD9144A7C186FBF075>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 2, 0, "_820A8B7015E7E0FD9144A7C186FBF075"); + return 0; +} + +static int tolua_function_Pointer__820A8B7015E7E0FD9144A7C186FBF075__setValue(lua_State* L) +{ + Pointer<_820A8B7015E7E0FD9144A7C186FBF075>* self = (Pointer<_820A8B7015E7E0FD9144A7C186FBF075>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + self->setValue(*(_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 2, 0, "_820A8B7015E7E0FD9144A7C186FBF075")); + return 0; +} + static int tolua_get_Pointer__9B9540D9920A90D57A3D80DDD1A70514__reference(lua_State* L) { Pointer<_9B9540D9920A90D57A3D80DDD1A70514>* self = (Pointer<_9B9540D9920A90D57A3D80DDD1A70514>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_9B9540D9920A90D57A3D80DDD1A70514>"); @@ -121294,6 +122323,42 @@ static int tolua_get_capture(lua_State* L) return 1; } +static int tolua_get_fingerDown(lua_State* L) +{ + tolua_pushboolean(L, (bool)*p_fingerDown); + return 1; +} + +static int tolua_set_fingerDown(lua_State* L) +{ + *p_fingerDown = tolua_setter_toboolean(L, "fingerDown"); + return 0; +} + +static int tolua_get_reference_fingerDown(lua_State* L) +{ + tolua_pushusertype(L, (void*)p_fingerDown, "Primitive"); + return 1; +} + +static int tolua_get_g_backgroundMenu(lua_State* L) +{ + tolua_pushusertype(L, (void*)*p_g_backgroundMenu, "uiMenu"); + return 1; +} + +static int tolua_set_g_backgroundMenu(lua_State* L) +{ + *p_g_backgroundMenu = (uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu"); + return 0; +} + +static int tolua_get_reference_g_backgroundMenu(lua_State* L) +{ + tolua_pushusertype(L, (void*)p_g_backgroundMenu, "Pointer"); + return 1; +} + static int tolua_get_g_drawBackend(lua_State* L) { lua_pushinteger(L, (lua_Integer)*p_g_drawBackend); @@ -121462,6 +122527,12 @@ static int tolua_get_resources(lua_State* L) return 1; } +static int tolua_get_tooltip(lua_State* L) +{ + tolua_pushusertype(L, (void*)p_tooltip, "_820A8B7015E7E0FD9144A7C186FBF075"); + return 1; +} + static int tolua_get_transition(lua_State* L) { tolua_pushusertype(L, (void*)p_transition, "_A92C2F5FC159A4FE55DD6CCAABD58E72"); @@ -207387,94 +208458,94 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "ID3DXBuffer"); tolua_usertype(L, "ID3DXBaseEffect"); tolua_usertype(L, "ID3DXEffect"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<_D3DFORMAT>"); - tolua_usertype(L, "Primitive<_D3DSWAPEFFECT>"); - tolua_usertype(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<_D3DFORMAT>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_usertype(L, "Primitive<_D3DSWAPEFFECT>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int16>"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int64>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int32>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive<__int8>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int32>"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int64>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int16>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "SAreaFileWrapper"); tolua_usertype(L, "SDL_Cursor"); tolua_usertype(L, "SDL_WindowUserData"); @@ -207727,11 +208798,11 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207751,10 +208822,12 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray<__POSITION>"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207768,6 +208841,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_iobuf>"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207806,19 +208880,30 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207846,6 +208931,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207855,25 +208941,35 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray>"); tolua_usertype(L, "VariableArray::CNode>"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207894,6 +208990,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207908,6 +209005,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207920,6 +209018,12 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -207931,46 +209035,66 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "SDL_Rect"); tolua_usertype(L, "SDL_Window"); @@ -207979,6 +209103,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "SDL_Point"); tolua_usertype(L, "uiMenu"); tolua_usertype(L, "slicedRect"); + tolua_usertype(L, "_820A8B7015E7E0FD9144A7C186FBF075"); tolua_usertype(L, "_9B9540D9920A90D57A3D80DDD1A70514"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -208723,42 +209848,42 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -208790,9 +209915,9 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -208912,11 +210037,11 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); @@ -208936,6 +210061,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>"); tolua_usertype(L, "Pointer<_9B9540D9920A90D57A3D80DDD1A70514>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -210726,83 +211852,6 @@ int OpenBindingsInternal(lua_State* L) tolua_beginmodule(L, "ID3DXEffect"); tolua_constant(L, "sizeof", sizeof(ID3DXEffect)); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_WindowShapeMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_HitTestResult__value, tolua_set_Primitive_SDL_HitTestResult__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_HitTestResult__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_bool__value, tolua_set_Primitive_SDL_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CButtonType__value, tolua_set_Primitive_CButtonType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CButtonType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CGameJournalEntryFlag__value, tolua_set_Primitive_CGameJournalEntryFlag__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CGameJournalEntryFlag__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CSpawn__ePMode__value, tolua_set_Primitive_CSpawn__ePMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CSpawn__ePMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CAOEEntry__AOEType__value, tolua_set_Primitive_CAOEEntry__AOEType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CAOEEntry__AOEType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_CGameObjectType__value, tolua_set_Primitive_CGameObjectType__value); @@ -210814,39 +211863,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_VertListType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_SDL_SYSWM_TYPE__value, tolua_set_Primitive_SDL_SYSWM_TYPE__value); @@ -210858,17 +211874,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_Scancode__value, tolua_set_Primitive_SDL_Scancode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Scancode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_SDL_Keycode__value, tolua_set_Primitive_SDL_Keycode__value); @@ -210880,6 +211885,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_Scancode__value, tolua_set_Primitive_SDL_Scancode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Scancode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_SDL_EventType__value, tolua_set_Primitive_SDL_EventType__value); @@ -210891,191 +211907,191 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFilter__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_importStateType__value, tolua_set_Primitive_importStateType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_importStateType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DepthLockState__value, tolua_set_Primitive_DepthLockState__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DepthLockState__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CScreenCreateCharStep__value, tolua_set_Primitive_CScreenCreateCharStep__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CScreenCreateCharStep__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DFORMAT>", "Primitive<_D3DFORMAT>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DFORMAT>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DFORMAT__value, tolua_set_Primitive__D3DFORMAT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DFORMAT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DFORMAT>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DFORMAT>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_WindowShapeMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DFORMAT>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DSWAPEFFECT>", "Primitive<_D3DSWAPEFFECT>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DSWAPEFFECT>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DSWAPEFFECT__value, tolua_set_Primitive__D3DSWAPEFFECT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DSWAPEFFECT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DSWAPEFFECT>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DSWAPEFFECT>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_HitTestResult__value, tolua_set_Primitive_SDL_HitTestResult__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_HitTestResult__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DSWAPEFFECT>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DMULTISAMPLE_TYPE>", "Primitive<_D3DMULTISAMPLE_TYPE>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value, tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DMULTISAMPLE_TYPE>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_bool__value, tolua_set_Primitive_SDL_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_RendererType__value, tolua_set_Primitive_RendererType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_RendererType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CSpawn__ePMode__value, tolua_set_Primitive_CSpawn__ePMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CSpawn__ePMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawTone__value, tolua_set_Primitive_DrawTone__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawTone__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CAOEEntry__AOEType__value, tolua_set_Primitive_CAOEEntry__AOEType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CAOEEntry__AOEType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawFeature__value, tolua_set_Primitive_DrawFeature__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFeature__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CButtonType__value, tolua_set_Primitive_CButtonType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CButtonType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawBlend__value, tolua_set_Primitive_DrawBlend__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawBlend__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CGameJournalEntryFlag__value, tolua_set_Primitive_CGameJournalEntryFlag__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CGameJournalEntryFlag__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_Keymod__value, tolua_set_Primitive_SDL_Keymod__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Keymod__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CChitin__EngineMode__value, tolua_set_Primitive_CChitin__EngineMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CChitin__EngineMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EUGCReadAction__value, tolua_set_Primitive_EUGCReadAction__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EUGCReadAction__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CScreenCreateCharStep__value, tolua_set_Primitive_CScreenCreateCharStep__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CScreenCreateCharStep__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EWorkshopEnumerationType__value, tolua_set_Primitive_EWorkshopEnumerationType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopEnumerationType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_importStateType__value, tolua_set_Primitive_importStateType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_importStateType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EWorkshopFileType__value, tolua_set_Primitive_EWorkshopFileType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopFileType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CChitin__EngineMode__value, tolua_set_Primitive_CChitin__EngineMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CChitin__EngineMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EWorkshopVideoProvider__value, tolua_set_Primitive_EWorkshopVideoProvider__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopVideoProvider__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__value, tolua_set_Primitive_DPWrapper__PEER_STATE_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__value, tolua_set_Primitive_ERemoteStoragePublishedFileVisibility__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DP_EventType__value, tolua_set_Primitive_DP_EventType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DP_EventType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ERemoteStoragePlatform__value, tolua_set_Primitive_ERemoteStoragePlatform__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ERemoteStoragePlatform__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DP_ProviderID__value, tolua_set_Primitive_DP_ProviderID__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DP_ProviderID__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EWorkshopFileAction__value, tolua_set_Primitive_EWorkshopFileAction__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopFileAction__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211089,15 +212105,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EWorkshopFileType__value, tolua_set_Primitive_EWorkshopFileType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopFileType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EUserUGCListSortOrder__value, tolua_set_Primitive_EUserUGCListSortOrder__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EUserUGCListSortOrder__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EItemPreviewType__value, tolua_set_Primitive_EItemPreviewType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EItemPreviewType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211133,17 +212160,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__value, tolua_set_Primitive_ERemoteStoragePublishedFileVisibility__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_EUGCMatchingUGCType__value, tolua_set_Primitive_EUGCMatchingUGCType__value); @@ -211166,26 +212182,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EUserUGCListSortOrder__value, tolua_set_Primitive_EUserUGCListSortOrder__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EUserUGCListSortOrder__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EItemPreviewType__value, tolua_set_Primitive_EItemPreviewType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EItemPreviewType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardDisplayType__value, tolua_set_Primitive_ELeaderboardDisplayType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardDisplayType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211221,70 +212226,191 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardDisplayType__value, tolua_set_Primitive_ELeaderboardDisplayType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardDisplayType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__value, tolua_set_Primitive_DPWrapper__PEER_STATE_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EWorkshopVideoProvider__value, tolua_set_Primitive_EWorkshopVideoProvider__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopVideoProvider__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DP_EventType__value, tolua_set_Primitive_DP_EventType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DP_EventType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ERemoteStoragePlatform__value, tolua_set_Primitive_ERemoteStoragePlatform__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ERemoteStoragePlatform__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DP_ProviderID__value, tolua_set_Primitive_DP_ProviderID__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DP_ProviderID__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EWorkshopFileAction__value, tolua_set_Primitive_EWorkshopFileAction__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopFileAction__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_VertListType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EUGCReadAction__value, tolua_set_Primitive_EUGCReadAction__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EUGCReadAction__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EWorkshopEnumerationType__value, tolua_set_Primitive_EWorkshopEnumerationType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopEnumerationType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DepthLockState__value, tolua_set_Primitive_DepthLockState__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DepthLockState__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<_D3DFORMAT>", "Primitive<_D3DFORMAT>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DFORMAT>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DFORMAT__value, tolua_set_Primitive__D3DFORMAT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DFORMAT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DFORMAT>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DFORMAT>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DFORMAT>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFilter__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<_D3DMULTISAMPLE_TYPE>", "Primitive<_D3DMULTISAMPLE_TYPE>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value, tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<_D3DSWAPEFFECT>", "Primitive<_D3DSWAPEFFECT>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DSWAPEFFECT>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DSWAPEFFECT__value, tolua_set_Primitive__D3DSWAPEFFECT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DSWAPEFFECT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DSWAPEFFECT>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DSWAPEFFECT>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DSWAPEFFECT>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_RendererType__value, tolua_set_Primitive_RendererType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_RendererType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawFeature__value, tolua_set_Primitive_DrawFeature__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFeature__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawTone__value, tolua_set_Primitive_DrawTone__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawTone__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_Keymod__value, tolua_set_Primitive_SDL_Keymod__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Keymod__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawBlend__value, tolua_set_Primitive_DrawBlend__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawBlend__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211298,6 +212424,50 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_double__value, tolua_set_Primitive_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); @@ -211308,15 +212478,59 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int8>"); + tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int64_t__value, tolua_set_Primitive_int64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint8_t__value, tolua_set_Primitive_uint8_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint8_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211330,15 +212544,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int32>"); + tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211352,6 +212588,116 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int64>"); + tolua_variable(L, "value", tolua_get_Primitive___int64__value, tolua_set_Primitive___int64__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int64__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int64>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int64>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DWORD__value, tolua_set_Primitive_DWORD__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DWORD__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); @@ -211363,37 +212709,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_float__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "char"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211418,103 +212753,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uintptr_t__value, tolua_set_Primitive_uintptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uintptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int16>"); - tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_double__value, tolua_set_Primitive_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int64>"); - tolua_variable(L, "value", tolua_get_Primitive___int64__value, tolua_set_Primitive___int64__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int64__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int64>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int64>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211528,92 +212786,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int32>"); - tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int8>"); - tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DWORD__value, tolua_set_Primitive_DWORD__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DWORD__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int16>"); + tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int64_t__value, tolua_set_Primitive_int64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -211627,72 +212819,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "char"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint8_t__value, tolua_set_Primitive_uint8_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint8_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "SAreaFileWrapper", "SAreaFileWrapper", {}, NULL); tolua_beginmodule(L, "SAreaFileWrapper"); tolua_variable(L, "pContainer", tolua_get_SAreaFileWrapper_pContainer, tolua_set_SAreaFileWrapper_pContainer); @@ -218463,12 +219589,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_void___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_byte__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_byte__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_cclass(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", {}, NULL); + tolua_beginmodule(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_function(L, "getReference", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference); + tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); + tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_ushort__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); @@ -218476,6 +219608,13 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_char__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_byte__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_byte__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_byte__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_short__get); @@ -218483,19 +219622,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_short__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>", {}, NULL); - tolua_beginmodule(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_function(L, "getReference", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getReference); - tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); - tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); - tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_ushort__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_ushort__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CRect__getReference); @@ -218624,6 +219750,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_ID3DXEffect___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SAreaFileWrapper__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SAreaFileWrapper__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_Cursor__getReference); @@ -218647,6 +219779,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const__D3DXMACRO__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray<__POSITION>", "VariableArray<__POSITION>", {}, NULL); + tolua_beginmodule(L, "VariableArray<__POSITION>"); + tolua_function(L, "getReference", &tolua_function_VariableArray___POSITION__getReference); + tolua_function(L, "set", &tolua_function_VariableArray___POSITION__set); + tolua_constant(L, "sizeof", sizeof(VariableArray<__POSITION>)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_const_unsigned___int16__get); @@ -218728,6 +219866,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVisibilityMapEllipse__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CColorRange__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CColorRange__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray<_iobuf>", "VariableArray<_iobuf>", {}, NULL); tolua_beginmodule(L, "VariableArray<_iobuf>"); tolua_function(L, "getReference", &tolua_function_VariableArray__iobuf__getReference); @@ -218957,6 +220101,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CallInfo__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CWeaponIdentification__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CWeaponIdentification__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CVariableHash__getReference); @@ -218975,6 +220125,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVIDPALETTE_COLOR__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CResTile__getReference); @@ -219007,6 +220163,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CPathNode___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CParticle__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CParticle__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CSnowFlake__getReference); @@ -219019,6 +220181,24 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CRainDrop__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CMusicPosition__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CMusicPosition__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CImmunitiesItemTypeEquip__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CImmunitiesItemTypeEquip__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameTimer__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameTimer__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_CGameRemoteObjectListEntry___get); @@ -219038,6 +220218,36 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameRemoteObjectControlChange__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameOptions__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameOptions__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameJournalEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameJournalEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CDeathSound__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CDeathSound__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CColorEffect__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CColorEffect__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CBounceEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CBounceEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_BAMHEADERV2__getReference); @@ -219197,6 +220407,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const_CString__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CFeedbackEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CFeedbackEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CSpawnVar__getReference); @@ -219248,6 +220464,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "getReference", &tolua_function_VariableArray_const_CPoint__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAOEEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAOEEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CPersistantEffect__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CPersistantEffect__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CObject__getReference); @@ -219279,6 +220507,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CMapStringToString__CAssoc___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CVoice__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CVoice__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray>", "VariableArray>", {}, NULL); tolua_beginmodule(L, "VariableArray>"); tolua_function(L, "getReference", &tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReference); @@ -219297,6 +220531,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CTypedPtrList_CPtrList_long___CNode__set); tolua_constant(L, "sizeof", sizeof(VariableArray::CNode>)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CTimer__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CTimer__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CStringList__getReference); @@ -219321,12 +220561,30 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CAIResponseSet__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAIConditionResponse__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAIConditionResponse__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameButtonList__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CGameButtonList__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAIResponse__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAIResponse__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CWarp__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CWarp__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CMemINISection__getReference); @@ -219363,6 +220621,24 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CObList__CNode__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CMessage__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CMessage__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CMemINIValue__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CMemINIValue__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameAreaClairvoyanceEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameAreaClairvoyanceEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CFile__getReference); @@ -219484,6 +220760,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSoundMixerImp__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSearchRequest__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSearchRequest__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenMovies__getReference); @@ -219568,6 +220850,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVidCellFont__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CPortraitIcon__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CPortraitIcon__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenCreateChar__getReference); @@ -219640,6 +220928,42 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CAreaFileProjectileObject__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CCriticalEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CCriticalEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameSprite__GroundItem__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameSprite__GroundItem__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CImmunitiesItemEquip__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CImmunitiesItemEquip__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CImmunitySpell__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CImmunitySpell__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CMoveListEntry__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CMoveListEntry__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CCreatureFileKnownSpell__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CCreatureFileKnownSpell__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_WED_LayerHeader_st__getReference); @@ -219708,12 +221032,30 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CVVCHashEntry__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CVEFEvent__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CVEFEvent__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CTiledObject__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CTiledObject__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CStoreFileSpell__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CStoreFileSpell__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CStoreFileItem__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CStoreFileItem__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CStoreFileDrinks__getReference); @@ -219726,6 +221068,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CSpell__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSequenceSound__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSequenceSound__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenWorldMap__getReference); @@ -219744,6 +221092,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CScreenWizSpell__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenStoreItem__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CScreenStoreItem__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenPriestSpell__getReference); @@ -219774,6 +221128,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CScreenChapter__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSavedGameStoredLocation__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSavedGameStoredLocation__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CPlex__getReference); @@ -219804,12 +221164,24 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameEffectBase__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameEffect__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameEffect__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameEffectDamage__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CGameEffectDamage__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CGameEffectUsability__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CGameEffectUsability__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CGameAnimationType__getReference); @@ -219822,6 +221194,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CDerivedStats__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CCreatureFileMemorizedSpell__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CCreatureFileMemorizedSpell__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CCreatureFileItem__getReference); @@ -219847,6 +221225,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_GCObject___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CBlood__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CBlood__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CBaldurProjector__getReference); @@ -219859,22 +221243,64 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CBaldurChitin__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaUserNote__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAreaUserNote__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaFileContainer__getReference); tolua_function(L, "set", &tolua_function_VariableArray_CAreaFileContainer__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAreaFileCharacterEntryPoint__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAreaFileCharacterEntryPoint__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAIObjectType__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAIObjectType__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CAIObjectType__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAIAction__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAIAction__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CAIAction__getReference); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSpawn__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSpawn__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSelectiveWeaponType__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSelectiveWeaponType__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CSelectiveBonus__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CSelectiveBonus__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CScreenStore__getReference); @@ -219888,6 +221314,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameObject___set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CProjectile__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CProjectile__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CProjectileBAM__getReference); @@ -219918,6 +221350,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CObjectMarker__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CAITrigger__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CAITrigger__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_const_CAITrigger__getReference); @@ -219948,6 +221386,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_CGameContainer__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_CContingency__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_CContingency__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_wchar_t__get); @@ -220298,6 +221742,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "flags", offsetoftype(flags, slicedRect)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "_820A8B7015E7E0FD9144A7C186FBF075", "_820A8B7015E7E0FD9144A7C186FBF075", {}, NULL); + tolua_beginmodule(L, "_820A8B7015E7E0FD9144A7C186FBF075"); + tolua_variable(L, "pt", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_pt, NULL); + tolua_variable(L, "on", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_on, tolua_set__820A8B7015E7E0FD9144A7C186FBF075_on); + tolua_variable(L, "reference_on", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_reference_on, NULL); + tolua_variable(L, "text", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_text, NULL); + tolua_variable(L, "r", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_r, NULL); + tolua_variable(L, "count", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_count, tolua_set__820A8B7015E7E0FD9144A7C186FBF075_count); + tolua_variable(L, "reference_count", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_reference_count, NULL); + tolua_variable(L, "lastText", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_lastText, NULL); + tolua_variable(L, "playedSound", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_playedSound, tolua_set__820A8B7015E7E0FD9144A7C186FBF075_playedSound); + tolua_variable(L, "reference_playedSound", tolua_get__820A8B7015E7E0FD9144A7C186FBF075_reference_playedSound, NULL); + tolua_constant(L, "sizeof", sizeof(_820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constantstring(L, "usertype_pt", "SDL_Point"); + tolua_constantstring(L, "usertype_on", "Primitive"); + tolua_constantstring(L, "usertype_text", "ConstCharString"); + tolua_constantstring(L, "usertype_r", "SDL_Rect"); + tolua_constantstring(L, "usertype_count", "Primitive"); + tolua_constantstring(L, "usertype_lastText", "ConstCharString"); + tolua_constantstring(L, "usertype_playedSound", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "pt", offsetoftype(pt, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constant(L, "on", offsetoftype(on, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constant(L, "text", offsetoftype(text, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constant(L, "r", offsetoftype(r, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constant(L, "count", offsetoftype(count, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constant(L, "lastText", offsetoftype(lastText, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_constant(L, "playedSound", offsetoftype(playedSound, _820A8B7015E7E0FD9144A7C186FBF075)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "_9B9540D9920A90D57A3D80DDD1A70514", "_9B9540D9920A90D57A3D80DDD1A70514", {}, NULL); tolua_beginmodule(L, "_9B9540D9920A90D57A3D80DDD1A70514"); tolua_variable(L, "start", tolua_get__9B9540D9920A90D57A3D80DDD1A70514_start, NULL); @@ -228876,6 +230351,50 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_double___reference, tolua_set_Pointer_Primitive_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); @@ -228887,15 +230406,59 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int64_t___reference, tolua_set_Pointer_Primitive_int64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -228909,15 +230472,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -228931,6 +230516,116 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int64___reference, tolua_set_Pointer_Primitive___int64___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int64___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int64>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_DWORD___reference, tolua_set_Pointer_Primitive_DWORD___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_DWORD___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); @@ -228942,37 +230637,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint32_t___reference, tolua_set_Pointer_Primitive_uint32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -228997,103 +230681,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_double___reference, tolua_set_Pointer_Primitive_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int64___reference, tolua_set_Pointer_Primitive___int64___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int64___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int64>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -229107,92 +230714,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_DWORD___reference, tolua_set_Pointer_Primitive_DWORD___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_DWORD___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int64_t___reference, tolua_set_Pointer_Primitive_int64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -229206,72 +230747,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const_void___reference, tolua_set_Pointer_const_void___reference); @@ -229625,6 +231100,18 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", {}, NULL); + tolua_beginmodule(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + tolua_variable(L, "reference", tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference); + tolua_function(L, "getValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); + tolua_constantstring(L, "usertype_reference", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference, tolua_set_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference); @@ -229646,18 +231133,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", {}, NULL); - tolua_beginmodule(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - tolua_variable(L, "reference", tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference); - tolua_function(L, "getValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue); - tolua_function(L, "setValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); - tolua_constantstring(L, "usertype_reference", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const_char___reference, tolua_set_Pointer_const_char___reference); @@ -230983,15 +232458,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -231005,6 +232491,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_byte___reference, tolua_set_Pointer_VariableArray_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); @@ -231016,28 +232513,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081BB___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); tolua_beginmodule(L, "Pointer*>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CRect____reference, tolua_set_Pointer_VariableArray_CRect____reference); @@ -231261,6 +232736,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>", "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>", {}, NULL); + tolua_beginmodule(L, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>"); + tolua_variable(L, "reference", tolua_get_Pointer__820A8B7015E7E0FD9144A7C186FBF075__reference, tolua_set_Pointer__820A8B7015E7E0FD9144A7C186FBF075__reference); + tolua_function(L, "setValue", &tolua_function_Pointer__820A8B7015E7E0FD9144A7C186FBF075__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer<_820A8B7015E7E0FD9144A7C186FBF075>)); + tolua_constantstring(L, "usertype_reference", "_820A8B7015E7E0FD9144A7C186FBF075"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer<_820A8B7015E7E0FD9144A7C186FBF075>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer<_9B9540D9920A90D57A3D80DDD1A70514>", "Pointer<_9B9540D9920A90D57A3D80DDD1A70514>", {}, NULL); tolua_beginmodule(L, "Pointer<_9B9540D9920A90D57A3D80DDD1A70514>"); tolua_variable(L, "reference", tolua_get_Pointer__9B9540D9920A90D57A3D80DDD1A70514__reference, tolua_set_Pointer__9B9540D9920A90D57A3D80DDD1A70514__reference); @@ -249571,6 +251057,10 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "DrawQuad", tolua_function_DrawQuad); tolua_variable(L, "afxPchNil", tolua_get_afxPchNil, NULL); tolua_variable(L, "capture", tolua_get_capture, NULL); + tolua_variable(L, "fingerDown", tolua_get_fingerDown, tolua_set_fingerDown); + tolua_variable(L, "reference_fingerDown", tolua_get_reference_fingerDown, NULL); + tolua_variable(L, "g_backgroundMenu", tolua_get_g_backgroundMenu, tolua_set_g_backgroundMenu); + tolua_variable(L, "reference_g_backgroundMenu", tolua_get_reference_g_backgroundMenu, NULL); tolua_variable(L, "g_drawBackend", tolua_get_g_drawBackend, tolua_set_g_drawBackend); tolua_variable(L, "reference_g_drawBackend", tolua_get_reference_g_drawBackend, NULL); tolua_variable(L, "g_keywords", tolua_get_g_keywords, NULL); @@ -249591,6 +251081,7 @@ int OpenBindingsInternal(lua_State* L) tolua_variable(L, "numMenus", tolua_get_numMenus, tolua_set_numMenus); tolua_variable(L, "reference_numMenus", tolua_get_reference_numMenus, NULL); tolua_variable(L, "resources", tolua_get_resources, NULL); + tolua_variable(L, "tooltip", tolua_get_tooltip, NULL); tolua_variable(L, "transition", tolua_get_transition, NULL); tolua_variable(L, "yy_action", tolua_get_yy_action, NULL); tolua_variable(L, "yy_default", tolua_get_yy_default, NULL); From 9d4dde655895af6bd68070339d8c98dedec0684c Mon Sep 17 00:00:00 2001 From: Bubb13 <36863623+Bubb13@users.noreply.github.com> Date: Wed, 13 May 2026 23:57:36 -0700 Subject: [PATCH 6/6] Add profiler and tweak FPS uncap code to lessen stutters --- EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj | 9 + EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj.filters | 17 + .../EEex-v2.6.6.0/engine_function_names.hpp | 8 + .../headers/EEex-v2.6.6.0/profiler.hpp | 30 + .../headers/EEex-v2.6.6.0/time_util.hpp | 10 +- .../Baldur-v2.6.6.0_generated.h | 262 + .../scripts/generate_bindings/in/bindings.txt | 2 + .../in/ignore_header_types.txt | 1 + .../generate_bindings/in/manual_types.txt | 1 + EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp | 20 +- ...r-v2.6.6.0_generated_internal_pointers.cpp | 4 + .../Generated/EEexLua_generated.cpp | 56 +- .../EEex-v2.6.6.0/engine_function_names.cpp | 101 + EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp | 7 + .../source/EEex-v2.6.6.0/profiler.cpp | 445 + .../EEex-v2.6.6.0/profiler_assembly.asm | 39 + .../source/EEex-v2.6.6.0/time_util.cpp | 56 +- .../source/EEex-v2.6.6.0/uncap_fps.cpp | 138 +- .../headers/common/lua_provider_api_core.h | 11 + .../Baldur-v2.6.6.0_generated.h | 260 + .../in/ignore_header_types.txt | 1 + .../generate_bindings/in/manual_types.txt | 1 + ...r-v2.6.6.0_generated_internal_pointers.cpp | 2 + .../Generated/EEexLua_generated.cpp | 16996 ++++++++++------ .../header/LuaJITProvider/lua_pointers.h | 3 + .../source/LuaJITProvider/lua_pointers.cpp | 5 + .../source/LuaJITProvider/lua_provider.cpp | 1 + .../header/LuaProvider52/lua_pointers.h | 3 + .../source/LuaProvider52/lua_pointers.cpp | 5 + .../source/LuaProvider52/lua_provider.cpp | 1 + lib/Win32/minizip.lib | Bin 1094096 -> 1094422 bytes lib/Win32/minizip.pdb | Bin 135168 -> 135168 bytes lib/Win32/zlibstatic.lib | Bin 358566 -> 359418 bytes lib/Win32/zlibstatic.pdb | Bin 94208 -> 94208 bytes lib/x64/minizip.lib | Bin 1113582 -> 1113924 bytes lib/x64/minizip.pdb | Bin 135168 -> 135168 bytes lib/x64/zlibstatic.lib | Bin 384984 -> 385664 bytes lib/x64/zlibstatic.pdb | Bin 94208 -> 94208 bytes .../generate_bindings/generate_bindings.py | 2 +- 39 files changed, 12291 insertions(+), 6206 deletions(-) create mode 100644 EEex-v2.6.6.0/headers/EEex-v2.6.6.0/engine_function_names.hpp create mode 100644 EEex-v2.6.6.0/headers/EEex-v2.6.6.0/profiler.hpp create mode 100644 EEex-v2.6.6.0/source/EEex-v2.6.6.0/engine_function_names.cpp create mode 100644 EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler.cpp create mode 100644 EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler_assembly.asm diff --git a/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj b/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj index f354478..206c946 100644 --- a/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj +++ b/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj @@ -15,6 +15,7 @@ + @@ -23,6 +24,7 @@ + @@ -33,9 +35,11 @@ + + @@ -46,6 +50,9 @@ + + + 16.0 Win32Proj @@ -69,6 +76,7 @@ + @@ -146,5 +154,6 @@ + \ No newline at end of file diff --git a/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj.filters b/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj.filters index 8cfa8c8..d5c3005 100644 --- a/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj.filters +++ b/EEex-v2.6.6.0/EEex-v2.6.6.0.vcxproj.filters @@ -84,6 +84,12 @@ Source Files\EEex-v2.6.6.0 + + Source Files\EEex-v2.6.6.0 + + + Source Files\EEex-v2.6.6.0 + @@ -122,6 +128,12 @@ Header Files\EEex-v2.6.6.0 + + Header Files\EEex-v2.6.6.0 + + + Header Files\EEex-v2.6.6.0 + @@ -131,4 +143,9 @@ Build Tasks + + + Source Files\EEex-v2.6.6.0 + + \ No newline at end of file diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/engine_function_names.hpp b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/engine_function_names.hpp new file mode 100644 index 0000000..7cd1fe3 --- /dev/null +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/engine_function_names.hpp @@ -0,0 +1,8 @@ + +#pragma once + +#include + +const std::string& GetContainingFunctionName(uintptr_t address); +const std::string& GetFunctionName(uintptr_t address); +void LoadFunctionNames(); diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/profiler.hpp b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/profiler.hpp new file mode 100644 index 0000000..6829043 --- /dev/null +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/profiler.hpp @@ -0,0 +1,30 @@ + +#pragma once + +#include "time_util.hpp" + +enum class TraceType +{ + NONE, + NORMAL, + SPAM +}; + +#pragma pack(push, 1) +struct SavedRegisters +{ + byte xmm1[16]; + byte xmm0[16]; + uintptr_t r11; + uintptr_t r10; + uintptr_t r9; + uintptr_t r8; + uintptr_t rdx; + uintptr_t rcx; + uintptr_t rax; +}; +#pragma pack(pop) + +void Profiler_StartTrace(TimeType startTime, TraceType toStartType); +void __stdcall Profiler_Trace(uintptr_t funcAddress, const SavedRegisters* savedRegisters, void* stackPtr); +void Profiler_RegisterTrace(const char* traceName, uintptr_t address, TimeType logTimeThreshold); diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/time_util.hpp b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/time_util.hpp index 545e4d3..d8d2257 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/time_util.hpp +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0/time_util.hpp @@ -1,11 +1,17 @@ #pragma once +//-----------------------------// +// Type Defs // +//-----------------------------// + +typedef long long TimeType; + //-----------------------------// // Functions // //-----------------------------// DWORD getHighestRefreshRate(); -long long getInitTime(); -long long getTime(); +TimeType getInitTime(); +TimeType getTime(); void initTimeUtil(); diff --git a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index c2967d7..0b0048d 100644 --- a/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/EEex-v2.6.6.0/headers/EEex-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -195,10 +195,14 @@ struct Item_Header_st; struct Item_ability_st; struct Item_effect_st; union SDL_Event; +struct SDL_MessageBoxButtonData; +struct SDL_MessageBoxColorScheme; struct SDL_PixelFormat; struct SDL_Point; +struct SDL_PrivateGLESData; struct SDL_Rect; struct SDL_Surface; +struct SDL_VideoDevice; struct SDL_Window; struct STR_RES; struct Spell_Header_st; @@ -258,6 +262,11 @@ struct SDL_Cursor SDL_Cursor() = delete; }; +struct SDL_PrivateGLESData +{ + SDL_PrivateGLESData() = delete; +}; + struct SDL_WindowUserData { char* name; @@ -1559,6 +1568,15 @@ struct SDL_version SDL_version() = delete; }; +struct SDL_MessageBoxColor +{ + unsigned __int8 r; + unsigned __int8 g; + unsigned __int8 b; + + SDL_MessageBoxColor() = delete; +}; + struct SDL_Color { unsigned __int8 r; @@ -2013,6 +2031,31 @@ struct SDL_SysWMmsg SDL_SysWMmsg() = delete; }; +struct SDL_SysWMinfo +{ + union info_t + { + struct win_t + { + HWND__* window; + HDC__* hdc; + + win_t() = delete; + }; + + SDL_SysWMinfo::info_t::win_t win; + int dummy; + + info_t() = delete; + }; + + SDL_version version; + SDL_SYSWM_TYPE subsystem; + SDL_SysWMinfo::info_t info; + + SDL_SysWMinfo() = delete; +}; + struct SDL_SysWMEvent { unsigned int type; @@ -2022,6 +2065,15 @@ struct SDL_SysWMEvent SDL_SysWMEvent() = delete; }; +struct SDL_ShapeDriver +{ + SDL_WindowShaper* (__fastcall *CreateShaper)(SDL_Window*); + int (__fastcall *SetWindowShape)(SDL_WindowShaper*, SDL_Surface*, SDL_WindowShapeMode*); + int (__fastcall *ResizeWindowShape)(SDL_Window*); + + SDL_ShapeDriver() = delete; +}; + struct SDL_QuitEvent { unsigned int type; @@ -2099,6 +2151,28 @@ struct SDL_MouseButtonEvent SDL_MouseButtonEvent() = delete; }; +struct SDL_MessageBoxData +{ + unsigned int flags; + SDL_Window* window; + const char* title; + const char* message; + int numbuttons; + const SDL_MessageBoxButtonData* buttons; + const SDL_MessageBoxColorScheme* colorScheme; + + SDL_MessageBoxData() = delete; +}; + +struct SDL_MessageBoxButtonData +{ + unsigned int flags; + int buttonid; + const char* text; + + SDL_MessageBoxButtonData() = delete; +}; + struct SDL_Keysym { SDL_Scancode scancode; @@ -2188,6 +2262,53 @@ struct SDL_JoyAxisEvent SDL_JoyAxisEvent() = delete; }; +struct SDL_GLDriverData +{ + SDL_bool HAS_WGL_ARB_pixel_format; + SDL_bool HAS_WGL_EXT_swap_control_tear; + SDL_bool HAS_WGL_EXT_create_context_es2_profile; + SDL_bool HAS_WGL_ARB_context_flush_control; + void* (__fastcall *wglGetProcAddress)(const char*); + HGLRC__* (__fastcall *wglCreateContext)(HDC__*); + int (__fastcall *wglDeleteContext)(HGLRC__*); + int (__fastcall *wglMakeCurrent)(HDC__*, HGLRC__*); + int (__fastcall *wglShareLists)(HGLRC__*, HGLRC__*); + int (__fastcall *wglChoosePixelFormatARB)(HDC__*, const int*, const float*, unsigned int, int*, unsigned int*); + int (__fastcall *wglGetPixelFormatAttribivARB)(HDC__*, int, int, unsigned int, const int*, int*); + int (__fastcall *wglSwapIntervalEXT)(int); + int (__fastcall *wglGetSwapIntervalEXT)(); + + SDL_GLDriverData() = delete; +}; + +struct SDL_EGL_VideoData +{ + void* egl_dll_handle; + void* dll_handle; + void* egl_display; + void* egl_config; + int egl_swapinterval; + void* (__fastcall *eglGetDisplay)(HDC__*); + unsigned int (__fastcall *eglInitialize)(void*, int*, int*); + unsigned int (__fastcall *eglTerminate)(void*); + void* (__fastcall *eglGetProcAddress)(const char*); + unsigned int (__fastcall *eglChooseConfig)(void*, const int*, void**, int, int*); + void* (__fastcall *eglCreateContext)(void*, void*, void*, const int*); + unsigned int (__fastcall *eglDestroyContext)(void*, void*); + void* (__fastcall *eglCreateWindowSurface)(void*, void*, HWND__*, const int*); + unsigned int (__fastcall *eglDestroySurface)(void*, void*); + unsigned int (__fastcall *eglMakeCurrent)(void*, void*, void*, void*); + unsigned int (__fastcall *eglSwapBuffers)(void*, void*); + unsigned int (__fastcall *eglSwapInterval)(void*, int); + const char* (__fastcall *eglQueryString)(void*, int); + unsigned int (__fastcall *eglGetConfigAttrib)(void*, void*, int, int*); + unsigned int (__fastcall *eglWaitNative)(int); + unsigned int (__fastcall *eglWaitGL)(); + unsigned int (__fastcall *eglBindAPI)(unsigned int); + + SDL_EGL_VideoData() = delete; +}; + struct SDL_DropEvent { unsigned int type; @@ -2222,6 +2343,21 @@ struct SDL_DisplayMode SDL_DisplayMode() = delete; }; +struct SDL_VideoDisplay +{ + char* name; + int max_display_modes; + int num_display_modes; + SDL_DisplayMode* display_modes; + SDL_DisplayMode desktop_mode; + SDL_DisplayMode current_mode; + SDL_Window* fullscreen_window; + SDL_VideoDevice* device; + void* driverdata; + + SDL_VideoDisplay() = delete; +}; + struct SDL_ControllerDeviceEvent { unsigned int type; @@ -4754,6 +4890,8 @@ namespace EEex extern int UncapFPS_BusyWaitThreshold; extern bool UncapFPS_Enabled; extern int UncapFPS_FPSLimit; + extern bool UncapFPS_FPSLimitEnabled; + extern int UncapFPS_LuaGCSteps; extern bool UncapFPS_RemoveMiddleMouseScrollMultiplier; uiItem* CreateTemplateFromCopy(lua_State* L, const char* menuName, const char* templateName, uiItem* pItem); @@ -9178,6 +9316,120 @@ struct font_t font_t() = delete; }; +struct SDL_VideoDevice +{ + struct gl_config_t + { + int red_size; + int green_size; + int blue_size; + int alpha_size; + int depth_size; + int buffer_size; + int stencil_size; + int double_buffer; + int accum_red_size; + int accum_green_size; + int accum_blue_size; + int accum_alpha_size; + int stereo; + int multisamplebuffers; + int multisamplesamples; + int accelerated; + int major_version; + int minor_version; + int flags; + int profile_mask; + int share_with_current_context; + int release_behavior; + int framebuffer_srgb_capable; + int retained_backing; + int driver_loaded; + Array driver_path; + void* dll_handle; + + gl_config_t() = delete; + }; + + const char* name; + int (__fastcall *VideoInit)(SDL_VideoDevice*); + void (__fastcall *VideoQuit)(SDL_VideoDevice*); + int (__fastcall *GetDisplayBounds)(SDL_VideoDevice*, SDL_VideoDisplay*, SDL_Rect*); + int (__fastcall *GetDisplayDPI)(SDL_VideoDevice*, SDL_VideoDisplay*, float*, float*, float*); + void (__fastcall *GetDisplayModes)(SDL_VideoDevice*, SDL_VideoDisplay*); + int (__fastcall *SetDisplayMode)(SDL_VideoDevice*, SDL_VideoDisplay*, SDL_DisplayMode*); + int (__fastcall *CreateWindowA)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *CreateWindowFrom)(SDL_VideoDevice*, SDL_Window*, const void*); + void (__fastcall *SetWindowTitle)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowIcon)(SDL_VideoDevice*, SDL_Window*, SDL_Surface*); + void (__fastcall *SetWindowPosition)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowSize)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowMinimumSize)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowMaximumSize)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *ShowWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *HideWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *RaiseWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *MaximizeWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *MinimizeWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *RestoreWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowBordered)(SDL_VideoDevice*, SDL_Window*, SDL_bool); + void (__fastcall *SetWindowFullscreen)(SDL_VideoDevice*, SDL_Window*, SDL_VideoDisplay*, SDL_bool); + int (__fastcall *SetWindowGammaRamp)(SDL_VideoDevice*, SDL_Window*, const unsigned __int16*); + int (__fastcall *GetWindowGammaRamp)(SDL_VideoDevice*, SDL_Window*, wchar_t*); + void (__fastcall *SetWindowGrab)(SDL_VideoDevice*, SDL_Window*, SDL_bool); + void (__fastcall *DestroyWindow)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *CreateWindowFramebuffer)(SDL_VideoDevice*, SDL_Window*, unsigned int*, void**, int*); + int (__fastcall *UpdateWindowFramebuffer)(SDL_VideoDevice*, SDL_Window*, const SDL_Rect*, int); + void (__fastcall *DestroyWindowFramebuffer)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *OnWindowEnter)(SDL_VideoDevice*, SDL_Window*); + SDL_ShapeDriver shape_driver; + SDL_bool (__fastcall *GetWindowWMInfo)(SDL_VideoDevice*, SDL_Window*, SDL_SysWMinfo*); + int (__fastcall *GL_LoadLibrary)(SDL_VideoDevice*, const char*); + void* (__fastcall *GL_GetProcAddress)(SDL_VideoDevice*, const char*); + void (__fastcall *GL_UnloadLibrary)(SDL_VideoDevice*); + void* (__fastcall *GL_CreateContext)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *GL_MakeCurrent)(SDL_VideoDevice*, SDL_Window*, void*); + void (__fastcall *GL_GetDrawableSize)(SDL_VideoDevice*, SDL_Window*, int*, int*); + int (__fastcall *GL_SetSwapInterval)(SDL_VideoDevice*, int); + int (__fastcall *GL_GetSwapInterval)(SDL_VideoDevice*); + void (__fastcall *GL_SwapWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *GL_DeleteContext)(SDL_VideoDevice*, void*); + void (__fastcall *PumpEvents)(SDL_VideoDevice*); + void (__fastcall *SuspendScreenSaver)(SDL_VideoDevice*); + void (__fastcall *StartTextInput)(SDL_VideoDevice*); + void (__fastcall *StopTextInput)(SDL_VideoDevice*); + void (__fastcall *SetTextInputRect)(SDL_VideoDevice*, SDL_Rect*); + SDL_bool (__fastcall *HasScreenKeyboardSupport)(SDL_VideoDevice*); + void (__fastcall *ShowScreenKeyboard)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *HideScreenKeyboard)(SDL_VideoDevice*, SDL_Window*); + SDL_bool (__fastcall *IsScreenKeyboardShown)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *SetClipboardText)(SDL_VideoDevice*, const char*); + char* (__fastcall *GetClipboardText)(SDL_VideoDevice*); + SDL_bool (__fastcall *HasClipboardText)(SDL_VideoDevice*); + int (__fastcall *ShowMessageBox)(SDL_VideoDevice*, const SDL_MessageBoxData*, int*); + int (__fastcall *SetWindowHitTest)(SDL_Window*, SDL_bool); + SDL_bool suspend_screensaver; + int num_displays; + SDL_VideoDisplay* displays; + SDL_Window* windows; + SDL_Window* grabbed_window; + unsigned __int8 window_magic; + unsigned int next_object_id; + char* clipboard_text; + SDL_VideoDevice::gl_config_t gl_config; + SDL_Window* current_glwin; + void* current_glctx; + unsigned int current_glwin_tls; + unsigned int current_glctx_tls; + void* driverdata; + SDL_GLDriverData* gl_data; + SDL_EGL_VideoData* egl_data; + SDL_PrivateGLESData* gles_data; + void (__fastcall *free)(SDL_VideoDevice*); + + SDL_VideoDevice() = delete; +}; + struct SDL_PixelFormat { unsigned int format; @@ -9203,6 +9455,13 @@ struct SDL_PixelFormat SDL_PixelFormat() = delete; }; +struct SDL_MessageBoxColorScheme +{ + Array colors; + + SDL_MessageBoxColorScheme() = delete; +}; + template struct LCharString { @@ -9459,6 +9718,9 @@ extern type_restoreMenuStack p_restoreMenuStack; typedef void (*type_saveMenuStack)(); extern type_saveMenuStack p_saveMenuStack; +typedef SDL_VideoDisplay* (*type_SDL_GetDisplayForWindow)(SDL_Window* window); +extern type_SDL_GetDisplayForWindow p_SDL_GetDisplayForWindow; + typedef int (*type_SDL_GetKeyFromName)(const char* name); extern type_SDL_GetKeyFromName p_SDL_GetKeyFromName; diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/bindings.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/bindings.txt index 0f49e82..f4bc78e 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/bindings.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/bindings.txt @@ -121,6 +121,8 @@ namespace EEex int UncapFPS_BusyWaitThreshold; bool UncapFPS_Enabled; int UncapFPS_FPSLimit; + bool UncapFPS_FPSLimitEnabled; + int UncapFPS_LuaGCSteps; bool UncapFPS_RemoveMiddleMouseScrollMultiplier; // Functions diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt index a64bd70..363dfce 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt @@ -68,6 +68,7 @@ GCheader GCObject global_State HDC__ +HGLRC__ HMONITOR__ HWND__ ID3DXBaseEffect diff --git a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index f513aba..097bdf7 100644 --- a/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/EEex-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1651,6 +1651,7 @@ uiMenu* findMenu(primitive const char* name, int panel, int state); int rand(); void restoreMenuStack(); void saveMenuStack(); +SDL_VideoDisplay* SDL_GetDisplayForWindow(SDL_Window* window); int SDL_GetKeyFromName(primitive const char* name); primitive char* __cdecl SDL_GetKeyName(int key); uint SDL_GetWindowFlags(SDL_Window* window); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp index 2dfa92d..9a80717 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/EEex.cpp @@ -8,9 +8,11 @@ #include "Baldur-v2.6.6.0_generated.h" #include "EEex.h" +#include "engine_function_names.hpp" #include "infinity_loader_util_api.h" #include "lua_util.hpp" #include "menu_util.hpp" +#include "profiler.hpp" #include "time_util.hpp" #include "uncap_fps.hpp" #include "util.hpp" @@ -385,11 +387,7 @@ bool EEex::IsMarshallingCopy() { // Stutter Util // //--------------------------------// -long long currentMicroseconds() { - return std::chrono::duration_cast(std::chrono::system_clock::now().time_since_epoch()).count(); -} - -void exitStutterLog(const char *const name, long long timeTaken) { +void exitStutterLog(const char *const name, TimeType timeTaken) { lua_State *const L = *p_g_lua; lua_getglobal(L, "EEex_StutterDetector_Private_Times"); // 1 [ ..., EEex_StutterDetector_Private_Times ] @@ -449,9 +447,9 @@ RetType logStutter(const char* name, std::function func) { bool oldTopLevel = topLevel; topLevel = false; - long long startTime = currentMicroseconds(); + TimeType startTime = getTime(); RetType ret = func(); - long long timeTaken = currentMicroseconds() - startTime; + TimeType timeTaken = getTime() - startTime; topLevel = oldTopLevel; exitStutterLog(name, timeTaken); return ret; @@ -467,9 +465,9 @@ void logStutter(const char* name, std::function func) { bool oldTopLevel = topLevel; topLevel = false; - long long startTime = currentMicroseconds(); + TimeType startTime = getTime(); func(); - long long timeTaken = currentMicroseconds() - startTime; + TimeType timeTaken = getTime() - startTime; topLevel = oldTopLevel; exitStutterLog(name, timeTaken); } @@ -5366,4 +5364,8 @@ void EEex::InitEEex() { EEex::Projectile_LuaHook_GlobalMutators_Enabled = false; initProjectileMutator(); EEex::StutterDetector_Enabled = false; + + //LoadFunctionNames(); + //Profiler_RegisterTrace("Render", 0x140136300, 15); + //Profiler_RegisterTrace("AI", 0x140131BF0, 5); } diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index 716ae5a..4e470c8 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -15,6 +15,8 @@ bool EEex::StutterDetector_Enabled; int EEex::UncapFPS_BusyWaitThreshold; bool EEex::UncapFPS_Enabled; int EEex::UncapFPS_FPSLimit; +bool EEex::UncapFPS_FPSLimitEnabled; +int EEex::UncapFPS_LuaGCSteps; bool EEex::UncapFPS_RemoveMiddleMouseScrollMultiplier; CTimerWorld::type_StartTime CTimerWorld::p_StartTime; CString::type_Construct_Overload_String CString::p_Construct_Overload_String; @@ -67,6 +69,7 @@ type_findMenu p_findMenu; type_rand p_rand; type_restoreMenuStack p_restoreMenuStack; type_saveMenuStack p_saveMenuStack; +type_SDL_GetDisplayForWindow p_SDL_GetDisplayForWindow; type_SDL_GetKeyFromName p_SDL_GetKeyFromName; type_SDL_GetKeyName p_SDL_GetKeyName; type_SDL_GetWindowFlags p_SDL_GetWindowFlags; @@ -404,6 +407,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("rand"), p_rand); attemptFillPointer(TEXT("restoreMenuStack"), p_restoreMenuStack); attemptFillPointer(TEXT("saveMenuStack"), p_saveMenuStack); + attemptFillPointer(TEXT("SDL_GetDisplayForWindow"), p_SDL_GetDisplayForWindow); attemptFillPointer(TEXT("SDL_GetKeyFromName"), p_SDL_GetKeyFromName); attemptFillPointer(TEXT("SDL_GetKeyName"), p_SDL_GetKeyName); attemptFillPointer(TEXT("SDL_GetWindowFlags"), p_SDL_GetWindowFlags); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/EEexLua_generated.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/EEexLua_generated.cpp index 432028a..686f498 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/EEexLua_generated.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/Generated/EEexLua_generated.cpp @@ -129,6 +129,42 @@ static int tolua_get_EEex_reference_UncapFPS_FPSLimit(lua_State* L) return 1; } +static int tolua_get_EEex_UncapFPS_FPSLimitEnabled(lua_State* L) +{ + tolua_pushboolean(L, (bool)EEex::UncapFPS_FPSLimitEnabled); + return 1; +} + +static int tolua_set_EEex_UncapFPS_FPSLimitEnabled(lua_State* L) +{ + EEex::UncapFPS_FPSLimitEnabled = tolua_setter_toboolean(L, "UncapFPS_FPSLimitEnabled"); + return 0; +} + +static int tolua_get_EEex_reference_UncapFPS_FPSLimitEnabled(lua_State* L) +{ + tolua_pushusertype(L, (void*)&EEex::UncapFPS_FPSLimitEnabled, "Primitive"); + return 1; +} + +static int tolua_get_EEex_UncapFPS_LuaGCSteps(lua_State* L) +{ + lua_pushinteger(L, (lua_Integer)EEex::UncapFPS_LuaGCSteps); + return 1; +} + +static int tolua_set_EEex_UncapFPS_LuaGCSteps(lua_State* L) +{ + EEex::UncapFPS_LuaGCSteps = tolua_setter_tointeger(L, "UncapFPS_LuaGCSteps"); + return 0; +} + +static int tolua_get_EEex_reference_UncapFPS_LuaGCSteps(lua_State* L) +{ + tolua_pushusertype(L, (void*)&EEex::UncapFPS_LuaGCSteps, "Primitive"); + return 1; +} + static int tolua_get_EEex_UncapFPS_RemoveMiddleMouseScrollMultiplier(lua_State* L) { tolua_pushboolean(L, (bool)EEex::UncapFPS_RemoveMiddleMouseScrollMultiplier); @@ -319,7 +355,7 @@ static int tolua_function_CGameSprite_getUUID(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getUUID'", NULL); - uint64_t returnVal = self->GetUUID(); + uint64_t returnVal = (self->GetUUID)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -335,6 +371,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "frameTableEntry_st::_anonymous_tag_"); tolua_usertype(L, "SDL_SysWMmsg"); tolua_usertype(L, "SDL_SysWMmsg::msg_t"); + tolua_usertype(L, "SDL_SysWMinfo"); + tolua_usertype(L, "SDL_SysWMinfo::info_t"); tolua_usertype(L, "Udata"); tolua_usertype(L, "TString"); tolua_usertype(L, "ISteamUserStats"); @@ -620,6 +658,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "EEex_CBaldurEngine"); tolua_usertype(L, "CDungeonMaster"); tolua_usertype(L, "uiItem"); + tolua_usertype(L, "SDL_VideoDevice"); tolua_usertype(L, "CResBinary"); tolua_usertype(L, "CMessageSetVariableAll"); tolua_usertype(L, "EngineGlobals"); @@ -824,6 +863,12 @@ int OpenBindingsInternal(lua_State* L) tolua_cclass(L, "SDL_SysWMmsg::msg_t", "SDL_SysWMmsg::msg_t", {}, NULL); tolua_beginmodule(L, "SDL_SysWMmsg::msg_t"); tolua_endmodule(L); + tolua_cclass(L, "SDL_SysWMinfo", "SDL_SysWMinfo", {}, NULL); + tolua_beginmodule(L, "SDL_SysWMinfo"); + tolua_endmodule(L); + tolua_cclass(L, "SDL_SysWMinfo::info_t", "SDL_SysWMinfo::info_t", {}, NULL); + tolua_beginmodule(L, "SDL_SysWMinfo::info_t"); + tolua_endmodule(L); tolua_cclass(L, "Udata", "Udata", {}, NULL); tolua_beginmodule(L, "Udata"); tolua_endmodule(L); @@ -882,6 +927,10 @@ int OpenBindingsInternal(lua_State* L) tolua_variable(L, "reference_UncapFPS_Enabled", tolua_get_EEex_reference_UncapFPS_Enabled, NULL); tolua_variable(L, "UncapFPS_FPSLimit", tolua_get_EEex_UncapFPS_FPSLimit, tolua_set_EEex_UncapFPS_FPSLimit); tolua_variable(L, "reference_UncapFPS_FPSLimit", tolua_get_EEex_reference_UncapFPS_FPSLimit, NULL); + tolua_variable(L, "UncapFPS_FPSLimitEnabled", tolua_get_EEex_UncapFPS_FPSLimitEnabled, tolua_set_EEex_UncapFPS_FPSLimitEnabled); + tolua_variable(L, "reference_UncapFPS_FPSLimitEnabled", tolua_get_EEex_reference_UncapFPS_FPSLimitEnabled, NULL); + tolua_variable(L, "UncapFPS_LuaGCSteps", tolua_get_EEex_UncapFPS_LuaGCSteps, tolua_set_EEex_UncapFPS_LuaGCSteps); + tolua_variable(L, "reference_UncapFPS_LuaGCSteps", tolua_get_EEex_reference_UncapFPS_LuaGCSteps, NULL); tolua_variable(L, "UncapFPS_RemoveMiddleMouseScrollMultiplier", tolua_get_EEex_UncapFPS_RemoveMiddleMouseScrollMultiplier, tolua_set_EEex_UncapFPS_RemoveMiddleMouseScrollMultiplier); tolua_variable(L, "reference_UncapFPS_RemoveMiddleMouseScrollMultiplier", tolua_get_EEex_reference_UncapFPS_RemoveMiddleMouseScrollMultiplier, NULL); tolua_function(L, "CreateTemplateFromCopy", &tolua_function_EEex_CreateTemplateFromCopy); @@ -917,6 +966,8 @@ int OpenBindingsInternal(lua_State* L) tolua_constantstring(L, "usertype_UncapFPS_BusyWaitThreshold", "Primitive"); tolua_constantstring(L, "usertype_UncapFPS_Enabled", "Primitive"); tolua_constantstring(L, "usertype_UncapFPS_FPSLimit", "Primitive"); + tolua_constantstring(L, "usertype_UncapFPS_FPSLimitEnabled", "Primitive"); + tolua_constantstring(L, "usertype_UncapFPS_LuaGCSteps", "Primitive"); tolua_constantstring(L, "usertype_UncapFPS_RemoveMiddleMouseScrollMultiplier", "Primitive"); tolua_endmodule(L); tolua_cclass(L, "EEex::ProjectileType", "EEex::ProjectileType", {"__int32"}, NULL); @@ -1749,6 +1800,9 @@ int OpenBindingsInternal(lua_State* L) tolua_cclass(L, "uiItem", "uiItem", {}, NULL); tolua_beginmodule(L, "uiItem"); tolua_endmodule(L); + tolua_cclass(L, "SDL_VideoDevice", "SDL_VideoDevice", {}, NULL); + tolua_beginmodule(L, "SDL_VideoDevice"); + tolua_endmodule(L); tolua_cclass(L, "CResBinary", "CResBinary", {"CRes"}, NULL); tolua_beginmodule(L, "CResBinary"); tolua_endmodule(L); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/engine_function_names.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/engine_function_names.cpp new file mode 100644 index 0000000..dc0ff7b --- /dev/null +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/engine_function_names.cpp @@ -0,0 +1,101 @@ + +#include +#include + +#include "engine_function_names.hpp" +#include "infinity_loader_common_api.h" + +/////////////// +// Constants // +/////////////// + +std::string EMPTY_STRING { "" }; + +///////////// +// Globals // +///////////// + +std::vector> addressToName{}; + +/////////////// +// Functions // +/////////////// + +const std::string& GetContainingFunctionName(uintptr_t address) +{ + const size_t size = addressToName.size(); + const size_t lastValidIndex = size - 1; + + size_t l = 0; + size_t r = size; + + while (l < r) + { + const size_t mid = (l + r) / 2; + const std::pair& pair = addressToName.at(mid); + + if (address >= pair.first) + { + if (pair.first == address || mid == lastValidIndex || address < addressToName.at(mid + 1).first) + { + return pair.second; + } + + l = mid + 1; + } + else + { + r = mid; + } + } + + return EMPTY_STRING; +} + +const std::string& GetFunctionName(uintptr_t address) +{ + size_t l = 0; + size_t r = addressToName.size(); + + while (l < r) + { + const size_t mid = (l + r) / 2; + const std::pair& pair = addressToName.at(mid); + + if (address < pair.first) + { + r = mid; + } + else if (pair.first == address) + { + return pair.second; + } + else + { + l = mid + 1; + } + } + + return EMPTY_STRING; +} + +void LoadFunctionNames() +{ + std::ifstream inputFile { "function_names.db" }; + + if (!inputFile) + { + FPrint("[!][EEex.dll] LoadFunctionNames() - Error opening function_names.db\n"); + return; + } + + for (std::string line; std::getline(inputFile, line); ) + { + const size_t spaceI = line.find('\t'); + const uintptr_t address = std::stoull(line.substr(0, spaceI), nullptr, 16); + addressToName.emplace_back(address, line.substr(spaceI + 1)); + } + + inputFile.close(); + return; +} diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp index 11789cd..a0cb76e 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/main.cpp @@ -2,6 +2,7 @@ #include "Baldur-v2.6.6.0_generated.h" #include "EEex.h" #include "EEexLua_generated.h" +#include "profiler.hpp" static void exportPattern(const String& name, void* value) { @@ -226,6 +227,12 @@ static void exportPatterns() { exportPattern(TEXT("EEex::bNoUUID"), &EEex::bNoUUID); exportPattern(TEXT("EEex::bStripUUID"), &EEex::bStripUUID); exportPattern(TEXT("EEex::CGameSprite_Hit_Roll"), &EEex::CGameSprite_Hit_Roll); + + //////////////////////////////// + // Profiler // + //////////////////////////////// + + //exportPattern(TEXT("Profiler_Trace"), Profiler_Trace); } void __stdcall InitBindings(SharedState argSharedState) { diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler.cpp new file mode 100644 index 0000000..3b90e97 --- /dev/null +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler.cpp @@ -0,0 +1,445 @@ + +#include +#include +#include +#include +#include +#include + +#include + +#include "Baldur-v2.6.6.0_generated.h" +#include "engine_function_names.hpp" +#include "infinity_loader_common_api.h" +#include "profiler.hpp" +#include "time_util.hpp" + +//---------------------------// +// Structs // +//---------------------------// + +struct ReturnPtr +{ + void* sourceStackPtr; + uintptr_t function; + SavedRegisters savedRegisters; + void* returnPtr; + bool alsoPopPrevious; + TimeType startTime; +}; + +template +struct ThreadLocalContainer +{ + T value{}; + DWORD threadID = GetCurrentThreadId(); + std::vector*>* storageVector; + size_t position = static_cast(-1); + bool deadAllocatedCopy = false; + std::shared_mutex* storageLock; + + ThreadLocalContainer(std::vector*>* storageVector, std::shared_mutex* storageLock, bool add = true); + ~ThreadLocalContainer(); +}; + +template +ThreadLocalContainer::ThreadLocalContainer(std::vector*> *const theStorageVector, std::shared_mutex *const theStorageLock, const bool add) +{ + storageVector = theStorageVector; + storageLock = theStorageLock; + + if (add) + { + const std::unique_lock lk1 { *storageLock }; + position = storageVector->size(); + storageVector->push_back(this); + } +} + +template +ThreadLocalContainer::~ThreadLocalContainer() +{ + if (!deadAllocatedCopy) + { + const std::unique_lock lk1 { *storageLock }; + ThreadLocalContainer *const copy = new ThreadLocalContainer { storageVector, storageLock, false }; + copy->deadAllocatedCopy = true; + copy->value = std::move(value); + storageVector->at(position) = copy; + } +} + +struct TimerEntry +{ + TimeType milliseconds; + std::string column1; + std::string column2; + std::string column3; + std::string column4; + std::string column5; + std::string column6; +}; + +struct TimerTime +{ + TimeType microseconds = 0; + size_t callCount = 0; + std::vector debugLines{}; +}; + +struct TraceEntry +{ + TraceType traceType; + std::string traceName; + uintptr_t endFunction; + TimeType logTimeThreshold; +}; + +//---------------------------// +// Globals // +//---------------------------// + +thread_local std::vector threadSavedReturnPtrs; + +std::vector>*> funcTimesRefs; +std::shared_mutex funcTimesRefsLock; +thread_local ThreadLocalContainer> threadFuncTimes { &funcTimesRefs, &funcTimesRefsLock }; + +std::atomic traceType; +std::atomic pendingSpamTrace; +TimeType startTraceTime; + +DWORD traceStartThreadID; + +std::unordered_map traceEntries; +std::shared_mutex traceEntriesLock; +TraceEntry currentTraceEntry; +std::mutex startTracingLock; + +//-----------------------------// +// Functions // +//-----------------------------// + +void Profiler_StartTrace(const TimeType startTime, const TraceType toStartType) +{ + if (toStartType == TraceType::NORMAL) + { + traceStartThreadID = GetCurrentThreadId(); + startTraceTime = startTime; + + const std::unique_lock lk1 { funcTimesRefsLock }; + + size_t curI = 0; + for (auto itr = funcTimesRefs.begin(); itr != funcTimesRefs.end(); ) + { + auto& threadLocalContainer = *itr; + if (threadLocalContainer->deadAllocatedCopy) + { + delete threadLocalContainer; + itr = funcTimesRefs.erase(itr); + } + else + { + threadLocalContainer->value.clear(); + threadLocalContainer->position = curI++; + ++itr; + } + } + } + + traceType = toStartType; +} + +void Profiler_RegisterTrace(const char *const traceName, const uintptr_t address, const TimeType logTimeThreshold) +{ + std::unique_lock lk1 { traceEntriesLock }; + traceEntries.try_emplace(address, TraceType::NORMAL, traceName, address, logTimeThreshold); +} + +static bool sortTimerEntryByTime(const TimerEntry& a, const TimerEntry& b) +{ + return a.milliseconds > b.milliseconds; +} + +static std::string formatString(const char *const format, ...) +{ + constexpr int initialBufferSize = 256; + + va_list args; + va_start(args, format); + + int bufferSize = initialBufferSize; + std::string result; + + while (true) + { + char *const buffer = new char[bufferSize]; + const int ret = vsnprintf(buffer, bufferSize, format, args); + + if (ret <= -1) + { + // Encoding error + delete[] buffer; + result = ""; + break; + } + + if (ret < bufferSize) + { + // Formatting succeeded + result = buffer; + delete[] buffer; + break; + } + + // Increase buffer size and try again + delete[] buffer; + bufferSize = ret + 1; + } + + va_end(args); + return result; +} + +static void endTracingNormal(const TimeType endTime) +{ + const TimeType totalMicroseconds = endTime - startTraceTime; + + if (totalMicroseconds / 1000 <= currentTraceEntry.logTimeThreshold) + { + return; + } + + FPrint("[%s] - Total Time: %.02f ms\n", currentTraceEntry.traceName.c_str(), static_cast(totalMicroseconds) / 1000); + + { + const std::unique_lock lk1 { funcTimesRefsLock }; + + for (const ThreadLocalContainer> *const threadFuncTimesRef : funcTimesRefs) + { + if (threadFuncTimesRef->value.empty()) + { + continue; + } + + std::vector toSort{}; + size_t longestColumn1 = 0; + size_t longestColumn2 = 0; + size_t longestColumn3 = 0; + size_t longestColumn4 = 0; + size_t longestColumn5 = 0; + + for (const auto& x : threadFuncTimesRef->value) + { + const TimeType microseconds = x.second.microseconds; + const double percent = totalMicroseconds != 0 ? (static_cast(microseconds) * 100 / totalMicroseconds) : 0; + + if (percent >= 1) + { + TimerEntry& placed = toSort.emplace_back(); + placed.milliseconds = microseconds; + placed.column1 = formatString("%lux", x.second.callCount); + placed.column2 = formatString("%.02f%%", percent); + placed.column3 = formatString("%.02f ms", static_cast(microseconds) / 1000); + placed.column4 = formatString("%.02f ms", static_cast(microseconds) / 1000 / x.second.callCount); + placed.column5 = formatString("0x%" PRIXPTR, x.first); + placed.column6 = formatString("%s", GetFunctionName(x.first).c_str()); + + if (const size_t len = placed.column1.length(); len > longestColumn1) + { + longestColumn1 = len; + } + + if (const size_t len = placed.column2.length(); len > longestColumn2) + { + longestColumn2 = len; + } + + if (const size_t len = placed.column3.length(); len > longestColumn3) + { + longestColumn3 = len; + } + + if (const size_t len = placed.column4.length(); len > longestColumn4) + { + longestColumn4 = len; + } + + if (const size_t len = placed.column5.length(); len > longestColumn5) + { + longestColumn5 = len; + } + } + } + + std::sort(toSort.begin(), toSort.end(), sortTimerEntryByTime); + + if (!toSort.empty()) + { + if (threadFuncTimesRef->threadID == traceStartThreadID) + { + FPrint(" [Thread 0x%X] - Primary\n", threadFuncTimesRef->threadID); + } + else + { + FPrint(" [Thread 0x%X]\n", threadFuncTimesRef->threadID); + } + + for (const auto& x : toSort) + { + FPrint(" | %s | total %s | %s | %s avg | %s | %s\n", + formatString("%*s", longestColumn1, x.column1.c_str()).c_str(), + formatString("%*s", longestColumn2, x.column2.c_str()).c_str(), + formatString("%*s", longestColumn3, x.column3.c_str()).c_str(), + formatString("%*s", longestColumn4, x.column4.c_str()).c_str(), + formatString("%*s", longestColumn5, x.column5.c_str()).c_str(), + formatString("%s", x.column6.c_str()).c_str() + ); + } + } + + for (const auto& x : threadFuncTimesRef->value) + { + const TimerTime& timerTime = x.second; + + for (const std::string& debugLine : timerTime.debugLines) + { + FPrint(" %s", debugLine.c_str()); + } + } + } + } +} + +static void endTracing(const TimeType endTime) +{ + const std::unique_lock lk1 { startTracingLock }; + + if (traceType == TraceType::NORMAL) + { + endTracingNormal(endTime); + } + + traceType = TraceType::NONE; +} + +static void endFunctionTrace(const TimeType endTime, const ReturnPtr& realReturnPtr) +{ + switch (traceType) + { + case TraceType::NORMAL: + { + { + // To prevent endTracing() from locking threadFuncTimes is ONLY modified by the current thread + const std::shared_lock lk1 { funcTimesRefsLock }; + TimerTime& timerTime = threadFuncTimes.value[realReturnPtr.function]; + // std::max() so long running functions (those in another thread that started before the trace) don't appear over 100% + + const TimeType timeTaken = endTime - (std::max)(startTraceTime, realReturnPtr.startTime); + timerTime.microseconds += timeTaken; + ++timerTime.callCount; + + // TODO HACK + if (realReturnPtr.function == 0x1403D0A50) + { + const uiItem *const item = reinterpret_cast(realReturnPtr.savedRegisters.rcx); + const char *const menuName = item->menu != nullptr ? item->menu->name : "(null)"; + timerTime.debugLines.emplace_back(formatString("Took %.02f ms to draw item %s with type %d in menu %s\n", static_cast(timeTaken) / 1000, item->name, item->type, menuName)); + } + } + + if (traceStartThreadID == GetCurrentThreadId() && realReturnPtr.function == currentTraceEntry.endFunction) + { + endTracing(endTime); + } + + break; + } + case TraceType::SPAM: + { + const std::string funcName = GetFunctionName(realReturnPtr.function); + FPrint("[%p] END %s\n", GetCurrentThreadId(), funcName.c_str()); + break; + } + } +} + +extern "C" void* Profiler_GetCurReturn() // Called by Profiler_Return() in profiler_assembly.asm +{ + const TimeType endTime = getTime(); + + if (threadSavedReturnPtrs.empty()) + { + MessageBoxA(NULL, "[EEex] Assert failed", "EEex", MB_ICONERROR); + } + + ReturnPtr realReturnPtr; + do + { + realReturnPtr = threadSavedReturnPtrs.back(); + threadSavedReturnPtrs.pop_back(); + + if (traceType != TraceType::NONE) + { + endFunctionTrace(endTime, realReturnPtr); + } + } + while (realReturnPtr.alsoPopPrevious); + + return realReturnPtr.returnPtr; +} + +extern "C" void Profiler_Return(); // In profiler_assembly.asm + +void __stdcall Profiler_Trace(const uintptr_t funcAddress, const SavedRegisters *const savedRegisters, void *const stackPtr) +{ + const TimeType startTime = getTime(); + const bool alsoPopPrevious = !threadSavedReturnPtrs.empty() && threadSavedReturnPtrs.back().sourceStackPtr == stackPtr; + + ReturnPtr& placed = threadSavedReturnPtrs.emplace_back(); + placed.sourceStackPtr = stackPtr; + placed.function = funcAddress; + placed.returnPtr = (void*)*(uintptr_t*)stackPtr; + placed.alsoPopPrevious = alsoPopPrevious; + placed.startTime = startTime; + placed.savedRegisters = *savedRegisters; + + *reinterpret_cast(stackPtr) = reinterpret_cast(Profiler_Return); + + switch (traceType) + { + case TraceType::NONE: + { + { + const std::shared_lock lk1 { traceEntriesLock }; + + if (const auto itr = traceEntries.find(funcAddress); itr != traceEntries.end()) + { + const std::unique_lock lk1 { startTracingLock }; + + if (traceType == TraceType::NONE) + { + currentTraceEntry = itr->second; + Profiler_StartTrace(startTime, currentTraceEntry.traceType); + } + } + } + + const std::unique_lock lk1 { startTracingLock }; + + if (traceType == TraceType::NONE && pendingSpamTrace) + { + pendingSpamTrace = false; + Profiler_StartTrace(startTime, TraceType::SPAM); + } + + break; + } + case TraceType::SPAM: + { + const std::string funcName = GetFunctionName(funcAddress); + FPrint("[%p] START %s\n", GetCurrentThreadId(), funcName.c_str()); + break; + } + } +} diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler_assembly.asm b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler_assembly.asm new file mode 100644 index 0000000..c401f5d --- /dev/null +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/profiler_assembly.asm @@ -0,0 +1,39 @@ + +OPTION CASEMAP:NONE + +EXTERN Profiler_GetCurReturn:PROC + +.code + +Profiler_Return PROC + + lea rsp, qword ptr [rsp-128] + movdqu [rsp+104], xmm0 + movdqu [rsp+88], xmm1 + mov qword ptr [rsp+80], rax + mov qword ptr [rsp+72], rcx + mov qword ptr [rsp+64], rdx + mov qword ptr [rsp+56], r8 + mov qword ptr [rsp+48], r9 + mov qword ptr [rsp+40], r10 + mov qword ptr [rsp+32], r11 + + call Profiler_GetCurReturn + mov qword ptr [rsp+120], rax + + movdqu xmm0, [rsp+104] + movdqu xmm1, [rsp+88] + mov rax, qword ptr [rsp+80] + mov rcx, qword ptr [rsp+72] + mov rdx, qword ptr [rsp+64] + mov r8, qword ptr [rsp+56] + mov r9, qword ptr [rsp+48] + mov r10, qword ptr [rsp+40] + mov r11, qword ptr [rsp+32] + + lea rsp, qword ptr [rsp+128] + jmp qword ptr [rsp-8] + +Profiler_Return ENDP + +END diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/time_util.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/time_util.cpp index c93496b..58f7aa1 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/time_util.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/time_util.cpp @@ -1,12 +1,14 @@ -#include "Windows.h" +#include + +#include "time_util.hpp" //---------------------------// // Globals // //---------------------------// -long long numTicksInMicrosecond; -long long initTime; +TimeType numTicksInMicrosecond; +TimeType initTime; //-----------------------------// // Functions // @@ -14,42 +16,42 @@ long long initTime; DWORD getHighestRefreshRate() { - DWORD highestRefreshRate = 0; + DWORD highestRefreshRate = 0; - DISPLAY_DEVICE displayDevice; - displayDevice.cb = sizeof(DISPLAY_DEVICE); + DISPLAY_DEVICE displayDevice; + displayDevice.cb = sizeof(DISPLAY_DEVICE); - DEVMODE devMode; - devMode.dmSize = sizeof(DEVMODE); - devMode.dmDriverExtra = 0; + DEVMODE devMode; + devMode.dmSize = sizeof(DEVMODE); + devMode.dmDriverExtra = 0; - for (DWORD deviceIndex = 0; EnumDisplayDevices(NULL, deviceIndex, &displayDevice, 0); ++deviceIndex) - { - if ((displayDevice.StateFlags & DISPLAY_DEVICE_ACTIVE) == 0) - { - continue; - } + for (DWORD deviceIndex = 0; EnumDisplayDevices(NULL, deviceIndex, &displayDevice, 0); ++deviceIndex) + { + if ((displayDevice.StateFlags & DISPLAY_DEVICE_ACTIVE) == 0) + { + continue; + } - if (!EnumDisplaySettings(displayDevice.DeviceName, ENUM_CURRENT_SETTINGS, &devMode)) - { - continue; - } + if (!EnumDisplaySettings(displayDevice.DeviceName, ENUM_CURRENT_SETTINGS, &devMode)) + { + continue; + } - if (devMode.dmDisplayFrequency > highestRefreshRate) - { - highestRefreshRate = devMode.dmDisplayFrequency; - } - } + if (devMode.dmDisplayFrequency > highestRefreshRate) + { + highestRefreshRate = devMode.dmDisplayFrequency; + } + } - return highestRefreshRate; + return highestRefreshRate; } -long long getInitTime() +TimeType getInitTime() { return initTime; } -long long getTime() +TimeType getTime() { LARGE_INTEGER result; QueryPerformanceCounter(&result); diff --git a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp index 4c0ac05..78a4a8e 100644 --- a/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp +++ b/EEex-v2.6.6.0/source/EEex-v2.6.6.0/uncap_fps.cpp @@ -1,8 +1,8 @@ #include -#include "EEex.h" #include "coordinate_util.hpp" +#include "EEex.h" #include "lua_util.hpp" #include "menu_util.hpp" #include "time_util.hpp" @@ -11,7 +11,7 @@ // Constants // //-----------------------------// -constexpr long long AUTO_ZOOM_TARGET_TIME = 10 * 1000000LL / 30; +constexpr TimeType AUTO_ZOOM_TARGET_TIME = 10 * 1000000LL / 30; // Empirically derived; lower values increase the smoothness of the "snap" at the // end of an exponential autoscroll at the cost of drawing out the autoscroll. @@ -62,27 +62,27 @@ class RollingAverage { struct Entry { - const long long timestamp; + const TimeType timestamp; const T value; - Entry(long long timestamp, T value) : timestamp(timestamp), value(value) {} + Entry(TimeType timestamp, T value) : timestamp(timestamp), value(value) {} }; - const long long timeWindow; + const TimeType timeWindow; T currentAverage = 0; std::deque queue{}; public: - RollingAverage(long long timeWindow); + RollingAverage(TimeType timeWindow); T get(); T getLast(); - void push(long long currentTime, T value); - void recalculate(long long currentTime); + void push(TimeType currentTime, T value); + void recalculate(TimeType currentTime); }; template -RollingAverage::RollingAverage(long long timeWindow) : timeWindow(timeWindow) {} +RollingAverage::RollingAverage(TimeType timeWindow) : timeWindow(timeWindow) {} template T RollingAverage::get() @@ -97,15 +97,15 @@ T RollingAverage::getLast() } template -void RollingAverage::push(long long currentTime, T value) +void RollingAverage::push(TimeType currentTime, T value) { queue.emplace_back(currentTime, value); } template -void RollingAverage::recalculate(long long currentTime) +void RollingAverage::recalculate(TimeType currentTime) { - const long long dropTime = currentTime - this->timeWindow; + const TimeType dropTime = currentTime - this->timeWindow; while (!queue.empty() && queue.front().timestamp < dropTime) { @@ -130,19 +130,20 @@ RollingAverage averageSyncUpdateDelta { 1000000 }; ExMenuStateOverrides beforeWorldScreenDeactivatedMenuStates{}; bool bAutoScrollFirstTick = false; bool bFullTick = false; -long long nLastAutoZoomTime = 0; -long long nLastScrollTime = 0; -long long nLastSyncUpdateTime = 0; -long long nLastTPSPrintTime = 0; -long long nNextFullSyncUpdateTick = 0; -long long nNextLightSyncUpdateTick = -1; -long long nRemainingAutoZoomTime = 0; -long long nRemainingScrollTime = 0; +bool bVSyncEnabled = true; +TimeType nLastAutoZoomTime = 0; +TimeType nLastScrollTime = 0; +TimeType nLastSyncUpdateTime = 0; +TimeType nLastTPSPrintTime = 0; +TimeType nNextFullSyncUpdateTick = 0; +TimeType nNextLightSyncUpdateTick = -1; +TimeType nRemainingAutoZoomTime = 0; +TimeType nRemainingScrollTime = 0; int nScreenShakeSavedX = 0; int nScreenShakeSavedY = 0; -long long nTooltipEnableTime = 0; -long long nTransitionStartTime = 0; -long long nTransitionEndTime = 0; +TimeType nTooltipEnableTime = 0; +TimeType nTransitionStartTime = 0; +TimeType nTransitionEndTime = 0; CPoint ptMapPosExact; //-----------------------------// @@ -466,7 +467,7 @@ static void adjustViewPosition(CInfinity* pInfinity, byte nScrollState, ExAdjust // | pInfinity->m_nLastTickCount = nCurrentTick; // | - const long long nCurrentTime = getTime(); + const TimeType nCurrentTime = getTime(); const int nScrollUpdateDelta = static_cast(nCurrentTime - nLastScrollTime); const int nDeltaT = (std::max)(1, (std::min)(nScrollUpdateDelta, 500000)); nLastScrollTime = nCurrentTime; @@ -735,7 +736,7 @@ static ExpScrollResult expScrollNumSteps(int src, int dst, int minStep, int thre } } -static int expScrollScaleSpeedToTime(int src, int dst, int minStep, int threshold, int microsecondDelta, long long targetMicroseconds) +static int expScrollScaleSpeedToTime(int src, int dst, int minStep, int threshold, int microsecondDelta, TimeType targetMicroseconds) { if (std::abs(src - dst) <= threshold) { @@ -759,7 +760,7 @@ static int expScrollScaleSpeedToTime(int src, int dst, int minStep, int threshol // Lua Functions // /////////////////// -long long EEex::GetMicroseconds() +TimeType EEex::GetMicroseconds() { return getTime() - getInitTime(); } @@ -782,6 +783,8 @@ void EEex::SetVSyncEnabled(bool bEnable, bool bResetDevice) { p_SDL_GL_SetSwapInterval(bEnable); } + + bVSyncEnabled = bEnable; } void EEex::UpdateLastScrollTime() @@ -1013,7 +1016,7 @@ void EEex::UncapFPS_Hook_HandleTransitionMenuFade() // | p_uiPush(p_transition->newMenu->name); // | } // | - const long long nCurrentTime = getTime(); + const TimeType nCurrentTime = getTime(); // | if (nCurrentTime >= nTransitionEndTime) { @@ -1038,8 +1041,8 @@ void EEex::UncapFPS_Hook_HandleTransitionMenuFade() } else { - const long long nCurrentProgress = nCurrentTime - nTransitionStartTime; - const long long nTotalDistance = nTransitionEndTime - nTransitionStartTime; + const TimeType nCurrentProgress = nCurrentTime - nTransitionStartTime; + const TimeType nTotalDistance = nTransitionEndTime - nTransitionStartTime; const float fPercent = static_cast(nCurrentProgress) / nTotalDistance; if (p_transition->state == 1) @@ -1057,7 +1060,7 @@ void EEex::UncapFPS_Hook_HandleTransitionMenuFade() // Overrides // /////////////// -static void trackSyncUpdateDelta(long long nStartTime) +static void trackSyncUpdateDelta(TimeType nStartTime) { const int nSyncUpdateDelta = static_cast(nStartTime - nLastSyncUpdateTime); nLastSyncUpdateTime = nStartTime; @@ -1071,9 +1074,17 @@ static void trackSyncUpdateDelta(long long nStartTime) //} } +static int getWindowRefreshRate() +{ + CBaldurChitin *const pChitin = *p_g_pBaldurChitin; + SDL_Window *const pWindow = pChitin->cVideo.pCurrentMode->m_pWindow; + SDL_VideoDisplay *const pVideoDisplay = p_SDL_GetDisplayForWindow(pWindow); + return pVideoDisplay->current_mode.refresh_rate; +} + void CChitin::Override_Update() { - const long long nStartTime = getTime(); + const TimeType nStartTime = getTime(); ////////////////////////////////////////////////////////////////////// // Dump Lua values that were not properly cleaned up from the stack // @@ -1112,6 +1123,8 @@ void CChitin::Override_Update() } } + const bool bUsingFPSLimit = EEex::UncapFPS_FPSLimitEnabled && (!bVSyncEnabled || EEex::UncapFPS_FPSLimit < getWindowRefreshRate()); + // Patch: Run "full ticks" at 30tps like normal, and (if uncapped) run in-between "light" ticks that only render the game // | if (!EEex::UncapFPS_Enabled || nStartTime >= nNextFullSyncUpdateTick) @@ -1158,6 +1171,7 @@ void CChitin::Override_Update() this->m_displayStale = 0; this->m_bInSyncUpdate = 1; this->virtual_SynchronousUpdate(); + lua_gc(L, LUA_GCSTEP, EEex::UncapFPS_LuaGCSteps); this->m_bInSyncUpdate = 0; this->m_AIStale = 1; } @@ -1208,23 +1222,30 @@ void CChitin::Override_Update() } else { - const long long nEndTime = getTime(); - const long long nTimeTaken = nEndTime - nStartTime; + const TimeType nEndTime = getTime(); + const TimeType nTimeTaken = nEndTime - nStartTime; - const long long nTarget = 1000000 / EEex::UncapFPS_FPSLimit; + const TimeType nTarget = 1000000 / EEex::UncapFPS_FPSLimit; if (nTimeTaken > nTarget) { //FPrint("Light frame took too long: %lld > %lld\n", nTimeTaken, nTarget); } - const long long nTargetFullMicroseconds = 1000000 / *CChitin::p_TIMER_UPDATES_PER_SECOND - nTimeTaken; + const TimeType nTargetFullMicroseconds = (1000000 / *CChitin::p_TIMER_UPDATES_PER_SECOND) - nTimeTaken; nNextFullSyncUpdateTick = nEndTime + nTargetFullMicroseconds; // Check reschedule light ticks if they are disabled if (nNextLightSyncUpdateTick == -1) { - const int nEffectiveCap = EEex::UncapFPS_FPSLimit - *CChitin::p_TIMER_UPDATES_PER_SECOND; - nNextLightSyncUpdateTick = nEffectiveCap > 0 ? nEndTime + 1000000 / nEffectiveCap - nTimeTaken : -1; + if (!bUsingFPSLimit) + { + nNextLightSyncUpdateTick = 0; + } + else + { + const int nEffectiveCap = EEex::UncapFPS_FPSLimit - *CChitin::p_TIMER_UPDATES_PER_SECOND; + nNextLightSyncUpdateTick = nEffectiveCap > 0 ? nEndTime + (1000000 / nEffectiveCap) - nTimeTaken : -1; + } } } @@ -1264,32 +1285,40 @@ void CChitin::Override_Update() this->m_displayStale = 0; this->m_bInSyncUpdate = 1; this->virtual_SynchronousUpdate(); + lua_gc(L, LUA_GCSTEP, EEex::UncapFPS_LuaGCSteps); this->m_bInSyncUpdate = 0; this->m_AIStale = 1; } - const long long nEndTime = getTime(); - const long long nTimeTaken = nEndTime - nStartTime; + const TimeType nEndTime = getTime(); + const TimeType nTimeTaken = nEndTime - nStartTime; - const long long nTarget = 1000000 / EEex::UncapFPS_FPSLimit; + const TimeType nTarget = 1000000 / EEex::UncapFPS_FPSLimit; if (nTimeTaken > nTarget) { //FPrint("Light frame took too long: %lld > %lld\n", nTimeTaken, nTarget); } - const int nEffectiveCap = EEex::UncapFPS_FPSLimit - *CChitin::p_TIMER_UPDATES_PER_SECOND; - nNextLightSyncUpdateTick = nEffectiveCap > 0 ? nEndTime + 1000000 / nEffectiveCap - nTimeTaken : -1; + if (!bUsingFPSLimit) + { + nNextLightSyncUpdateTick = 0; + } + else + { + const int nEffectiveCap = EEex::UncapFPS_FPSLimit - *CChitin::p_TIMER_UPDATES_PER_SECOND; + nNextLightSyncUpdateTick = nEffectiveCap > 0 ? nEndTime + (1000000 / nEffectiveCap) - nTimeTaken : -1; + } } // Patch: If uncapped, sleep for a small amount so the main update loop doesn't hog the CPU // | - if (EEex::UncapFPS_Enabled && EEex::UncapFPS_BusyWaitThreshold != 0) + if (EEex::UncapFPS_Enabled && EEex::UncapFPS_BusyWaitThreshold != 0 && bUsingFPSLimit) { - const long long nNextTick = nNextLightSyncUpdateTick != -1 && nNextLightSyncUpdateTick < nNextFullSyncUpdateTick + const TimeType nNextTick = nNextLightSyncUpdateTick != -1 && nNextLightSyncUpdateTick < nNextFullSyncUpdateTick ? nNextLightSyncUpdateTick : nNextFullSyncUpdateTick; - const long long nDelayMilliseconds = (nNextTick - getTime()) / 1000; + const TimeType nDelayMilliseconds = (nNextTick - getTime()) / 1000; if (nDelayMilliseconds >= EEex::UncapFPS_BusyWaitThreshold) { @@ -1650,7 +1679,7 @@ void CInfinity::Override_Scroll(CPoint ptDest, short speed) // | this->m_nLastTickCount = nCurrentTick; // | - const long long nCurrentTime = getTime(); + const TimeType nCurrentTime = getTime(); const int nScrollUpdateDelta = bAutoScrollFirstTick ? averageSyncUpdateDelta.getLast() : static_cast(nCurrentTime - nLastScrollTime); const int nDeltaT = (std::max)(1, (std::min)(nScrollUpdateDelta, 500000)); bAutoScrollFirstTick = false; @@ -2353,7 +2382,7 @@ void __cdecl EEex::Override_uiDrawMenuStack() // | // | ++p_tooltip->count; // | - const long long nCurTime = getTime(); + const TimeType nCurTime = getTime(); // | if (p_tooltip->count == nTooltipDelay || (GetAsyncKeyState(VK_TAB) & 0x8000) != 0) { @@ -2436,8 +2465,8 @@ void static handleAreaAutoZoom() // Patch: Keep track of auto zoom time delta // | - const long long nCurrentTime = getTime(); - const long long nDeltaT = nCurrentTime - nLastAutoZoomTime; + const TimeType nCurrentTime = getTime(); + const TimeType nDeltaT = nCurrentTime - nLastAutoZoomTime; nLastAutoZoomTime = nCurrentTime; // Patch: Calculate zoom percentage using time (instead of a static number of ticks) @@ -2506,7 +2535,7 @@ void static handleAreaAutoZoom() pArea->m_cGameAreaNotes.UpdateButtonPositions(); } -static void zoomOutToLocalMap(long long nCurrentTime, bool bOverwriteOriginal, bool bForceInstant) +static void zoomOutToLocalMap(TimeType nCurrentTime, bool bOverwriteOriginal, bool bForceInstant) { CBaldurChitin *const pChitin = *p_g_pBaldurChitin; CScreenWorld *const pScreenWorld = pChitin->m_pEngineWorld; @@ -2704,7 +2733,7 @@ void CScreenWorld::Override_ResetZoom() CInfGame *const pGame = pChitin->m_pObjectGame; CInfinity *const pInfinity = &pGame->m_gameAreas[pGame->m_visibleArea]->m_cInfinity; - const long long nCurrentTime = getTime(); + const TimeType nCurrentTime = getTime(); if (!this->m_bAutoZooming) { @@ -2743,7 +2772,7 @@ void CScreenWorld::Override_ZoomToMap(bool bOverwriteOriginal) CInfGame *const pGame = pChitin->m_pObjectGame; CInfinity *const pInfinity = &pGame->m_gameAreas[pGame->m_visibleArea]->m_cInfinity; - const long long nCurrentTime = getTime(); + const TimeType nCurrentTime = getTime(); if (!this->m_bAutoZooming) { @@ -2788,7 +2817,10 @@ void CScreenWorld::Override_ZoomToMap(bool bOverwriteOriginal) void initUncapFPS() { - const long long initTime = getInitTime(); + const TimeType initTime = getInitTime(); nLastSyncUpdateTime = initTime; nLastScrollTime = initTime; + + lua_gc(sharedState().LuaState(), LUA_GCSTOP, 0); + EEex::UncapFPS_LuaGCSteps = 50; } diff --git a/InfinityLoaderCommon/headers/common/lua_provider_api_core.h b/InfinityLoaderCommon/headers/common/lua_provider_api_core.h index 06df766..9f18be1 100644 --- a/InfinityLoaderCommon/headers/common/lua_provider_api_core.h +++ b/InfinityLoaderCommon/headers/common/lua_provider_api_core.h @@ -44,6 +44,7 @@ LUA_PROVIDER_API lua_CFunction lua_atpanic(lua_State* L, lua_CFunction panicf); LUA_PROVIDER_API void lua_callk(lua_State* L, int nargs, int nresults, int ctx, lua_CFunction k); LUA_PROVIDER_API void lua_concat(lua_State* L, int n); LUA_PROVIDER_API void lua_createtable(lua_State* L, int narr, int nrec); +LUA_PROVIDER_API int lua_gc(lua_State* L, int what, int data); LUA_PROVIDER_API void lua_getfield(lua_State* L, int idx, const char* k); LUA_PROVIDER_API void lua_getglobal(lua_State* L, const char* name); LUA_PROVIDER_API int lua_getmetatable(lua_State* L, int objindex); @@ -141,6 +142,16 @@ LUA_PROVIDER_API bool CheckLuaArgBoundsUIntPtr(lua_State* L, const int argI, siz #define LUA_TUSERDATA 7 #define LUA_TTHREAD 8 +#define LUA_GCSTOP 0 +#define LUA_GCRESTART 1 +#define LUA_GCCOLLECT 2 +#define LUA_GCCOUNT 3 +#define LUA_GCCOUNTB 4 +#define LUA_GCSTEP 5 +#define LUA_GCSETPAUSE 6 +#define LUA_GCSETSTEPMUL 7 +#define LUA_GCISRUNNING 9 + #define lua_call(L, n, r) lua_callk(L, (n), (r), 0, NULL) #define lua_isboolean(L, n) (lua_type(L, (n)) == LUA_TBOOLEAN) #define lua_isfunction(L, n) (lua_type(L, (n)) == LUA_TFUNCTION) diff --git a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h index f58767e..36c60ac 100644 --- a/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h +++ b/LuaBindings-v2.6.6.0/headers/LuaBindings-v2.6.6.0_generated/Baldur-v2.6.6.0_generated.h @@ -188,10 +188,14 @@ struct Item_Header_st; struct Item_ability_st; struct Item_effect_st; union SDL_Event; +struct SDL_MessageBoxButtonData; +struct SDL_MessageBoxColorScheme; struct SDL_PixelFormat; struct SDL_Point; +struct SDL_PrivateGLESData; struct SDL_Rect; struct SDL_Surface; +struct SDL_VideoDevice; struct SDL_Window; struct STR_RES; struct Spell_Header_st; @@ -251,6 +255,11 @@ struct SDL_Cursor SDL_Cursor() = delete; }; +struct SDL_PrivateGLESData +{ + SDL_PrivateGLESData() = delete; +}; + struct SDL_WindowUserData { char* name; @@ -1504,6 +1513,15 @@ struct SDL_version SDL_version() = delete; }; +struct SDL_MessageBoxColor +{ + unsigned __int8 r; + unsigned __int8 g; + unsigned __int8 b; + + SDL_MessageBoxColor() = delete; +}; + struct SDL_Color { unsigned __int8 r; @@ -1958,6 +1976,31 @@ struct SDL_SysWMmsg SDL_SysWMmsg() = delete; }; +struct SDL_SysWMinfo +{ + union info_t + { + struct win_t + { + HWND__* window; + HDC__* hdc; + + win_t() = delete; + }; + + SDL_SysWMinfo::info_t::win_t win; + int dummy; + + info_t() = delete; + }; + + SDL_version version; + SDL_SYSWM_TYPE subsystem; + SDL_SysWMinfo::info_t info; + + SDL_SysWMinfo() = delete; +}; + struct SDL_SysWMEvent { unsigned int type; @@ -1967,6 +2010,15 @@ struct SDL_SysWMEvent SDL_SysWMEvent() = delete; }; +struct SDL_ShapeDriver +{ + SDL_WindowShaper* (__fastcall *CreateShaper)(SDL_Window*); + int (__fastcall *SetWindowShape)(SDL_WindowShaper*, SDL_Surface*, SDL_WindowShapeMode*); + int (__fastcall *ResizeWindowShape)(SDL_Window*); + + SDL_ShapeDriver() = delete; +}; + struct SDL_QuitEvent { unsigned int type; @@ -2044,6 +2096,28 @@ struct SDL_MouseButtonEvent SDL_MouseButtonEvent() = delete; }; +struct SDL_MessageBoxData +{ + unsigned int flags; + SDL_Window* window; + const char* title; + const char* message; + int numbuttons; + const SDL_MessageBoxButtonData* buttons; + const SDL_MessageBoxColorScheme* colorScheme; + + SDL_MessageBoxData() = delete; +}; + +struct SDL_MessageBoxButtonData +{ + unsigned int flags; + int buttonid; + const char* text; + + SDL_MessageBoxButtonData() = delete; +}; + struct SDL_Keysym { SDL_Scancode scancode; @@ -2133,6 +2207,53 @@ struct SDL_JoyAxisEvent SDL_JoyAxisEvent() = delete; }; +struct SDL_GLDriverData +{ + SDL_bool HAS_WGL_ARB_pixel_format; + SDL_bool HAS_WGL_EXT_swap_control_tear; + SDL_bool HAS_WGL_EXT_create_context_es2_profile; + SDL_bool HAS_WGL_ARB_context_flush_control; + void* (__fastcall *wglGetProcAddress)(const char*); + HGLRC__* (__fastcall *wglCreateContext)(HDC__*); + int (__fastcall *wglDeleteContext)(HGLRC__*); + int (__fastcall *wglMakeCurrent)(HDC__*, HGLRC__*); + int (__fastcall *wglShareLists)(HGLRC__*, HGLRC__*); + int (__fastcall *wglChoosePixelFormatARB)(HDC__*, const int*, const float*, unsigned int, int*, unsigned int*); + int (__fastcall *wglGetPixelFormatAttribivARB)(HDC__*, int, int, unsigned int, const int*, int*); + int (__fastcall *wglSwapIntervalEXT)(int); + int (__fastcall *wglGetSwapIntervalEXT)(); + + SDL_GLDriverData() = delete; +}; + +struct SDL_EGL_VideoData +{ + void* egl_dll_handle; + void* dll_handle; + void* egl_display; + void* egl_config; + int egl_swapinterval; + void* (__fastcall *eglGetDisplay)(HDC__*); + unsigned int (__fastcall *eglInitialize)(void*, int*, int*); + unsigned int (__fastcall *eglTerminate)(void*); + void* (__fastcall *eglGetProcAddress)(const char*); + unsigned int (__fastcall *eglChooseConfig)(void*, const int*, void**, int, int*); + void* (__fastcall *eglCreateContext)(void*, void*, void*, const int*); + unsigned int (__fastcall *eglDestroyContext)(void*, void*); + void* (__fastcall *eglCreateWindowSurface)(void*, void*, HWND__*, const int*); + unsigned int (__fastcall *eglDestroySurface)(void*, void*); + unsigned int (__fastcall *eglMakeCurrent)(void*, void*, void*, void*); + unsigned int (__fastcall *eglSwapBuffers)(void*, void*); + unsigned int (__fastcall *eglSwapInterval)(void*, int); + const char* (__fastcall *eglQueryString)(void*, int); + unsigned int (__fastcall *eglGetConfigAttrib)(void*, void*, int, int*); + unsigned int (__fastcall *eglWaitNative)(int); + unsigned int (__fastcall *eglWaitGL)(); + unsigned int (__fastcall *eglBindAPI)(unsigned int); + + SDL_EGL_VideoData() = delete; +}; + struct SDL_DropEvent { unsigned int type; @@ -2167,6 +2288,21 @@ struct SDL_DisplayMode SDL_DisplayMode() = delete; }; +struct SDL_VideoDisplay +{ + char* name; + int max_display_modes; + int num_display_modes; + SDL_DisplayMode* display_modes; + SDL_DisplayMode desktop_mode; + SDL_DisplayMode current_mode; + SDL_Window* fullscreen_window; + SDL_VideoDevice* device; + void* driverdata; + + SDL_VideoDisplay() = delete; +}; + struct SDL_ControllerDeviceEvent { unsigned int type; @@ -9051,6 +9187,120 @@ struct font_t font_t() = delete; }; +struct SDL_VideoDevice +{ + struct gl_config_t + { + int red_size; + int green_size; + int blue_size; + int alpha_size; + int depth_size; + int buffer_size; + int stencil_size; + int double_buffer; + int accum_red_size; + int accum_green_size; + int accum_blue_size; + int accum_alpha_size; + int stereo; + int multisamplebuffers; + int multisamplesamples; + int accelerated; + int major_version; + int minor_version; + int flags; + int profile_mask; + int share_with_current_context; + int release_behavior; + int framebuffer_srgb_capable; + int retained_backing; + int driver_loaded; + Array driver_path; + void* dll_handle; + + gl_config_t() = delete; + }; + + const char* name; + int (__fastcall *VideoInit)(SDL_VideoDevice*); + void (__fastcall *VideoQuit)(SDL_VideoDevice*); + int (__fastcall *GetDisplayBounds)(SDL_VideoDevice*, SDL_VideoDisplay*, SDL_Rect*); + int (__fastcall *GetDisplayDPI)(SDL_VideoDevice*, SDL_VideoDisplay*, float*, float*, float*); + void (__fastcall *GetDisplayModes)(SDL_VideoDevice*, SDL_VideoDisplay*); + int (__fastcall *SetDisplayMode)(SDL_VideoDevice*, SDL_VideoDisplay*, SDL_DisplayMode*); + int (__fastcall *CreateWindowA)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *CreateWindowFrom)(SDL_VideoDevice*, SDL_Window*, const void*); + void (__fastcall *SetWindowTitle)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowIcon)(SDL_VideoDevice*, SDL_Window*, SDL_Surface*); + void (__fastcall *SetWindowPosition)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowSize)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowMinimumSize)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowMaximumSize)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *ShowWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *HideWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *RaiseWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *MaximizeWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *MinimizeWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *RestoreWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *SetWindowBordered)(SDL_VideoDevice*, SDL_Window*, SDL_bool); + void (__fastcall *SetWindowFullscreen)(SDL_VideoDevice*, SDL_Window*, SDL_VideoDisplay*, SDL_bool); + int (__fastcall *SetWindowGammaRamp)(SDL_VideoDevice*, SDL_Window*, const unsigned __int16*); + int (__fastcall *GetWindowGammaRamp)(SDL_VideoDevice*, SDL_Window*, wchar_t*); + void (__fastcall *SetWindowGrab)(SDL_VideoDevice*, SDL_Window*, SDL_bool); + void (__fastcall *DestroyWindow)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *CreateWindowFramebuffer)(SDL_VideoDevice*, SDL_Window*, unsigned int*, void**, int*); + int (__fastcall *UpdateWindowFramebuffer)(SDL_VideoDevice*, SDL_Window*, const SDL_Rect*, int); + void (__fastcall *DestroyWindowFramebuffer)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *OnWindowEnter)(SDL_VideoDevice*, SDL_Window*); + SDL_ShapeDriver shape_driver; + SDL_bool (__fastcall *GetWindowWMInfo)(SDL_VideoDevice*, SDL_Window*, SDL_SysWMinfo*); + int (__fastcall *GL_LoadLibrary)(SDL_VideoDevice*, const char*); + void* (__fastcall *GL_GetProcAddress)(SDL_VideoDevice*, const char*); + void (__fastcall *GL_UnloadLibrary)(SDL_VideoDevice*); + void* (__fastcall *GL_CreateContext)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *GL_MakeCurrent)(SDL_VideoDevice*, SDL_Window*, void*); + void (__fastcall *GL_GetDrawableSize)(SDL_VideoDevice*, SDL_Window*, int*, int*); + int (__fastcall *GL_SetSwapInterval)(SDL_VideoDevice*, int); + int (__fastcall *GL_GetSwapInterval)(SDL_VideoDevice*); + void (__fastcall *GL_SwapWindow)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *GL_DeleteContext)(SDL_VideoDevice*, void*); + void (__fastcall *PumpEvents)(SDL_VideoDevice*); + void (__fastcall *SuspendScreenSaver)(SDL_VideoDevice*); + void (__fastcall *StartTextInput)(SDL_VideoDevice*); + void (__fastcall *StopTextInput)(SDL_VideoDevice*); + void (__fastcall *SetTextInputRect)(SDL_VideoDevice*, SDL_Rect*); + SDL_bool (__fastcall *HasScreenKeyboardSupport)(SDL_VideoDevice*); + void (__fastcall *ShowScreenKeyboard)(SDL_VideoDevice*, SDL_Window*); + void (__fastcall *HideScreenKeyboard)(SDL_VideoDevice*, SDL_Window*); + SDL_bool (__fastcall *IsScreenKeyboardShown)(SDL_VideoDevice*, SDL_Window*); + int (__fastcall *SetClipboardText)(SDL_VideoDevice*, const char*); + char* (__fastcall *GetClipboardText)(SDL_VideoDevice*); + SDL_bool (__fastcall *HasClipboardText)(SDL_VideoDevice*); + int (__fastcall *ShowMessageBox)(SDL_VideoDevice*, const SDL_MessageBoxData*, int*); + int (__fastcall *SetWindowHitTest)(SDL_Window*, SDL_bool); + SDL_bool suspend_screensaver; + int num_displays; + SDL_VideoDisplay* displays; + SDL_Window* windows; + SDL_Window* grabbed_window; + unsigned __int8 window_magic; + unsigned int next_object_id; + char* clipboard_text; + SDL_VideoDevice::gl_config_t gl_config; + SDL_Window* current_glwin; + void* current_glctx; + unsigned int current_glwin_tls; + unsigned int current_glctx_tls; + void* driverdata; + SDL_GLDriverData* gl_data; + SDL_EGL_VideoData* egl_data; + SDL_PrivateGLESData* gles_data; + void (__fastcall *free)(SDL_VideoDevice*); + + SDL_VideoDevice() = delete; +}; + struct SDL_PixelFormat { unsigned int format; @@ -9076,6 +9326,13 @@ struct SDL_PixelFormat SDL_PixelFormat() = delete; }; +struct SDL_MessageBoxColorScheme +{ + Array colors; + + SDL_MessageBoxColorScheme() = delete; +}; + template struct LCharString { @@ -9332,6 +9589,9 @@ extern type_restoreMenuStack p_restoreMenuStack; typedef void (*type_saveMenuStack)(); extern type_saveMenuStack p_saveMenuStack; +typedef SDL_VideoDisplay* (*type_SDL_GetDisplayForWindow)(SDL_Window* window); +extern type_SDL_GetDisplayForWindow p_SDL_GetDisplayForWindow; + typedef int (*type_SDL_GetKeyFromName)(const char* name); extern type_SDL_GetKeyFromName p_SDL_GetKeyFromName; diff --git a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt index a64bd70..363dfce 100644 --- a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt +++ b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/ignore_header_types.txt @@ -68,6 +68,7 @@ GCheader GCObject global_State HDC__ +HGLRC__ HMONITOR__ HWND__ ID3DXBaseEffect diff --git a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt index 6e2cfe4..4c8d69c 100644 --- a/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt +++ b/LuaBindings-v2.6.6.0/scripts/generate_bindings/in/manual_types.txt @@ -1651,6 +1651,7 @@ uiMenu* findMenu(primitive const char* name, int panel, int state); int rand(); void restoreMenuStack(); void saveMenuStack(); +SDL_VideoDisplay* SDL_GetDisplayForWindow(SDL_Window* window); int SDL_GetKeyFromName(primitive const char* name); primitive char* __cdecl SDL_GetKeyName(int key); uint SDL_GetWindowFlags(SDL_Window* window); diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp index 27c7c65..64567d5 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/Baldur-v2.6.6.0_generated_internal_pointers.cpp @@ -55,6 +55,7 @@ type_findMenu p_findMenu; type_rand p_rand; type_restoreMenuStack p_restoreMenuStack; type_saveMenuStack p_saveMenuStack; +type_SDL_GetDisplayForWindow p_SDL_GetDisplayForWindow; type_SDL_GetKeyFromName p_SDL_GetKeyFromName; type_SDL_GetKeyName p_SDL_GetKeyName; type_SDL_GetWindowFlags p_SDL_GetWindowFlags; @@ -391,6 +392,7 @@ void InitBindingsInternal() { attemptFillPointer(TEXT("rand"), p_rand); attemptFillPointer(TEXT("restoreMenuStack"), p_restoreMenuStack); attemptFillPointer(TEXT("saveMenuStack"), p_saveMenuStack); + attemptFillPointer(TEXT("SDL_GetDisplayForWindow"), p_SDL_GetDisplayForWindow); attemptFillPointer(TEXT("SDL_GetKeyFromName"), p_SDL_GetKeyFromName); attemptFillPointer(TEXT("SDL_GetKeyName"), p_SDL_GetKeyName); attemptFillPointer(TEXT("SDL_GetWindowFlags"), p_SDL_GetWindowFlags); diff --git a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp index dbd7104..efedb5a 100644 --- a/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp +++ b/LuaBindings-v2.6.6.0/source/LuaBindings-v2.6.6.0/Generated/EEexLua_generated.cpp @@ -51,2075 +51,2075 @@ static int tolua_get_Primitive_CGameObjectType__reference_value(lua_State* L) return 1; } -static int tolua_get_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) +static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) +static int tolua_set_Primitive_WindowShapeMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_SYSWM_TYPE)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (WindowShapeMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_SYSWM_TYPE__reference_value(lua_State* L) +static int tolua_get_Primitive_WindowShapeMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Keycode__value(lua_State* L) +static int tolua_get_Primitive_SDL_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Keycode__value(lua_State* L) +static int tolua_set_Primitive_SDL_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Keycode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_bool)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Keycode__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_bool__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Scancode__value(lua_State* L) +static int tolua_get_Primitive_SDL_HitTestResult__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Scancode__value(lua_State* L) +static int tolua_set_Primitive_SDL_HitTestResult__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Scancode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_HitTestResult)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Scancode__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_HitTestResult__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_EventType__value(lua_State* L) +static int tolua_get_Primitive_CSpawn__ePMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_EventType__value(lua_State* L) +static int tolua_set_Primitive_CSpawn__ePMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_EventType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CSpawn::ePMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_EventType__reference_value(lua_State* L) +static int tolua_get_Primitive_CSpawn__ePMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_importStateType__value(lua_State* L) +static int tolua_get_Primitive_CGameJournalEntryFlag__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_importStateType__value(lua_State* L) +static int tolua_set_Primitive_CGameJournalEntryFlag__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (importStateType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CGameJournalEntryFlag)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_importStateType__reference_value(lua_State* L) +static int tolua_get_Primitive_CGameJournalEntryFlag__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CScreenCreateCharStep__value(lua_State* L) +static int tolua_get_Primitive_CButtonType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CScreenCreateCharStep__value(lua_State* L) +static int tolua_set_Primitive_CButtonType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CScreenCreateCharStep)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CButtonType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CScreenCreateCharStep__reference_value(lua_State* L) +static int tolua_get_Primitive_CButtonType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_WindowShapeMode__value(lua_State* L) +static int tolua_get_Primitive_CAOEEntry__AOEType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_WindowShapeMode__value(lua_State* L) +static int tolua_set_Primitive_CAOEEntry__AOEType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (WindowShapeMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CAOEEntry::AOEType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_WindowShapeMode__reference_value(lua_State* L) +static int tolua_get_Primitive_CAOEEntry__AOEType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_HitTestResult__value(lua_State* L) +static int tolua_get_Primitive_VertListType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_HitTestResult__value(lua_State* L) +static int tolua_set_Primitive_VertListType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_HitTestResult)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (VertListType)tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_HitTestResult__reference_value(lua_State* L) +static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_bool__value(lua_State* L) +static int tolua_get_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_bool__value(lua_State* L) +static int tolua_set_Primitive_SDL_SYSWM_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_bool)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_SYSWM_TYPE)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_bool__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_SYSWM_TYPE__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CSpawn__ePMode__value(lua_State* L) +static int tolua_get_Primitive_SDL_Keycode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CSpawn__ePMode__value(lua_State* L) +static int tolua_set_Primitive_SDL_Keycode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CSpawn::ePMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_Keycode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CSpawn__ePMode__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_Keycode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CAOEEntry__AOEType__value(lua_State* L) +static int tolua_get_Primitive_SDL_Scancode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CAOEEntry__AOEType__value(lua_State* L) +static int tolua_set_Primitive_SDL_Scancode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CAOEEntry::AOEType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_Scancode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CAOEEntry__AOEType__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_Scancode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CButtonType__value(lua_State* L) +static int tolua_get_Primitive_SDL_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CButtonType__value(lua_State* L) +static int tolua_set_Primitive_SDL_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CButtonType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_EventType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CButtonType__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_EventType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CGameJournalEntryFlag__value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CGameJournalEntryFlag__value(lua_State* L) +static int tolua_set_Primitive_uiVariantType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CGameJournalEntryFlag)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CGameJournalEntryFlag__reference_value(lua_State* L) +static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_CChitin__EngineMode__value(lua_State* L) +static int tolua_get_Primitive__D3DFORMAT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_CChitin__EngineMode__value(lua_State* L) +static int tolua_set_Primitive__D3DFORMAT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (CChitin::EngineMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (_D3DFORMAT)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_CChitin__EngineMode__reference_value(lua_State* L) +static int tolua_get_Primitive__D3DFORMAT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DFORMAT>"); return 1; } -static int tolua_get_Primitive_EUGCReadAction__value(lua_State* L) +static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUGCReadAction__value(lua_State* L) +static int tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUGCReadAction)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (_D3DMULTISAMPLE_TYPE)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUGCReadAction__reference_value(lua_State* L) +static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DMULTISAMPLE_TYPE>"); return 1; } -static int tolua_get_Primitive_EWorkshopEnumerationType__value(lua_State* L) +static int tolua_get_Primitive__D3DSWAPEFFECT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopEnumerationType__value(lua_State* L) +static int tolua_set_Primitive__D3DSWAPEFFECT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopEnumerationType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (_D3DSWAPEFFECT)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_State* L) +static int tolua_get_Primitive__D3DSWAPEFFECT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DSWAPEFFECT>"); return 1; } -static int tolua_get_Primitive_EWorkshopFileType__value(lua_State* L) +static int tolua_get_Primitive_DepthLockState__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopFileType__value(lua_State* L) +static int tolua_set_Primitive_DepthLockState__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopFileType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DepthLockState)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopFileType__reference_value(lua_State* L) +static int tolua_get_Primitive_DepthLockState__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EWorkshopVideoProvider__value(lua_State* L) +static int tolua_get_Primitive_DrawFilter__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopVideoProvider__value(lua_State* L) +static int tolua_set_Primitive_DrawFilter__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopVideoProvider)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawFilter)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopVideoProvider__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawFilter__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) +static int tolua_get_Primitive_RendererType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) +static int tolua_set_Primitive_RendererType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ERemoteStoragePublishedFileVisibility)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (RendererType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__reference_value(lua_State* L) +static int tolua_get_Primitive_RendererType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ERemoteStoragePlatform__value(lua_State* L) +static int tolua_get_Primitive_DrawFeature__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ERemoteStoragePlatform__value(lua_State* L) +static int tolua_set_Primitive_DrawFeature__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ERemoteStoragePlatform)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawFeature)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ERemoteStoragePlatform__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawFeature__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EWorkshopFileAction__value(lua_State* L) +static int tolua_get_Primitive_DrawBlend__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EWorkshopFileAction__value(lua_State* L) +static int tolua_set_Primitive_DrawBlend__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EWorkshopFileAction)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawBlend)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EWorkshopFileAction__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawBlend__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EResult__value(lua_State* L) +static int tolua_get_Primitive_DrawTone__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EResult__value(lua_State* L) +static int tolua_set_Primitive_DrawTone__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EResult)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawTone)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EResult__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawTone__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUserUGCListSortOrder__value(lua_State* L) +static int tolua_get_Primitive_SDL_Keymod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUserUGCListSortOrder__value(lua_State* L) +static int tolua_set_Primitive_SDL_Keymod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUserUGCListSortOrder)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_Keymod)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUserUGCListSortOrder__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EItemPreviewType__value(lua_State* L) +static int tolua_get_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EItemPreviewType__value(lua_State* L) +static int tolua_set_Primitive_uiItemType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EItemPreviewType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EItemPreviewType__reference_value(lua_State* L) +static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUserUGCList__value(lua_State* L) +static int tolua_get_Primitive_DrawMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUserUGCList__value(lua_State* L) +static int tolua_set_Primitive_DrawMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUserUGCList)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUserUGCList__reference_value(lua_State* L) +static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUGCQuery__value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUGCQuery__value(lua_State* L) +static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUGCQuery)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUGCQuery__reference_value(lua_State* L) +static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EItemUpdateStatus__value(lua_State* L) +static int tolua_get_Primitive_CScreenCreateCharStep__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EItemUpdateStatus__value(lua_State* L) +static int tolua_set_Primitive_CScreenCreateCharStep__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EItemUpdateStatus)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CScreenCreateCharStep)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EItemUpdateStatus__reference_value(lua_State* L) +static int tolua_get_Primitive_CScreenCreateCharStep__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EUGCMatchingUGCType__value(lua_State* L) +static int tolua_get_Primitive_importStateType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EUGCMatchingUGCType__value(lua_State* L) +static int tolua_set_Primitive_importStateType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EUGCMatchingUGCType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (importStateType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EUGCMatchingUGCType__reference_value(lua_State* L) +static int tolua_get_Primitive_importStateType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_EItemStatistic__value(lua_State* L) +static int tolua_get_Primitive_CChitin__EngineMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_EItemStatistic__value(lua_State* L) +static int tolua_set_Primitive_CChitin__EngineMode__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (EItemStatistic)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (CChitin::EngineMode)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_EItemStatistic__reference_value(lua_State* L) +static int tolua_get_Primitive_CChitin__EngineMode__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ELeaderboardDisplayType__value(lua_State* L) +static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardDisplayType__value(lua_State* L) +static int tolua_set_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardDisplayType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DPWrapper::PEER_STATE_t)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardDisplayType__reference_value(lua_State* L) +static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ELeaderboardDataRequest__value(lua_State* L) +static int tolua_get_Primitive_DP_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardDataRequest__value(lua_State* L) +static int tolua_set_Primitive_DP_EventType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardDataRequest)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DP_EventType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardDataRequest__reference_value(lua_State* L) +static int tolua_get_Primitive_DP_EventType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ELeaderboardSortMethod__value(lua_State* L) +static int tolua_get_Primitive_DP_ProviderID__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardSortMethod__value(lua_State* L) +static int tolua_set_Primitive_DP_ProviderID__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardSortMethod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (DP_ProviderID)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardSortMethod__reference_value(lua_State* L) +static int tolua_get_Primitive_DP_ProviderID__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopFileType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (ELeaderboardUploadScoreMethod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopFileType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopVideoProvider__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DPWrapper__PEER_STATE_t__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopVideoProvider__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DPWrapper::PEER_STATE_t)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopVideoProvider)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopVideoProvider__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DP_EventType__value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DP_EventType__value(lua_State* L) +static int tolua_set_Primitive_ERemoteStoragePublishedFileVisibility__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DP_EventType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ERemoteStoragePublishedFileVisibility)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DP_EventType__reference_value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePublishedFileVisibility__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DP_ProviderID__value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePlatform__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DP_ProviderID__value(lua_State* L) +static int tolua_set_Primitive_ERemoteStoragePlatform__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DP_ProviderID)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ERemoteStoragePlatform)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DP_ProviderID__reference_value(lua_State* L) +static int tolua_get_Primitive_ERemoteStoragePlatform__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_VertListType__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_VertListType__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopFileAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (VertListType)tolua_setter_tointeger<__int8>(L, "value"); + self->value = (EWorkshopFileAction)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_VertListType__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopFileAction__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uiVariantType__value(lua_State* L) +static int tolua_get_Primitive_EUGCReadAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uiVariantType__value(lua_State* L) +static int tolua_set_Primitive_EUGCReadAction__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiVariantType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUGCReadAction)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_uiVariantType__reference_value(lua_State* L) +static int tolua_get_Primitive_EUGCReadAction__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DepthLockState__value(lua_State* L) +static int tolua_get_Primitive_EWorkshopEnumerationType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DepthLockState__value(lua_State* L) +static int tolua_set_Primitive_EWorkshopEnumerationType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DepthLockState)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EWorkshopEnumerationType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DepthLockState__reference_value(lua_State* L) +static int tolua_get_Primitive_EWorkshopEnumerationType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive__D3DFORMAT__value(lua_State* L) +static int tolua_get_Primitive_EResult__value(lua_State* L) { - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DFORMAT__value(lua_State* L) +static int tolua_set_Primitive_EResult__value(lua_State* L) { - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DFORMAT)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EResult)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DFORMAT__reference_value(lua_State* L) +static int tolua_get_Primitive_EResult__reference_value(lua_State* L) { - Primitive<_D3DFORMAT>* self = (Primitive<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DFORMAT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DFORMAT>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawFilter__value(lua_State* L) +static int tolua_get_Primitive_EUserUGCList__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawFilter__value(lua_State* L) +static int tolua_set_Primitive_EUserUGCList__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawFilter)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUserUGCList)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawFilter__reference_value(lua_State* L) +static int tolua_get_Primitive_EUserUGCList__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +static int tolua_get_Primitive_EUGCQuery__value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value(lua_State* L) +static int tolua_set_Primitive_EUGCQuery__value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DMULTISAMPLE_TYPE)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUGCQuery)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value(lua_State* L) +static int tolua_get_Primitive_EUGCQuery__reference_value(lua_State* L) { - Primitive<_D3DMULTISAMPLE_TYPE>* self = (Primitive<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DMULTISAMPLE_TYPE>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive__D3DSWAPEFFECT__value(lua_State* L) +static int tolua_get_Primitive_EUGCMatchingUGCType__value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive__D3DSWAPEFFECT__value(lua_State* L) +static int tolua_set_Primitive_EUGCMatchingUGCType__value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (_D3DSWAPEFFECT)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUGCMatchingUGCType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive__D3DSWAPEFFECT__reference_value(lua_State* L) +static int tolua_get_Primitive_EUGCMatchingUGCType__reference_value(lua_State* L) { - Primitive<_D3DSWAPEFFECT>* self = (Primitive<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<_D3DSWAPEFFECT>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<_D3DSWAPEFFECT>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_RendererType__value(lua_State* L) +static int tolua_get_Primitive_EItemStatistic__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_RendererType__value(lua_State* L) +static int tolua_set_Primitive_EItemStatistic__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (RendererType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EItemStatistic)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_RendererType__reference_value(lua_State* L) +static int tolua_get_Primitive_EItemStatistic__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawFeature__value(lua_State* L) +static int tolua_get_Primitive_EItemUpdateStatus__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawFeature__value(lua_State* L) +static int tolua_set_Primitive_EItemUpdateStatus__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawFeature)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EItemUpdateStatus)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawFeature__reference_value(lua_State* L) +static int tolua_get_Primitive_EItemUpdateStatus__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawTone__value(lua_State* L) +static int tolua_get_Primitive_EUserUGCListSortOrder__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawTone__value(lua_State* L) +static int tolua_set_Primitive_EUserUGCListSortOrder__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawTone)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EUserUGCListSortOrder)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawTone__reference_value(lua_State* L) +static int tolua_get_Primitive_EUserUGCListSortOrder__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_Keymod__value(lua_State* L) +static int tolua_get_Primitive_EItemPreviewType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_Keymod__value(lua_State* L) +static int tolua_set_Primitive_EItemPreviewType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_Keymod)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (EItemPreviewType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_Keymod__reference_value(lua_State* L) +static int tolua_get_Primitive_EItemPreviewType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawBlend__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawBlend__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardUploadScoreMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawBlend)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardUploadScoreMethod)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawBlend__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardUploadScoreMethod__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uiItemType__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardSortMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uiItemType__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardSortMethod__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (uiItemType)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardSortMethod)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_uiItemType__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardSortMethod__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DrawMode__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDataRequest__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DrawMode__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardDataRequest__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (DrawMode)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardDataRequest)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_DrawMode__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDataRequest__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_SDL_WindowFlags__value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDisplayType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_SDL_WindowFlags__value(lua_State* L) +static int tolua_set_Primitive_ELeaderboardDisplayType__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = (SDL_WindowFlags)tolua_setter_tointeger<__int32>(L, "value"); + self->value = (ELeaderboardDisplayType)tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_SDL_WindowFlags__reference_value(lua_State* L) +static int tolua_get_Primitive_ELeaderboardDisplayType__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_lua_Integer__value(lua_State* L) +static int tolua_get_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_lua_Integer__value(lua_State* L) +static int tolua_set_Primitive_int32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) +static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_double__value(lua_State* L) +static int tolua_get_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + tolua_pushboolean(L, (bool)self->value); return 1; } -static int tolua_set_Primitive_double__value(lua_State* L) +static int tolua_set_Primitive_bool__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_toboolean(L, "value"); return 0; } -static int tolua_get_Primitive_double__reference_value(lua_State* L) +static int tolua_get_Primitive_bool__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int__value(lua_State* L) +static int tolua_get_Primitive_DWORD__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int__value(lua_State* L) +static int tolua_set_Primitive_DWORD__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int__reference_value(lua_State* L) +static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_float__value(lua_State* L) +static int tolua_get_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushnumber(L, (lua_Number)self->value); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_float__value(lua_State* L) +static int tolua_set_Primitive_size_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_float__reference_value(lua_State* L) -{ - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); - return 1; -} - -static int tolua_get_Primitive_char___value(lua_State* L) +static int tolua_get_Primitive_size_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int8__value(lua_State* L) +static int tolua_get_Primitive_LONG__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int8__value(lua_State* L) +static int tolua_set_Primitive_LONG__value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int8>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int8__reference_value(lua_State* L) +static int tolua_get_Primitive_LONG__reference_value(lua_State* L) { - Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int64_t__value(lua_State* L) +static int tolua_get_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int64_t__value(lua_State* L) +static int tolua_set_Primitive_ushort__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_ushort__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_INT__value(lua_State* L) +static int tolua_get_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_INT__value(lua_State* L) +static int tolua_set_Primitive_short__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_INT__reference_value(lua_State* L) +static int tolua_get_Primitive_short__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint32_t__value(lua_State* L) +static int tolua_get_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint32_t__value(lua_State* L) +static int tolua_set_Primitive_LRESULT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint8_t__value(lua_State* L) +static int tolua_get_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint8_t__value(lua_State* L) +static int tolua_set_Primitive_UINT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_UINT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_size_t__value(lua_State* L) +static int tolua_get_Primitive_uint32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_size_t__value(lua_State* L) +static int tolua_set_Primitive_uint32_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_size_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint32_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_BOOL__value(lua_State* L) +static int tolua_get_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_BOOL__value(lua_State* L) +static int tolua_set_Primitive___int8__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int8>(L, "value"); return 0; } -static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) +static int tolua_get_Primitive___int8__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int8>* self = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int8>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int8>"); return 1; } -static int tolua_get_Primitive___int32__value(lua_State* L) +static int tolua_get_Primitive_char__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + lua_pushlstring(L, (const char*)self->value, 1); return 1; } -static int tolua_set_Primitive___int32__value(lua_State* L) +static int tolua_set_Primitive_char__value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int32>(L, "value"); + self->value = tolua_setter_tochar(L, "value"); return 0; } -static int tolua_get_Primitive___int32__reference_value(lua_State* L) +static int tolua_get_Primitive_char__reference_value(lua_State* L) { - Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)&self->value, "char"); return 1; } -static int tolua_get_Primitive_uint64_t__value(lua_State* L) +static int tolua_get_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint64_t__value(lua_State* L) +static int tolua_set_Primitive_uint__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int8_t__value(lua_State* L) +static int tolua_get_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushinteger(L, (lua_Integer)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_int8_t__value(lua_State* L) +static int tolua_set_Primitive_long_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) +static int tolua_get_Primitive_long_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_int32_t__value(lua_State* L) +static int tolua_get_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int32_t__value(lua_State* L) +static int tolua_set_Primitive_BOOL__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int32_t__reference_value(lua_State* L) +static int tolua_get_Primitive_BOOL__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive___int64__value(lua_State* L) +static int tolua_get_Primitive_HRESULT__value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int64__value(lua_State* L) +static int tolua_set_Primitive_HRESULT__value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int64>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int64__reference_value(lua_State* L) +static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) { - Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint16_t__value(lua_State* L) +static int tolua_get_Primitive_intptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint16_t__value(lua_State* L) +static int tolua_set_Primitive_intptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_DWORD__value(lua_State* L) +static int tolua_get_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_DWORD__value(lua_State* L) +static int tolua_set_Primitive_INT__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_DWORD__reference_value(lua_State* L) +static int tolua_get_Primitive_INT__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_long_double__value(lua_State* L) +static int tolua_get_Primitive_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_long_double__value(lua_State* L) +static int tolua_set_Primitive_double__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tonumber(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_long_double__reference_value(lua_State* L) +static int tolua_get_Primitive_double__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_bool__value(lua_State* L) +static int tolua_get_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushboolean(L, (bool)self->value); + tolua_pushnumber(L, (lua_Number)self->value); return 1; } -static int tolua_set_Primitive_bool__value(lua_State* L) +static int tolua_set_Primitive_float__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_toboolean(L, "value"); + self->value = tolua_setter_tonumber(L, "value"); return 0; } -static int tolua_get_Primitive_bool__reference_value(lua_State* L) +static int tolua_get_Primitive_float__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_intptr_t__value(lua_State* L) +static int tolua_get_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_intptr_t__value(lua_State* L) +static int tolua_set_Primitive_int__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_intptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive_int__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_byte__value(lua_State* L) +static int tolua_get_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_byte__value(lua_State* L) +static int tolua_set_Primitive_uint8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_byte__reference_value(lua_State* L) +static int tolua_get_Primitive_uint8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uintptr_t__value(lua_State* L) +static int tolua_get_Primitive___int64__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uintptr_t__value(lua_State* L) +static int tolua_set_Primitive___int64__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int64>(L, "value"); return 0; } -static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) +static int tolua_get_Primitive___int64__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int64>* self = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int64>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int64>"); return 1; } -static int tolua_get_Primitive_HRESULT__value(lua_State* L) +static int tolua_get_Primitive_char___value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); + tolua_pushusertype(L, (void*)&self->value, "ConstCharString"); + return 1; +} + +static int tolua_get_Primitive_int16_t__value(lua_State* L) +{ + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_HRESULT__value(lua_State* L) +static int tolua_set_Primitive_int16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_HRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_short__value(lua_State* L) +static int tolua_get_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_short__value(lua_State* L) +static int tolua_set_Primitive_int8_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_short__reference_value(lua_State* L) +static int tolua_get_Primitive_int8_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_char__value(lua_State* L) +static int tolua_get_Primitive_int64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - lua_pushlstring(L, (const char*)self->value, 1); + lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_char__value(lua_State* L) +static int tolua_set_Primitive_int64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tochar(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_char__reference_value(lua_State* L) +static int tolua_get_Primitive_int64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "char"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_LRESULT__value(lua_State* L) +static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LRESULT__value(lua_State* L) +static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_LRESULT__reference_value(lua_State* L) +static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ushort__value(lua_State* L) +static int tolua_get_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ushort__value(lua_State* L) +static int tolua_set_Primitive_long__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ushort__reference_value(lua_State* L) +static int tolua_get_Primitive_long__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_UINT__value(lua_State* L) +static int tolua_get_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_UINT__value(lua_State* L) +static int tolua_set_Primitive_uint64_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_UINT__reference_value(lua_State* L) +static int tolua_get_Primitive_uint64_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_long__value(lua_State* L) +static int tolua_get_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_long__value(lua_State* L) +static int tolua_set_Primitive___int16__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int16>(L, "value"); return 0; } -static int tolua_get_Primitive_long__reference_value(lua_State* L) +static int tolua_get_Primitive___int16__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); return 1; } -static int tolua_get_Primitive_int16_t__value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_int16_t__value(lua_State* L) +static int tolua_set_Primitive_uintptr_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_int16_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uintptr_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_uint__value(lua_State* L) +static int tolua_get_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_uint__value(lua_State* L) +static int tolua_set_Primitive___int32__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger<__int32>(L, "value"); return 0; } -static int tolua_get_Primitive_uint__reference_value(lua_State* L) +static int tolua_get_Primitive___int32__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive<__int32>* self = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int32>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive<__int32>"); return 1; } -static int tolua_get_Primitive___int16__value(lua_State* L) +static int tolua_get_Primitive_byte__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive___int16__value(lua_State* L) +static int tolua_set_Primitive_byte__value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger<__int16>(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive___int16__reference_value(lua_State* L) +static int tolua_get_Primitive_byte__reference_value(lua_State* L) { - Primitive<__int16>* self = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Primitive<__int16>"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_LONG__value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_LONG__value(lua_State* L) +static int tolua_set_Primitive_lua_Integer__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_LONG__reference_value(lua_State* L) +static int tolua_get_Primitive_lua_Integer__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } -static int tolua_get_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_get_Primitive_uint16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); lua_pushinteger(L, (lua_Integer)self->value); return 1; } -static int tolua_set_Primitive_ptrdiff_t__value(lua_State* L) +static int tolua_set_Primitive_uint16_t__value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - self->value = tolua_setter_tointeger(L, "value"); + self->value = tolua_setter_tointeger(L, "value"); return 0; } -static int tolua_get_Primitive_ptrdiff_t__reference_value(lua_State* L) +static int tolua_get_Primitive_uint16_t__reference_value(lua_State* L) { - Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); + Primitive* self = (Primitive*)tolua_tousertype_dynamic(L, 1, 0, "Primitive"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'value'", NULL); - tolua_pushusertype(L, (void*)&self->value, "Primitive"); + tolua_pushusertype(L, (void*)&self->value, "Primitive"); return 1; } @@ -3259,6 +3259,78 @@ static int tolua_get_SDL_version_reference_patch(lua_State* L) return 1; } +static int tolua_get_SDL_MessageBoxColor_r(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'r'", NULL); + lua_pushinteger(L, (lua_Integer)self->r); + return 1; +} + +static int tolua_set_SDL_MessageBoxColor_r(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'r'", NULL); + self->r = tolua_setter_tointeger(L, "r"); + return 0; +} + +static int tolua_get_SDL_MessageBoxColor_reference_r(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'r'", NULL); + tolua_pushusertype(L, (void*)&self->r, "Primitive<__int8>"); + return 1; +} + +static int tolua_get_SDL_MessageBoxColor_g(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'g'", NULL); + lua_pushinteger(L, (lua_Integer)self->g); + return 1; +} + +static int tolua_set_SDL_MessageBoxColor_g(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'g'", NULL); + self->g = tolua_setter_tointeger(L, "g"); + return 0; +} + +static int tolua_get_SDL_MessageBoxColor_reference_g(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'g'", NULL); + tolua_pushusertype(L, (void*)&self->g, "Primitive<__int8>"); + return 1; +} + +static int tolua_get_SDL_MessageBoxColor_b(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'b'", NULL); + lua_pushinteger(L, (lua_Integer)self->b); + return 1; +} + +static int tolua_set_SDL_MessageBoxColor_b(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'b'", NULL); + self->b = tolua_setter_tointeger(L, "b"); + return 0; +} + +static int tolua_get_SDL_MessageBoxColor_reference_b(lua_State* L) +{ + SDL_MessageBoxColor* self = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColor"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'b'", NULL); + tolua_pushusertype(L, (void*)&self->b, "Primitive<__int8>"); + return 1; +} + static int tolua_get_SDL_Color_r(lua_State* L) { SDL_Color* self = (SDL_Color*)tolua_tousertype_dynamic(L, 1, 0, "SDL_Color"); @@ -6639,7 +6711,7 @@ static int tolua_function_Value_f(lua_State* L) { Value* self = (Value*)tolua_tousertype_dynamic(L, 1, 0, "Value"); if (!self) tolua_error(L, "invalid 'self' in calling function 'f'", NULL); - int returnVal = self->f((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); + int returnVal = (self->f)((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -7996,6 +8068,126 @@ static int tolua_get_SDL_SysWMmsg__msg_t__win_t_reference_lParam(lua_State* L) return 1; } +static int tolua_get_SDL_SysWMinfo_version(lua_State* L) +{ + SDL_SysWMinfo* self = (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'version'", NULL); + tolua_pushusertype(L, (void*)&self->version, "SDL_version"); + return 1; +} + +static int tolua_get_SDL_SysWMinfo_subsystem(lua_State* L) +{ + SDL_SysWMinfo* self = (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'subsystem'", NULL); + lua_pushinteger(L, (lua_Integer)self->subsystem); + return 1; +} + +static int tolua_set_SDL_SysWMinfo_subsystem(lua_State* L) +{ + SDL_SysWMinfo* self = (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'subsystem'", NULL); + self->subsystem = (SDL_SYSWM_TYPE)tolua_setter_tointeger<__int32>(L, "subsystem"); + return 0; +} + +static int tolua_get_SDL_SysWMinfo_reference_subsystem(lua_State* L) +{ + SDL_SysWMinfo* self = (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'subsystem'", NULL); + tolua_pushusertype(L, (void*)&self->subsystem, "Primitive"); + return 1; +} + +static int tolua_get_SDL_SysWMinfo_info(lua_State* L) +{ + SDL_SysWMinfo* self = (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'info'", NULL); + tolua_pushusertype(L, (void*)&self->info, "SDL_SysWMinfo::info_t"); + return 1; +} + +static int tolua_get_SDL_SysWMinfo__info_t_win(lua_State* L) +{ + SDL_SysWMinfo::info_t* self = (SDL_SysWMinfo::info_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'win'", NULL); + tolua_pushusertype(L, (void*)&self->win, "SDL_SysWMinfo::info_t::win_t"); + return 1; +} + +static int tolua_get_SDL_SysWMinfo__info_t_dummy(lua_State* L) +{ + SDL_SysWMinfo::info_t* self = (SDL_SysWMinfo::info_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dummy'", NULL); + lua_pushinteger(L, (lua_Integer)self->dummy); + return 1; +} + +static int tolua_set_SDL_SysWMinfo__info_t_dummy(lua_State* L) +{ + SDL_SysWMinfo::info_t* self = (SDL_SysWMinfo::info_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dummy'", NULL); + self->dummy = tolua_setter_tointeger(L, "dummy"); + return 0; +} + +static int tolua_get_SDL_SysWMinfo__info_t_reference_dummy(lua_State* L) +{ + SDL_SysWMinfo::info_t* self = (SDL_SysWMinfo::info_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dummy'", NULL); + tolua_pushusertype(L, (void*)&self->dummy, "Primitive"); + return 1; +} + +static int tolua_get_SDL_SysWMinfo__info_t__win_t_window(lua_State* L) +{ + SDL_SysWMinfo::info_t::win_t* self = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t::win_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window'", NULL); + tolua_pushusertype(L, (void*)self->window, "HWND__"); + return 1; +} + +static int tolua_set_SDL_SysWMinfo__info_t__win_t_window(lua_State* L) +{ + SDL_SysWMinfo::info_t::win_t* self = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t::win_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window'", NULL); + self->window = (HWND__*)tolua_tousertype_dynamic(L, 2, 0, "HWND__"); + return 0; +} + +static int tolua_get_SDL_SysWMinfo__info_t__win_t_reference_window(lua_State* L) +{ + SDL_SysWMinfo::info_t::win_t* self = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t::win_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window'", NULL); + tolua_pushusertype(L, (void*)&self->window, "Pointer"); + return 1; +} + +static int tolua_get_SDL_SysWMinfo__info_t__win_t_hdc(lua_State* L) +{ + SDL_SysWMinfo::info_t::win_t* self = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t::win_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'hdc'", NULL); + tolua_pushusertype(L, (void*)self->hdc, "HDC__"); + return 1; +} + +static int tolua_set_SDL_SysWMinfo__info_t__win_t_hdc(lua_State* L) +{ + SDL_SysWMinfo::info_t::win_t* self = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t::win_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'hdc'", NULL); + self->hdc = (HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__"); + return 0; +} + +static int tolua_get_SDL_SysWMinfo__info_t__win_t_reference_hdc(lua_State* L) +{ + SDL_SysWMinfo::info_t::win_t* self = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMinfo::info_t::win_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'hdc'", NULL); + tolua_pushusertype(L, (void*)&self->hdc, "Pointer"); + return 1; +} + static int tolua_get_SDL_SysWMEvent_type(lua_State* L) { SDL_SysWMEvent* self = (SDL_SysWMEvent*)tolua_tousertype_dynamic(L, 1, 0, "SDL_SysWMEvent"); @@ -8068,6 +8260,33 @@ static int tolua_get_SDL_SysWMEvent_reference_msg(lua_State* L) return 1; } +static int tolua_function_SDL_ShapeDriver_CreateShaper(lua_State* L) +{ + SDL_ShapeDriver* self = (SDL_ShapeDriver*)tolua_tousertype_dynamic(L, 1, 0, "SDL_ShapeDriver"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'CreateShaper'", NULL); + SDL_WindowShaper* returnVal = (self->CreateShaper)((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window")); + tolua_pushusertype(L, (void*)returnVal, "SDL_WindowShaper"); + return 1; +} + +static int tolua_function_SDL_ShapeDriver_SetWindowShape(lua_State* L) +{ + SDL_ShapeDriver* self = (SDL_ShapeDriver*)tolua_tousertype_dynamic(L, 1, 0, "SDL_ShapeDriver"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowShape'", NULL); + int returnVal = (self->SetWindowShape)((SDL_WindowShaper*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShaper"), (SDL_Surface*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Surface"), (SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 4, 0, "SDL_WindowShapeMode")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_ShapeDriver_ResizeWindowShape(lua_State* L) +{ + SDL_ShapeDriver* self = (SDL_ShapeDriver*)tolua_tousertype_dynamic(L, 1, 0, "SDL_ShapeDriver"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'ResizeWindowShape'", NULL); + int returnVal = (self->ResizeWindowShape)((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + static int tolua_get_SDL_QuitEvent_type(lua_State* L) { SDL_QuitEvent* self = (SDL_QuitEvent*)tolua_tousertype_dynamic(L, 1, 0, "SDL_QuitEvent"); @@ -9052,6 +9271,198 @@ static int tolua_get_SDL_MouseButtonEvent_reference_y(lua_State* L) return 1; } +static int tolua_get_SDL_MessageBoxData_flags(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + lua_pushinteger(L, (lua_Integer)self->flags); + return 1; +} + +static int tolua_set_SDL_MessageBoxData_flags(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + self->flags = tolua_setter_tointeger(L, "flags"); + return 0; +} + +static int tolua_get_SDL_MessageBoxData_reference_flags(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + tolua_pushusertype(L, (void*)&self->flags, "Primitive"); + return 1; +} + +static int tolua_get_SDL_MessageBoxData_window(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window'", NULL); + tolua_pushusertype(L, (void*)self->window, "SDL_Window"); + return 1; +} + +static int tolua_set_SDL_MessageBoxData_window(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window'", NULL); + self->window = (SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"); + return 0; +} + +static int tolua_get_SDL_MessageBoxData_reference_window(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window'", NULL); + tolua_pushusertype(L, (void*)&self->window, "Pointer"); + return 1; +} + +static int tolua_get_SDL_MessageBoxData_title(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'title'", NULL); + tolua_pushusertype(L, (void*)&self->title, "ConstCharString"); + return 1; +} + +static int tolua_get_SDL_MessageBoxData_message(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'message'", NULL); + tolua_pushusertype(L, (void*)&self->message, "ConstCharString"); + return 1; +} + +static int tolua_get_SDL_MessageBoxData_numbuttons(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'numbuttons'", NULL); + lua_pushinteger(L, (lua_Integer)self->numbuttons); + return 1; +} + +static int tolua_set_SDL_MessageBoxData_numbuttons(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'numbuttons'", NULL); + self->numbuttons = tolua_setter_tointeger(L, "numbuttons"); + return 0; +} + +static int tolua_get_SDL_MessageBoxData_reference_numbuttons(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'numbuttons'", NULL); + tolua_pushusertype(L, (void*)&self->numbuttons, "Primitive"); + return 1; +} + +static int tolua_get_SDL_MessageBoxData_buttons(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buttons'", NULL); + tolua_pushusertype(L, (void*)self->buttons, "SDL_MessageBoxButtonData"); + return 1; +} + +static int tolua_set_SDL_MessageBoxData_buttons(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buttons'", NULL); + self->buttons = (const SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxButtonData"); + return 0; +} + +static int tolua_get_SDL_MessageBoxData_reference_buttons(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buttons'", NULL); + tolua_pushusertype(L, (void*)&self->buttons, "Pointer"); + return 1; +} + +static int tolua_get_SDL_MessageBoxData_colorScheme(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'colorScheme'", NULL); + tolua_pushusertype(L, (void*)self->colorScheme, "SDL_MessageBoxColorScheme"); + return 1; +} + +static int tolua_set_SDL_MessageBoxData_colorScheme(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'colorScheme'", NULL); + self->colorScheme = (const SDL_MessageBoxColorScheme*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxColorScheme"); + return 0; +} + +static int tolua_get_SDL_MessageBoxData_reference_colorScheme(lua_State* L) +{ + SDL_MessageBoxData* self = (SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'colorScheme'", NULL); + tolua_pushusertype(L, (void*)&self->colorScheme, "Pointer"); + return 1; +} + +static int tolua_get_SDL_MessageBoxButtonData_flags(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + lua_pushinteger(L, (lua_Integer)self->flags); + return 1; +} + +static int tolua_set_SDL_MessageBoxButtonData_flags(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + self->flags = tolua_setter_tointeger(L, "flags"); + return 0; +} + +static int tolua_get_SDL_MessageBoxButtonData_reference_flags(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + tolua_pushusertype(L, (void*)&self->flags, "Primitive"); + return 1; +} + +static int tolua_get_SDL_MessageBoxButtonData_buttonid(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buttonid'", NULL); + lua_pushinteger(L, (lua_Integer)self->buttonid); + return 1; +} + +static int tolua_set_SDL_MessageBoxButtonData_buttonid(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buttonid'", NULL); + self->buttonid = tolua_setter_tointeger(L, "buttonid"); + return 0; +} + +static int tolua_get_SDL_MessageBoxButtonData_reference_buttonid(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buttonid'", NULL); + tolua_pushusertype(L, (void*)&self->buttonid, "Primitive"); + return 1; +} + +static int tolua_get_SDL_MessageBoxButtonData_text(lua_State* L) +{ + SDL_MessageBoxButtonData* self = (SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxButtonData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'text'", NULL); + tolua_pushusertype(L, (void*)&self->text, "ConstCharString"); + return 1; +} + static int tolua_get_SDL_Keysym_scancode(lua_State* L) { SDL_Keysym* self = (SDL_Keysym*)tolua_tousertype_dynamic(L, 1, 0, "SDL_Keysym"); @@ -10164,6 +10575,447 @@ static int tolua_get_SDL_JoyAxisEvent_reference_padding4(lua_State* L) return 1; } +static int tolua_get_SDL_GLDriverData_HAS_WGL_ARB_pixel_format(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_ARB_pixel_format'", NULL); + lua_pushinteger(L, (lua_Integer)self->HAS_WGL_ARB_pixel_format); + return 1; +} + +static int tolua_set_SDL_GLDriverData_HAS_WGL_ARB_pixel_format(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_ARB_pixel_format'", NULL); + self->HAS_WGL_ARB_pixel_format = (SDL_bool)tolua_setter_tointeger<__int32>(L, "HAS_WGL_ARB_pixel_format"); + return 0; +} + +static int tolua_get_SDL_GLDriverData_reference_HAS_WGL_ARB_pixel_format(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_ARB_pixel_format'", NULL); + tolua_pushusertype(L, (void*)&self->HAS_WGL_ARB_pixel_format, "Primitive"); + return 1; +} + +static int tolua_get_SDL_GLDriverData_HAS_WGL_EXT_swap_control_tear(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_EXT_swap_control_tear'", NULL); + lua_pushinteger(L, (lua_Integer)self->HAS_WGL_EXT_swap_control_tear); + return 1; +} + +static int tolua_set_SDL_GLDriverData_HAS_WGL_EXT_swap_control_tear(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_EXT_swap_control_tear'", NULL); + self->HAS_WGL_EXT_swap_control_tear = (SDL_bool)tolua_setter_tointeger<__int32>(L, "HAS_WGL_EXT_swap_control_tear"); + return 0; +} + +static int tolua_get_SDL_GLDriverData_reference_HAS_WGL_EXT_swap_control_tear(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_EXT_swap_control_tear'", NULL); + tolua_pushusertype(L, (void*)&self->HAS_WGL_EXT_swap_control_tear, "Primitive"); + return 1; +} + +static int tolua_get_SDL_GLDriverData_HAS_WGL_EXT_create_context_es2_profile(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_EXT_create_context_es2_profile'", NULL); + lua_pushinteger(L, (lua_Integer)self->HAS_WGL_EXT_create_context_es2_profile); + return 1; +} + +static int tolua_set_SDL_GLDriverData_HAS_WGL_EXT_create_context_es2_profile(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_EXT_create_context_es2_profile'", NULL); + self->HAS_WGL_EXT_create_context_es2_profile = (SDL_bool)tolua_setter_tointeger<__int32>(L, "HAS_WGL_EXT_create_context_es2_profile"); + return 0; +} + +static int tolua_get_SDL_GLDriverData_reference_HAS_WGL_EXT_create_context_es2_profile(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_EXT_create_context_es2_profile'", NULL); + tolua_pushusertype(L, (void*)&self->HAS_WGL_EXT_create_context_es2_profile, "Primitive"); + return 1; +} + +static int tolua_get_SDL_GLDriverData_HAS_WGL_ARB_context_flush_control(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_ARB_context_flush_control'", NULL); + lua_pushinteger(L, (lua_Integer)self->HAS_WGL_ARB_context_flush_control); + return 1; +} + +static int tolua_set_SDL_GLDriverData_HAS_WGL_ARB_context_flush_control(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_ARB_context_flush_control'", NULL); + self->HAS_WGL_ARB_context_flush_control = (SDL_bool)tolua_setter_tointeger<__int32>(L, "HAS_WGL_ARB_context_flush_control"); + return 0; +} + +static int tolua_get_SDL_GLDriverData_reference_HAS_WGL_ARB_context_flush_control(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'HAS_WGL_ARB_context_flush_control'", NULL); + tolua_pushusertype(L, (void*)&self->HAS_WGL_ARB_context_flush_control, "Primitive"); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglGetProcAddress(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglGetProcAddress'", NULL); + void* returnVal = (self->wglGetProcAddress)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglCreateContext(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglCreateContext'", NULL); + HGLRC__* returnVal = (self->wglCreateContext)((HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__")); + tolua_pushusertype(L, (void*)returnVal, "HGLRC__"); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglDeleteContext(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglDeleteContext'", NULL); + int returnVal = (self->wglDeleteContext)((HGLRC__*)tolua_tousertype_dynamic(L, 2, 0, "HGLRC__")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglMakeCurrent(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglMakeCurrent'", NULL); + int returnVal = (self->wglMakeCurrent)((HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__"), (HGLRC__*)tolua_tousertype_dynamic(L, 3, 0, "HGLRC__")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglShareLists(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglShareLists'", NULL); + int returnVal = (self->wglShareLists)((HGLRC__*)tolua_tousertype_dynamic(L, 2, 0, "HGLRC__"), (HGLRC__*)tolua_tousertype_dynamic(L, 3, 0, "HGLRC__")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglChoosePixelFormatARB(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglChoosePixelFormatARB'", NULL); + int returnVal = (self->wglChoosePixelFormatARB)((HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__"), (const int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (const float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "wglChoosePixelFormatARB"), (int*)tolua_tousertype_dynamic(L, 6, 0, "Primitive"), (unsigned int*)tolua_tousertype_dynamic(L, 7, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglGetPixelFormatAttribivARB(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglGetPixelFormatAttribivARB'", NULL); + int returnVal = (self->wglGetPixelFormatAttribivARB)((HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__"), tolua_function_tointeger(L, 3, "wglGetPixelFormatAttribivARB"), tolua_function_tointeger(L, 4, "wglGetPixelFormatAttribivARB"), tolua_function_tointeger(L, 5, "wglGetPixelFormatAttribivARB"), (const int*)tolua_tousertype_dynamic(L, 6, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 7, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglSwapIntervalEXT(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglSwapIntervalEXT'", NULL); + int returnVal = (self->wglSwapIntervalEXT)(tolua_function_tointeger(L, 2, "wglSwapIntervalEXT")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_GLDriverData_wglGetSwapIntervalEXT(lua_State* L) +{ + SDL_GLDriverData* self = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_GLDriverData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'wglGetSwapIntervalEXT'", NULL); + int returnVal = (self->wglGetSwapIntervalEXT)(); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_get_SDL_EGL_VideoData_egl_dll_handle(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_dll_handle'", NULL); + tolua_pushusertype(L, (void*)self->egl_dll_handle, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_EGL_VideoData_egl_dll_handle(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_dll_handle'", NULL); + self->egl_dll_handle = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_EGL_VideoData_reference_egl_dll_handle(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_dll_handle'", NULL); + tolua_pushusertype(L, (void*)&self->egl_dll_handle, "VoidPointer"); + return 1; +} + +static int tolua_get_SDL_EGL_VideoData_dll_handle(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dll_handle'", NULL); + tolua_pushusertype(L, (void*)self->dll_handle, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_EGL_VideoData_dll_handle(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dll_handle'", NULL); + self->dll_handle = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_EGL_VideoData_reference_dll_handle(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dll_handle'", NULL); + tolua_pushusertype(L, (void*)&self->dll_handle, "VoidPointer"); + return 1; +} + +static int tolua_get_SDL_EGL_VideoData_egl_display(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_display'", NULL); + tolua_pushusertype(L, (void*)self->egl_display, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_EGL_VideoData_egl_display(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_display'", NULL); + self->egl_display = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_EGL_VideoData_reference_egl_display(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_display'", NULL); + tolua_pushusertype(L, (void*)&self->egl_display, "VoidPointer"); + return 1; +} + +static int tolua_get_SDL_EGL_VideoData_egl_config(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_config'", NULL); + tolua_pushusertype(L, (void*)self->egl_config, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_EGL_VideoData_egl_config(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_config'", NULL); + self->egl_config = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_EGL_VideoData_reference_egl_config(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_config'", NULL); + tolua_pushusertype(L, (void*)&self->egl_config, "VoidPointer"); + return 1; +} + +static int tolua_get_SDL_EGL_VideoData_egl_swapinterval(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_swapinterval'", NULL); + lua_pushinteger(L, (lua_Integer)self->egl_swapinterval); + return 1; +} + +static int tolua_set_SDL_EGL_VideoData_egl_swapinterval(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_swapinterval'", NULL); + self->egl_swapinterval = tolua_setter_tointeger(L, "egl_swapinterval"); + return 0; +} + +static int tolua_get_SDL_EGL_VideoData_reference_egl_swapinterval(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_swapinterval'", NULL); + tolua_pushusertype(L, (void*)&self->egl_swapinterval, "Primitive"); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglGetDisplay(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglGetDisplay'", NULL); + void* returnVal = (self->eglGetDisplay)((HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglInitialize(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglInitialize'", NULL); + unsigned int returnVal = (self->eglInitialize)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglTerminate(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglTerminate'", NULL); + unsigned int returnVal = (self->eglTerminate)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglGetProcAddress(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglGetProcAddress'", NULL); + void* returnVal = (self->eglGetProcAddress)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglChooseConfig(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglChooseConfig'", NULL); + unsigned int returnVal = (self->eglChooseConfig)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (const int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (void**)tolua_tousertype_dynamic(L, 4, 0, "VoidPointer"), tolua_function_tointeger(L, 5, "eglChooseConfig"), (int*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglCreateContext(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglCreateContext'", NULL); + void* returnVal = (self->eglCreateContext)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 4, 0, "UnmappedUserType"), (const int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglDestroyContext(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglDestroyContext'", NULL); + unsigned int returnVal = (self->eglDestroyContext)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglCreateWindowSurface(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglCreateWindowSurface'", NULL); + void* returnVal = (self->eglCreateWindowSurface)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), (HWND__*)tolua_tousertype_dynamic(L, 4, 0, "HWND__"), (const int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglDestroySurface(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglDestroySurface'", NULL); + unsigned int returnVal = (self->eglDestroySurface)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglMakeCurrent(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglMakeCurrent'", NULL); + unsigned int returnVal = (self->eglMakeCurrent)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 4, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 5, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglSwapBuffers(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglSwapBuffers'", NULL); + unsigned int returnVal = (self->eglSwapBuffers)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglSwapInterval(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglSwapInterval'", NULL); + unsigned int returnVal = (self->eglSwapInterval)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "eglSwapInterval")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglGetConfigAttrib(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglGetConfigAttrib'", NULL); + unsigned int returnVal = (self->eglGetConfigAttrib)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "eglGetConfigAttrib"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglWaitNative(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglWaitNative'", NULL); + unsigned int returnVal = (self->eglWaitNative)(tolua_function_tointeger(L, 2, "eglWaitNative")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglWaitGL(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglWaitGL'", NULL); + unsigned int returnVal = (self->eglWaitGL)(); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_EGL_VideoData_eglBindAPI(lua_State* L) +{ + SDL_EGL_VideoData* self = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 1, 0, "SDL_EGL_VideoData"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'eglBindAPI'", NULL); + unsigned int returnVal = (self->eglBindAPI)(tolua_function_tointeger(L, 2, "eglBindAPI")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + static int tolua_get_SDL_DropEvent_type(lua_State* L) { SDL_DropEvent* self = (SDL_DropEvent*)tolua_tousertype_dynamic(L, 1, 0, "SDL_DropEvent"); @@ -10532,6 +11384,174 @@ static int tolua_get_SDL_DisplayMode_reference_driverdata(lua_State* L) return 1; } +static int tolua_get_SDL_VideoDisplay_name(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'name'", NULL); + tolua_pushusertype(L, (void*)&self->name, "CharString"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_max_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'max_display_modes'", NULL); + lua_pushinteger(L, (lua_Integer)self->max_display_modes); + return 1; +} + +static int tolua_set_SDL_VideoDisplay_max_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'max_display_modes'", NULL); + self->max_display_modes = tolua_setter_tointeger(L, "max_display_modes"); + return 0; +} + +static int tolua_get_SDL_VideoDisplay_reference_max_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'max_display_modes'", NULL); + tolua_pushusertype(L, (void*)&self->max_display_modes, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_num_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'num_display_modes'", NULL); + lua_pushinteger(L, (lua_Integer)self->num_display_modes); + return 1; +} + +static int tolua_set_SDL_VideoDisplay_num_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'num_display_modes'", NULL); + self->num_display_modes = tolua_setter_tointeger(L, "num_display_modes"); + return 0; +} + +static int tolua_get_SDL_VideoDisplay_reference_num_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'num_display_modes'", NULL); + tolua_pushusertype(L, (void*)&self->num_display_modes, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'display_modes'", NULL); + tolua_pushusertype(L, (void*)self->display_modes, "SDL_DisplayMode"); + return 1; +} + +static int tolua_set_SDL_VideoDisplay_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'display_modes'", NULL); + self->display_modes = (SDL_DisplayMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DisplayMode"); + return 0; +} + +static int tolua_get_SDL_VideoDisplay_reference_display_modes(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'display_modes'", NULL); + tolua_pushusertype(L, (void*)&self->display_modes, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_desktop_mode(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'desktop_mode'", NULL); + tolua_pushusertype(L, (void*)&self->desktop_mode, "SDL_DisplayMode"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_current_mode(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_mode'", NULL); + tolua_pushusertype(L, (void*)&self->current_mode, "SDL_DisplayMode"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_fullscreen_window(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'fullscreen_window'", NULL); + tolua_pushusertype(L, (void*)self->fullscreen_window, "SDL_Window"); + return 1; +} + +static int tolua_set_SDL_VideoDisplay_fullscreen_window(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'fullscreen_window'", NULL); + self->fullscreen_window = (SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"); + return 0; +} + +static int tolua_get_SDL_VideoDisplay_reference_fullscreen_window(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'fullscreen_window'", NULL); + tolua_pushusertype(L, (void*)&self->fullscreen_window, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_device(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'device'", NULL); + tolua_pushusertype(L, (void*)self->device, "SDL_VideoDevice"); + return 1; +} + +static int tolua_set_SDL_VideoDisplay_device(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'device'", NULL); + self->device = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"); + return 0; +} + +static int tolua_get_SDL_VideoDisplay_reference_device(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'device'", NULL); + tolua_pushusertype(L, (void*)&self->device, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDisplay_driverdata(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driverdata'", NULL); + tolua_pushusertype(L, (void*)self->driverdata, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_VideoDisplay_driverdata(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driverdata'", NULL); + self->driverdata = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_VideoDisplay_reference_driverdata(lua_State* L) +{ + SDL_VideoDisplay* self = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDisplay"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driverdata'", NULL); + tolua_pushusertype(L, (void*)&self->driverdata, "VoidPointer"); + return 1; +} + static int tolua_get_SDL_ControllerDeviceEvent_type(lua_State* L) { SDL_ControllerDeviceEvent* self = (SDL_ControllerDeviceEvent*)tolua_tousertype_dynamic(L, 1, 0, "SDL_ControllerDeviceEvent"); @@ -11624,7 +12644,7 @@ static int tolua_function_SDL_BlitMap_blit(lua_State* L) { SDL_BlitMap* self = (SDL_BlitMap*)tolua_tousertype_dynamic(L, 1, 0, "SDL_BlitMap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'blit'", NULL); - int returnVal = self->blit((SDL_Surface*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Surface"), (SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect"), (SDL_Surface*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Surface"), (SDL_Rect*)tolua_tousertype_dynamic(L, 5, 0, "SDL_Rect")); + int returnVal = (self->blit)((SDL_Surface*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Surface"), (SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect"), (SDL_Surface*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Surface"), (SDL_Rect*)tolua_tousertype_dynamic(L, 5, 0, "SDL_Rect")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13577,7 +14597,7 @@ static int tolua_function_ISteamUserStats_virtual_RequestCurrentStats(lua_State* { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestCurrentStats'", NULL); - bool returnVal = self->virtual_RequestCurrentStats(); + bool returnVal = (self->virtual_RequestCurrentStats)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13586,7 +14606,7 @@ static int tolua_function_ISteamUserStats_virtual_GetStat(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetStat'", NULL); - bool returnVal = self->virtual_GetStat(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + bool returnVal = (self->virtual_GetStat)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13595,7 +14615,7 @@ static int tolua_function_ISteamUserStats_virtual_GetStat_2(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetStat_2'", NULL); - bool returnVal = self->virtual_GetStat_2(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + bool returnVal = (self->virtual_GetStat_2)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13604,7 +14624,7 @@ static int tolua_function_ISteamUserStats_virtual_SetStat(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetStat'", NULL); - bool returnVal = self->virtual_SetStat(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tonumber(L, 3, "virtual_SetStat")); + bool returnVal = (self->virtual_SetStat)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tonumber(L, 3, "virtual_SetStat")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13613,7 +14633,7 @@ static int tolua_function_ISteamUserStats_virtual_SetStat_2(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetStat_2'", NULL); - bool returnVal = self->virtual_SetStat_2(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_SetStat_2")); + bool returnVal = (self->virtual_SetStat_2)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_SetStat_2")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13622,7 +14642,7 @@ static int tolua_function_ISteamUserStats_virtual_UpdateAvgRateStat(lua_State* L { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateAvgRateStat'", NULL); - bool returnVal = self->virtual_UpdateAvgRateStat(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tonumber(L, 3, "virtual_UpdateAvgRateStat"), tolua_function_tonumber(L, 4, "virtual_UpdateAvgRateStat")); + bool returnVal = (self->virtual_UpdateAvgRateStat)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tonumber(L, 3, "virtual_UpdateAvgRateStat"), tolua_function_tonumber(L, 4, "virtual_UpdateAvgRateStat")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13631,7 +14651,7 @@ static int tolua_function_ISteamUserStats_virtual_GetAchievement(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAchievement'", NULL); - bool returnVal = self->virtual_GetAchievement(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + bool returnVal = (self->virtual_GetAchievement)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13640,7 +14660,7 @@ static int tolua_function_ISteamUserStats_virtual_SetAchievement(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetAchievement'", NULL); - bool returnVal = self->virtual_SetAchievement(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetAchievement)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13649,7 +14669,7 @@ static int tolua_function_ISteamUserStats_virtual_ClearAchievement(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ClearAchievement'", NULL); - bool returnVal = self->virtual_ClearAchievement(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + bool returnVal = (self->virtual_ClearAchievement)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13658,7 +14678,7 @@ static int tolua_function_ISteamUserStats_virtual_GetAchievementAndUnlockTime(lu { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAchievementAndUnlockTime'", NULL); - bool returnVal = self->virtual_GetAchievementAndUnlockTime(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetAchievementAndUnlockTime)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13667,7 +14687,7 @@ static int tolua_function_ISteamUserStats_virtual_StoreStats(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StoreStats'", NULL); - bool returnVal = self->virtual_StoreStats(); + bool returnVal = (self->virtual_StoreStats)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13676,7 +14696,7 @@ static int tolua_function_ISteamUserStats_virtual_GetAchievementIcon(lua_State* { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAchievementIcon'", NULL); - int returnVal = self->virtual_GetAchievementIcon(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + int returnVal = (self->virtual_GetAchievementIcon)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13685,7 +14705,7 @@ static int tolua_function_ISteamUserStats_virtual_IndicateAchievementProgress(lu { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IndicateAchievementProgress'", NULL); - bool returnVal = self->virtual_IndicateAchievementProgress(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_IndicateAchievementProgress"), tolua_function_tointeger(L, 4, "virtual_IndicateAchievementProgress")); + bool returnVal = (self->virtual_IndicateAchievementProgress)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_IndicateAchievementProgress"), tolua_function_tointeger(L, 4, "virtual_IndicateAchievementProgress")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13694,7 +14714,7 @@ static int tolua_function_ISteamUserStats_virtual_GetNumAchievements(lua_State* { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNumAchievements'", NULL); - unsigned int returnVal = self->virtual_GetNumAchievements(); + unsigned int returnVal = (self->virtual_GetNumAchievements)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13703,7 +14723,7 @@ static int tolua_function_ISteamUserStats_virtual_RequestUserStats(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestUserStats'", NULL); - unsigned __int64 returnVal = self->virtual_RequestUserStats(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID")); + unsigned __int64 returnVal = (self->virtual_RequestUserStats)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13712,7 +14732,7 @@ static int tolua_function_ISteamUserStats_virtual_GetUserStat(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUserStat'", NULL); - bool returnVal = self->virtual_GetUserStat(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetUserStat)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13721,7 +14741,7 @@ static int tolua_function_ISteamUserStats_virtual_GetUserStat_2(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUserStat_2'", NULL); - bool returnVal = self->virtual_GetUserStat_2(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetUserStat_2)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13730,7 +14750,7 @@ static int tolua_function_ISteamUserStats_virtual_GetUserAchievement(lua_State* { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUserAchievement'", NULL); - bool returnVal = self->virtual_GetUserAchievement(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetUserAchievement)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13739,7 +14759,7 @@ static int tolua_function_ISteamUserStats_virtual_GetUserAchievementAndUnlockTim { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUserAchievementAndUnlockTime'", NULL); - bool returnVal = self->virtual_GetUserAchievementAndUnlockTime(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (unsigned int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); + bool returnVal = (self->virtual_GetUserAchievementAndUnlockTime)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (bool*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (unsigned int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13748,7 +14768,7 @@ static int tolua_function_ISteamUserStats_virtual_ResetAllStats(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ResetAllStats'", NULL); - bool returnVal = self->virtual_ResetAllStats(tolua_function_toboolean(L, 2, "virtual_ResetAllStats")); + bool returnVal = (self->virtual_ResetAllStats)(tolua_function_toboolean(L, 2, "virtual_ResetAllStats")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13757,7 +14777,7 @@ static int tolua_function_ISteamUserStats_virtual_FindOrCreateLeaderboard(lua_St { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FindOrCreateLeaderboard'", NULL); - unsigned __int64 returnVal = self->virtual_FindOrCreateLeaderboard(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (ELeaderboardSortMethod)tolua_function_tointeger<__int32>(L, 3, "virtual_FindOrCreateLeaderboard"), (ELeaderboardDisplayType)tolua_function_tointeger<__int32>(L, 4, "virtual_FindOrCreateLeaderboard")); + unsigned __int64 returnVal = (self->virtual_FindOrCreateLeaderboard)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (ELeaderboardSortMethod)tolua_function_tointeger<__int32>(L, 3, "virtual_FindOrCreateLeaderboard"), (ELeaderboardDisplayType)tolua_function_tointeger<__int32>(L, 4, "virtual_FindOrCreateLeaderboard")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13766,7 +14786,7 @@ static int tolua_function_ISteamUserStats_virtual_FindLeaderboard(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FindLeaderboard'", NULL); - unsigned __int64 returnVal = self->virtual_FindLeaderboard(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + unsigned __int64 returnVal = (self->virtual_FindLeaderboard)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13775,7 +14795,7 @@ static int tolua_function_ISteamUserStats_virtual_GetLeaderboardEntryCount(lua_S { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetLeaderboardEntryCount'", NULL); - int returnVal = self->virtual_GetLeaderboardEntryCount(tolua_function_tointeger(L, 2, "virtual_GetLeaderboardEntryCount")); + int returnVal = (self->virtual_GetLeaderboardEntryCount)(tolua_function_tointeger(L, 2, "virtual_GetLeaderboardEntryCount")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13784,7 +14804,7 @@ static int tolua_function_ISteamUserStats_virtual_GetLeaderboardSortMethod(lua_S { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetLeaderboardSortMethod'", NULL); - ELeaderboardSortMethod returnVal = self->virtual_GetLeaderboardSortMethod(tolua_function_tointeger(L, 2, "virtual_GetLeaderboardSortMethod")); + ELeaderboardSortMethod returnVal = (self->virtual_GetLeaderboardSortMethod)(tolua_function_tointeger(L, 2, "virtual_GetLeaderboardSortMethod")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13793,7 +14813,7 @@ static int tolua_function_ISteamUserStats_virtual_GetLeaderboardDisplayType(lua_ { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetLeaderboardDisplayType'", NULL); - ELeaderboardDisplayType returnVal = self->virtual_GetLeaderboardDisplayType(tolua_function_tointeger(L, 2, "virtual_GetLeaderboardDisplayType")); + ELeaderboardDisplayType returnVal = (self->virtual_GetLeaderboardDisplayType)(tolua_function_tointeger(L, 2, "virtual_GetLeaderboardDisplayType")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13802,7 +14822,7 @@ static int tolua_function_ISteamUserStats_virtual_DownloadLeaderboardEntries(lua { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DownloadLeaderboardEntries'", NULL); - unsigned __int64 returnVal = self->virtual_DownloadLeaderboardEntries(tolua_function_tointeger(L, 2, "virtual_DownloadLeaderboardEntries"), (ELeaderboardDataRequest)tolua_function_tointeger<__int32>(L, 3, "virtual_DownloadLeaderboardEntries"), tolua_function_tointeger(L, 4, "virtual_DownloadLeaderboardEntries"), tolua_function_tointeger(L, 5, "virtual_DownloadLeaderboardEntries")); + unsigned __int64 returnVal = (self->virtual_DownloadLeaderboardEntries)(tolua_function_tointeger(L, 2, "virtual_DownloadLeaderboardEntries"), (ELeaderboardDataRequest)tolua_function_tointeger<__int32>(L, 3, "virtual_DownloadLeaderboardEntries"), tolua_function_tointeger(L, 4, "virtual_DownloadLeaderboardEntries"), tolua_function_tointeger(L, 5, "virtual_DownloadLeaderboardEntries")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13811,7 +14831,7 @@ static int tolua_function_ISteamUserStats_virtual_DownloadLeaderboardEntriesForU { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DownloadLeaderboardEntriesForUsers'", NULL); - unsigned __int64 returnVal = self->virtual_DownloadLeaderboardEntriesForUsers(tolua_function_tointeger(L, 2, "virtual_DownloadLeaderboardEntriesForUsers"), (CSteamID*)tolua_tousertype_dynamic(L, 3, 0, "CSteamID"), tolua_function_tointeger(L, 4, "virtual_DownloadLeaderboardEntriesForUsers")); + unsigned __int64 returnVal = (self->virtual_DownloadLeaderboardEntriesForUsers)(tolua_function_tointeger(L, 2, "virtual_DownloadLeaderboardEntriesForUsers"), (CSteamID*)tolua_tousertype_dynamic(L, 3, 0, "CSteamID"), tolua_function_tointeger(L, 4, "virtual_DownloadLeaderboardEntriesForUsers")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13820,7 +14840,7 @@ static int tolua_function_ISteamUserStats_virtual_GetDownloadedLeaderboardEntry( { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetDownloadedLeaderboardEntry'", NULL); - bool returnVal = self->virtual_GetDownloadedLeaderboardEntry(tolua_function_tointeger(L, 2, "virtual_GetDownloadedLeaderboardEntry"), tolua_function_tointeger(L, 3, "virtual_GetDownloadedLeaderboardEntry"), (LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 4, 0, "LeaderboardEntry_t"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "virtual_GetDownloadedLeaderboardEntry")); + bool returnVal = (self->virtual_GetDownloadedLeaderboardEntry)(tolua_function_tointeger(L, 2, "virtual_GetDownloadedLeaderboardEntry"), tolua_function_tointeger(L, 3, "virtual_GetDownloadedLeaderboardEntry"), (LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 4, 0, "LeaderboardEntry_t"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "virtual_GetDownloadedLeaderboardEntry")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13829,7 +14849,7 @@ static int tolua_function_ISteamUserStats_virtual_UploadLeaderboardScore(lua_Sta { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UploadLeaderboardScore'", NULL); - unsigned __int64 returnVal = self->virtual_UploadLeaderboardScore(tolua_function_tointeger(L, 2, "virtual_UploadLeaderboardScore"), (ELeaderboardUploadScoreMethod)tolua_function_tointeger<__int32>(L, 3, "virtual_UploadLeaderboardScore"), tolua_function_tointeger(L, 4, "virtual_UploadLeaderboardScore"), (const int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "virtual_UploadLeaderboardScore")); + unsigned __int64 returnVal = (self->virtual_UploadLeaderboardScore)(tolua_function_tointeger(L, 2, "virtual_UploadLeaderboardScore"), (ELeaderboardUploadScoreMethod)tolua_function_tointeger<__int32>(L, 3, "virtual_UploadLeaderboardScore"), tolua_function_tointeger(L, 4, "virtual_UploadLeaderboardScore"), (const int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "virtual_UploadLeaderboardScore")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13838,7 +14858,7 @@ static int tolua_function_ISteamUserStats_virtual_AttachLeaderboardUGC(lua_State { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AttachLeaderboardUGC'", NULL); - unsigned __int64 returnVal = self->virtual_AttachLeaderboardUGC(tolua_function_tointeger(L, 2, "virtual_AttachLeaderboardUGC"), tolua_function_tointeger(L, 3, "virtual_AttachLeaderboardUGC")); + unsigned __int64 returnVal = (self->virtual_AttachLeaderboardUGC)(tolua_function_tointeger(L, 2, "virtual_AttachLeaderboardUGC"), tolua_function_tointeger(L, 3, "virtual_AttachLeaderboardUGC")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13847,7 +14867,7 @@ static int tolua_function_ISteamUserStats_virtual_GetNumberOfCurrentPlayers(lua_ { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNumberOfCurrentPlayers'", NULL); - unsigned __int64 returnVal = self->virtual_GetNumberOfCurrentPlayers(); + unsigned __int64 returnVal = (self->virtual_GetNumberOfCurrentPlayers)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13856,7 +14876,7 @@ static int tolua_function_ISteamUserStats_virtual_RequestGlobalAchievementPercen { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestGlobalAchievementPercentages'", NULL); - unsigned __int64 returnVal = self->virtual_RequestGlobalAchievementPercentages(); + unsigned __int64 returnVal = (self->virtual_RequestGlobalAchievementPercentages)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13865,7 +14885,7 @@ static int tolua_function_ISteamUserStats_virtual_GetMostAchievedAchievementInfo { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMostAchievedAchievementInfo'", NULL); - int returnVal = self->virtual_GetMostAchievedAchievementInfo(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString"), tolua_function_tointeger(L, 3, "virtual_GetMostAchievedAchievementInfo"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (bool*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); + int returnVal = (self->virtual_GetMostAchievedAchievementInfo)(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString"), tolua_function_tointeger(L, 3, "virtual_GetMostAchievedAchievementInfo"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (bool*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13874,7 +14894,7 @@ static int tolua_function_ISteamUserStats_virtual_GetNextMostAchievedAchievement { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNextMostAchievedAchievementInfo'", NULL); - int returnVal = self->virtual_GetNextMostAchievedAchievementInfo(tolua_function_tointeger(L, 2, "virtual_GetNextMostAchievedAchievementInfo"), *(char**)tolua_tousertype_dynamic(L, 3, 0, "CharString"), tolua_function_tointeger(L, 4, "virtual_GetNextMostAchievedAchievementInfo"), (float*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (bool*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); + int returnVal = (self->virtual_GetNextMostAchievedAchievementInfo)(tolua_function_tointeger(L, 2, "virtual_GetNextMostAchievedAchievementInfo"), *(char**)tolua_tousertype_dynamic(L, 3, 0, "CharString"), tolua_function_tointeger(L, 4, "virtual_GetNextMostAchievedAchievementInfo"), (float*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (bool*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13883,7 +14903,7 @@ static int tolua_function_ISteamUserStats_virtual_GetAchievementAchievedPercent( { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAchievementAchievedPercent'", NULL); - bool returnVal = self->virtual_GetAchievementAchievedPercent(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + bool returnVal = (self->virtual_GetAchievementAchievedPercent)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13892,7 +14912,7 @@ static int tolua_function_ISteamUserStats_virtual_RequestGlobalStats(lua_State* { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestGlobalStats'", NULL); - unsigned __int64 returnVal = self->virtual_RequestGlobalStats(tolua_function_tointeger(L, 2, "virtual_RequestGlobalStats")); + unsigned __int64 returnVal = (self->virtual_RequestGlobalStats)(tolua_function_tointeger(L, 2, "virtual_RequestGlobalStats")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13901,7 +14921,7 @@ static int tolua_function_ISteamUserStats_virtual_GetGlobalStat(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGlobalStat'", NULL); - bool returnVal = self->virtual_GetGlobalStat(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (long double*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + bool returnVal = (self->virtual_GetGlobalStat)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (long double*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13910,7 +14930,7 @@ static int tolua_function_ISteamUserStats_virtual_GetGlobalStat_2(lua_State* L) { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGlobalStat_2'", NULL); - bool returnVal = self->virtual_GetGlobalStat_2(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (__int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>")); + bool returnVal = (self->virtual_GetGlobalStat_2)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (__int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13919,7 +14939,7 @@ static int tolua_function_ISteamUserStats_virtual_GetGlobalStatHistory(lua_State { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGlobalStatHistory'", NULL); - int returnVal = self->virtual_GetGlobalStatHistory(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (long double*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), tolua_function_tointeger(L, 4, "virtual_GetGlobalStatHistory")); + int returnVal = (self->virtual_GetGlobalStatHistory)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (long double*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), tolua_function_tointeger(L, 4, "virtual_GetGlobalStatHistory")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13928,7 +14948,7 @@ static int tolua_function_ISteamUserStats_virtual_GetGlobalStatHistory_2(lua_Sta { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGlobalStatHistory_2'", NULL); - int returnVal = self->virtual_GetGlobalStatHistory_2(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (__int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 4, "virtual_GetGlobalStatHistory_2")); + int returnVal = (self->virtual_GetGlobalStatHistory_2)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (__int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 4, "virtual_GetGlobalStatHistory_2")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -13937,7 +14957,7 @@ static int tolua_function_ISteamUserStats_virtual_GetAchievementProgressLimits(l { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAchievementProgressLimits'", NULL); - bool returnVal = self->virtual_GetAchievementProgressLimits(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetAchievementProgressLimits)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (float*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -13946,7 +14966,7 @@ static int tolua_function_ISteamUserStats_virtual_GetAchievementProgressLimits_2 { ISteamUserStats* self = (ISteamUserStats*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUserStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAchievementProgressLimits_2'", NULL); - bool returnVal = self->virtual_GetAchievementProgressLimits_2(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetAchievementProgressLimits_2)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -14785,6 +15805,54 @@ static int tolua_get_HWND___reference_unused(lua_State* L) return 1; } +static int tolua_get_HGLRC___unused(lua_State* L) +{ + HGLRC__* self = (HGLRC__*)tolua_tousertype_dynamic(L, 1, 0, "HGLRC__"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'unused'", NULL); + lua_pushinteger(L, (lua_Integer)self->unused); + return 1; +} + +static int tolua_set_HGLRC___unused(lua_State* L) +{ + HGLRC__* self = (HGLRC__*)tolua_tousertype_dynamic(L, 1, 0, "HGLRC__"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'unused'", NULL); + self->unused = tolua_setter_tointeger(L, "unused"); + return 0; +} + +static int tolua_get_HGLRC___reference_unused(lua_State* L) +{ + HGLRC__* self = (HGLRC__*)tolua_tousertype_dynamic(L, 1, 0, "HGLRC__"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'unused'", NULL); + tolua_pushusertype(L, (void*)&self->unused, "Primitive"); + return 1; +} + +static int tolua_get_HDC___unused(lua_State* L) +{ + HDC__* self = (HDC__*)tolua_tousertype_dynamic(L, 1, 0, "HDC__"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'unused'", NULL); + lua_pushinteger(L, (lua_Integer)self->unused); + return 1; +} + +static int tolua_set_HDC___unused(lua_State* L) +{ + HDC__* self = (HDC__*)tolua_tousertype_dynamic(L, 1, 0, "HDC__"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'unused'", NULL); + self->unused = tolua_setter_tointeger(L, "unused"); + return 0; +} + +static int tolua_get_HDC___reference_unused(lua_State* L) +{ + HDC__* self = (HDC__*)tolua_tousertype_dynamic(L, 1, 0, "HDC__"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'unused'", NULL); + tolua_pushusertype(L, (void*)&self->unused, "Primitive"); + return 1; +} + static int tolua_get_DP_Packet_flags(lua_State* L) { DP_Packet* self = (DP_Packet*)tolua_tousertype_dynamic(L, 1, 0, "DP_Packet"); @@ -15549,7 +16617,7 @@ static int tolua_function_CallInfo__u_t__c_t_k(lua_State* L) { CallInfo::u_t::c_t* self = (CallInfo::u_t::c_t*)tolua_tousertype_dynamic(L, 1, 0, "CallInfo::u_t::c_t"); if (!self) tolua_error(L, "invalid 'self' in calling function 'k'", NULL); - int returnVal = self->k((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); + int returnVal = (self->k)((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -15798,7 +16866,7 @@ static int tolua_function_CVariableHash_FindKey(lua_State* L) { CVariableHash* self = (CVariableHash*)tolua_tousertype_dynamic(L, 1, 0, "CVariableHash"); if (!self) tolua_error(L, "invalid 'self' in calling function 'FindKey'", NULL); - CVariable* returnVal = self->FindKey((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + CVariable* returnVal = (self->FindKey)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); tolua_pushusertype(L, (void*)returnVal, "CVariable"); return 1; } @@ -15807,7 +16875,7 @@ static int tolua_function_CVariableHash_AddKey(lua_State* L) { CVariableHash* self = (CVariableHash*)tolua_tousertype_dynamic(L, 1, 0, "CVariableHash"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddKey'", NULL); - int returnVal = self->AddKey((CVariable*)tolua_tousertype_dynamic(L, 2, 0, "CVariable")); + int returnVal = (self->AddKey)((CVariable*)tolua_tousertype_dynamic(L, 2, 0, "CVariable")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -23725,7 +24793,7 @@ static int tolua_function_ConstArray_ushort_1765__get(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ushort returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -23734,7 +24802,7 @@ static int tolua_function_ConstArray_ushort_1765__getReference(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const ushort* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -23743,7 +24811,7 @@ static int tolua_function_ConstArray_ushort_329__get(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ushort returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -23752,7 +24820,7 @@ static int tolua_function_ConstArray_ushort_329__getReference(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const ushort* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -23761,7 +24829,7 @@ static int tolua_function_ConstArray_byte_1765__get(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -23770,7 +24838,7 @@ static int tolua_function_ConstArray_byte_1765__getReference(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const byte* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -23779,7 +24847,7 @@ static int tolua_function_ConstArray_short_122__get(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + short returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -23788,7 +24856,7 @@ static int tolua_function_ConstArray_short_122__getReference(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const short* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -23797,7 +24865,7 @@ static int tolua_function_ConstArray_short_174__get(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + short returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -23806,7 +24874,7 @@ static int tolua_function_ConstArray_short_174__getReference(lua_State* L) { ConstArray* self = (ConstArray*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const short* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -23815,7 +24883,7 @@ static int tolua_function_ConstArray__D98D369160A0DDA2B95F5D0F301081BB_157__getR { ConstArray<_D98D369160A0DDA2B95F5D0F301081BB,157>* self = (ConstArray<_D98D369160A0DDA2B95F5D0F301081BB,157>*)tolua_tousertype_dynamic(L, 1, 0, "ConstArray<_D98D369160A0DDA2B95F5D0F301081BB,157>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const _D98D369160A0DDA2B95F5D0F301081BB* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); return 1; } @@ -26944,7 +28012,7 @@ static int tolua_function_lua_State_hook(lua_State* L) { lua_State* self = (lua_State*)tolua_tousertype_dynamic(L, 1, 0, "lua_State"); if (!self) tolua_error(L, "invalid 'self' in calling function 'hook'", NULL); - self->hook((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State"), (lua_Debug*)tolua_tousertype_dynamic(L, 3, 0, "lua_Debug")); + (self->hook)((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State"), (lua_Debug*)tolua_tousertype_dynamic(L, 3, 0, "lua_Debug")); return 0; } @@ -26952,7 +28020,7 @@ static int tolua_function_VariableArray_CString__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CString* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CString* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -26961,7 +28029,7 @@ static int tolua_function_VariableArray_CString__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); return 0; } @@ -26969,7 +28037,7 @@ static int tolua_function_VariableArray_CAIId___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CAIId* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CAIId* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CAIId"); return 1; } @@ -26978,7 +28046,7 @@ static int tolua_function_VariableArray_CAIId___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIId** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIId** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -26987,7 +28055,7 @@ static int tolua_function_VariableArray_CAIId___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CAIId*)tolua_tousertype_dynamic(L, 3, 0, "CAIId")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CAIId*)tolua_tousertype_dynamic(L, 3, 0, "CAIId")); return 0; } @@ -26995,7 +28063,7 @@ static int tolua_function_VariableArray_int__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27004,7 +28072,7 @@ static int tolua_function_VariableArray_int__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -27013,7 +28081,7 @@ static int tolua_function_VariableArray_int__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27021,7 +28089,7 @@ static int tolua_function_VariableArray_void___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - void* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + void* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -27030,7 +28098,7 @@ static int tolua_function_VariableArray_void___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - void** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + void** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "VoidPointer"); return 1; } @@ -27039,7 +28107,7 @@ static int tolua_function_VariableArray_void___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType")); return 0; } @@ -27047,7 +28115,7 @@ static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__getRe { VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + _D98D369160A0DDA2B95F5D0F301081BB* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); return 1; } @@ -27056,7 +28124,33 @@ static int tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set(l { VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>* self = (VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 3, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 3, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + return 0; +} + +static int tolua_function_VariableArray_short__get(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + short returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_VariableArray_short__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + short* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; +} + +static int tolua_function_VariableArray_short__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27064,7 +28158,7 @@ static int tolua_function_VariableArray_ushort__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ushort returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ushort returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27073,7 +28167,7 @@ static int tolua_function_VariableArray_ushort__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ushort* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ushort* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -27082,7 +28176,7 @@ static int tolua_function_VariableArray_ushort__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27090,7 +28184,7 @@ static int tolua_function_VariableArray_char__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -27099,7 +28193,7 @@ static int tolua_function_VariableArray_char__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -27107,7 +28201,7 @@ static int tolua_function_VariableArray_byte__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27116,7 +28210,7 @@ static int tolua_function_VariableArray_byte__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + byte* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -27125,33 +28219,7 @@ static int tolua_function_VariableArray_byte__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); - return 0; -} - -static int tolua_function_VariableArray_short__get(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - short returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushinteger(L, (lua_Integer)returnVal); - return 1; -} - -static int tolua_function_VariableArray_short__getReference(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - short* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushusertype(L, (void*)returnVal, "Primitive"); - return 1; -} - -static int tolua_function_VariableArray_short__set(lua_State* L) -{ - VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27159,7 +28227,7 @@ static int tolua_function_VariableArray_CRect__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CRect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CRect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CRect"); return 1; } @@ -27168,7 +28236,7 @@ static int tolua_function_VariableArray_CRect__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CRect*)tolua_tousertype_dynamic(L, 3, 0, "CRect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CRect*)tolua_tousertype_dynamic(L, 3, 0, "CRect")); return 0; } @@ -27176,7 +28244,7 @@ static int tolua_function_VariableArray_CRes___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CRes* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CRes* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CRes"); return 1; } @@ -27185,7 +28253,7 @@ static int tolua_function_VariableArray_CRes___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CRes** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CRes** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27194,7 +28262,7 @@ static int tolua_function_VariableArray_CRes___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CRes*)tolua_tousertype_dynamic(L, 3, 0, "CRes")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CRes*)tolua_tousertype_dynamic(L, 3, 0, "CRes")); return 0; } @@ -27202,7 +28270,7 @@ static int tolua_function_VariableArray_CGameDialogEntry___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CGameDialogEntry* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CGameDialogEntry* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CGameDialogEntry"); return 1; } @@ -27211,7 +28279,7 @@ static int tolua_function_VariableArray_CGameDialogEntry___getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameDialogEntry** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameDialogEntry** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27220,7 +28288,7 @@ static int tolua_function_VariableArray_CGameDialogEntry___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CGameDialogEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CGameDialogEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogEntry")); return 0; } @@ -27228,7 +28296,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry { VariableArray*>* self = (VariableArray*>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CTypedPtrList* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CTypedPtrList* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -27237,7 +28305,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry { VariableArray*>* self = (VariableArray*>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer>"); return 1; } @@ -27246,7 +28314,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CGameJournalEntry { VariableArray*>* self = (VariableArray*>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -27254,7 +28322,7 @@ static int tolua_function_VariableArray_CSavedGamePartyCreature___get(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CSavedGamePartyCreature* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CSavedGamePartyCreature* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CSavedGamePartyCreature"); return 1; } @@ -27263,7 +28331,7 @@ static int tolua_function_VariableArray_CSavedGamePartyCreature___getReference(l { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSavedGamePartyCreature** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSavedGamePartyCreature** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27272,7 +28340,7 @@ static int tolua_function_VariableArray_CSavedGamePartyCreature___set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGamePartyCreature")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGamePartyCreature")); return 0; } @@ -27280,7 +28348,7 @@ static int tolua_function_VariableArray_unsigned_char___getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned char** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned char** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CharString"); return 1; } @@ -27289,7 +28357,7 @@ static int tolua_function_VariableArray_unsigned_char___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(unsigned char**)tolua_tousertype_dynamic(L, 3, 0, "CharString")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(unsigned char**)tolua_tousertype_dynamic(L, 3, 0, "CharString")); return 0; } @@ -27297,7 +28365,7 @@ static int tolua_function_VariableArray_CAbilityData___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CAbilityData* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CAbilityData* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CAbilityData"); return 1; } @@ -27306,7 +28374,7 @@ static int tolua_function_VariableArray_CAbilityData___getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAbilityData** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAbilityData** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27315,7 +28383,7 @@ static int tolua_function_VariableArray_CAbilityData___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CAbilityData*)tolua_tousertype_dynamic(L, 3, 0, "CAbilityData")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CAbilityData*)tolua_tousertype_dynamic(L, 3, 0, "CAbilityData")); return 0; } @@ -27323,7 +28391,7 @@ static int tolua_function_VariableArray_CSaveGameSlot___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CSaveGameSlot* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CSaveGameSlot* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CSaveGameSlot"); return 1; } @@ -27332,7 +28400,7 @@ static int tolua_function_VariableArray_CSaveGameSlot___getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSaveGameSlot** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSaveGameSlot** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27341,7 +28409,7 @@ static int tolua_function_VariableArray_CSaveGameSlot___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CSaveGameSlot*)tolua_tousertype_dynamic(L, 3, 0, "CSaveGameSlot")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CSaveGameSlot*)tolua_tousertype_dynamic(L, 3, 0, "CSaveGameSlot")); return 0; } @@ -27349,7 +28417,7 @@ static int tolua_function_VariableArray_CSpawnPoint___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CSpawnPoint* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CSpawnPoint* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CSpawnPoint"); return 1; } @@ -27358,7 +28426,7 @@ static int tolua_function_VariableArray_CSpawnPoint___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawnPoint** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpawnPoint** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27367,7 +28435,7 @@ static int tolua_function_VariableArray_CSpawnPoint___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CSpawnPoint*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnPoint")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CSpawnPoint*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnPoint")); return 0; } @@ -27375,7 +28443,7 @@ static int tolua_function_VariableArray_CGameDialogReply___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CGameDialogReply* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CGameDialogReply* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CGameDialogReply"); return 1; } @@ -27384,7 +28452,7 @@ static int tolua_function_VariableArray_CGameDialogReply___getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameDialogReply** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameDialogReply** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27393,7 +28461,7 @@ static int tolua_function_VariableArray_CGameDialogReply___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CGameDialogReply*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogReply")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CGameDialogReply*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogReply")); return 0; } @@ -27401,7 +28469,7 @@ static int tolua_function_VariableArray_long__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - long returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + long returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27410,7 +28478,7 @@ static int tolua_function_VariableArray_long__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - long* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + long* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -27419,7 +28487,7 @@ static int tolua_function_VariableArray_long__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27427,7 +28495,7 @@ static int tolua_function_VariableArray___int8__get(lua_State* L) { VariableArray<__int8>* self = (VariableArray<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__int8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27436,7 +28504,7 @@ static int tolua_function_VariableArray___int8__getReference(lua_State* L) { VariableArray<__int8>* self = (VariableArray<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__int8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -27445,7 +28513,7 @@ static int tolua_function_VariableArray___int8__set(lua_State* L) { VariableArray<__int8>* self = (VariableArray<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__int8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int8>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int8>(L, 3, "set")); return 0; } @@ -27453,7 +28521,7 @@ static int tolua_function_VariableArray_CSoundChannel___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CSoundChannel* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CSoundChannel* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CSoundChannel"); return 1; } @@ -27462,7 +28530,7 @@ static int tolua_function_VariableArray_CSoundChannel___getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSoundChannel** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSoundChannel** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27471,7 +28539,7 @@ static int tolua_function_VariableArray_CSoundChannel___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CSoundChannel*)tolua_tousertype_dynamic(L, 3, 0, "CSoundChannel")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CSoundChannel*)tolua_tousertype_dynamic(L, 3, 0, "CSoundChannel")); return 0; } @@ -27479,7 +28547,7 @@ static int tolua_function_VariableArray_ALCcontext_struct__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ALCcontext_struct* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ALCcontext_struct* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ALCcontext_struct"); return 1; } @@ -27488,7 +28556,7 @@ static int tolua_function_VariableArray_ALCcontext_struct__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(ALCcontext_struct*)tolua_tousertype_dynamic(L, 3, 0, "ALCcontext_struct")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(ALCcontext_struct*)tolua_tousertype_dynamic(L, 3, 0, "ALCcontext_struct")); return 0; } @@ -27496,7 +28564,7 @@ static int tolua_function_VariableArray_ALCdevice_struct__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ALCdevice_struct* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ALCdevice_struct* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ALCdevice_struct"); return 1; } @@ -27505,7 +28573,7 @@ static int tolua_function_VariableArray_ALCdevice_struct__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(ALCdevice_struct*)tolua_tousertype_dynamic(L, 3, 0, "ALCdevice_struct")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(ALCdevice_struct*)tolua_tousertype_dynamic(L, 3, 0, "ALCdevice_struct")); return 0; } @@ -27513,7 +28581,7 @@ static int tolua_function_VariableArray_CUIControlTextDisplay__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CUIControlTextDisplay* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CUIControlTextDisplay* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CUIControlTextDisplay"); return 1; } @@ -27522,7 +28590,7 @@ static int tolua_function_VariableArray_CUIControlTextDisplay__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CUIControlTextDisplay*)tolua_tousertype_dynamic(L, 3, 0, "CUIControlTextDisplay")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CUIControlTextDisplay*)tolua_tousertype_dynamic(L, 3, 0, "CUIControlTextDisplay")); return 0; } @@ -27530,7 +28598,7 @@ static int tolua_function_VariableArray_HRESULT__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - HRESULT returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + HRESULT returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27539,7 +28607,7 @@ static int tolua_function_VariableArray_HRESULT__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - HRESULT* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + HRESULT* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -27548,7 +28616,7 @@ static int tolua_function_VariableArray_HRESULT__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -27556,7 +28624,7 @@ static int tolua_function_VariableArray_ID3DXBuffer___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ID3DXBuffer* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ID3DXBuffer* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "ID3DXBuffer"); return 1; } @@ -27565,7 +28633,7 @@ static int tolua_function_VariableArray_ID3DXBuffer___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ID3DXBuffer** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ID3DXBuffer** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27574,7 +28642,7 @@ static int tolua_function_VariableArray_ID3DXBuffer___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (ID3DXBuffer*)tolua_tousertype_dynamic(L, 3, 0, "ID3DXBuffer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (ID3DXBuffer*)tolua_tousertype_dynamic(L, 3, 0, "ID3DXBuffer")); return 0; } @@ -27582,7 +28650,7 @@ static int tolua_function_VariableArray_ID3DXEffect___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - ID3DXEffect* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + ID3DXEffect* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "ID3DXEffect"); return 1; } @@ -27591,7 +28659,7 @@ static int tolua_function_VariableArray_ID3DXEffect___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ID3DXEffect** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ID3DXEffect** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27600,7 +28668,7 @@ static int tolua_function_VariableArray_ID3DXEffect___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (ID3DXEffect*)tolua_tousertype_dynamic(L, 3, 0, "ID3DXEffect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (ID3DXEffect*)tolua_tousertype_dynamic(L, 3, 0, "ID3DXEffect")); return 0; } @@ -27608,7 +28676,7 @@ static int tolua_function_VariableArray_SAreaFileWrapper__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SAreaFileWrapper* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SAreaFileWrapper* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SAreaFileWrapper"); return 1; } @@ -27617,7 +28685,7 @@ static int tolua_function_VariableArray_SAreaFileWrapper__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SAreaFileWrapper*)tolua_tousertype_dynamic(L, 3, 0, "SAreaFileWrapper")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SAreaFileWrapper*)tolua_tousertype_dynamic(L, 3, 0, "SAreaFileWrapper")); return 0; } @@ -27625,7 +28693,7 @@ static int tolua_function_VariableArray_SDL_Cursor__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Cursor* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Cursor* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Cursor"); return 1; } @@ -27634,7 +28702,24 @@ static int tolua_function_VariableArray_SDL_Cursor__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Cursor*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Cursor")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Cursor*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Cursor")); + return 0; +} + +static int tolua_function_VariableArray_SDL_PrivateGLESData__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_PrivateGLESData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_PrivateGLESData"); + return 1; +} + +static int tolua_function_VariableArray_SDL_PrivateGLESData__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_PrivateGLESData*)tolua_tousertype_dynamic(L, 3, 0, "SDL_PrivateGLESData")); return 0; } @@ -27642,7 +28727,7 @@ static int tolua_function_VariableArray_SDL_WindowUserData__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_WindowUserData* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_WindowUserData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_WindowUserData"); return 1; } @@ -27651,7 +28736,7 @@ static int tolua_function_VariableArray_SDL_WindowUserData__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_WindowUserData*)tolua_tousertype_dynamic(L, 3, 0, "SDL_WindowUserData")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_WindowUserData*)tolua_tousertype_dynamic(L, 3, 0, "SDL_WindowUserData")); return 0; } @@ -27659,7 +28744,7 @@ static int tolua_function_VariableArray_SProjectileWrapper__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SProjectileWrapper* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SProjectileWrapper* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SProjectileWrapper"); return 1; } @@ -27668,7 +28753,7 @@ static int tolua_function_VariableArray_SProjectileWrapper__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SProjectileWrapper*)tolua_tousertype_dynamic(L, 3, 0, "SProjectileWrapper")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SProjectileWrapper*)tolua_tousertype_dynamic(L, 3, 0, "SProjectileWrapper")); return 0; } @@ -27676,7 +28761,7 @@ static int tolua_function_VariableArray_const__D3DXMACRO__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const _D3DXMACRO* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const _D3DXMACRO* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "_D3DXMACRO"); return 1; } @@ -27685,7 +28770,7 @@ static int tolua_function_VariableArray___POSITION__getReference(lua_State* L) { VariableArray<__POSITION>* self = (VariableArray<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__POSITION>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __POSITION* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __POSITION* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "__POSITION"); return 1; } @@ -27694,7 +28779,7 @@ static int tolua_function_VariableArray___POSITION__set(lua_State* L) { VariableArray<__POSITION>* self = (VariableArray<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__POSITION>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(__POSITION*)tolua_tousertype_dynamic(L, 3, 0, "__POSITION")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(__POSITION*)tolua_tousertype_dynamic(L, 3, 0, "__POSITION")); return 0; } @@ -27702,7 +28787,7 @@ static int tolua_function_VariableArray_const_unsigned___int16__get(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const unsigned __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + const unsigned __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27711,7 +28796,7 @@ static int tolua_function_VariableArray_const_unsigned___int16__getReference(lua { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const unsigned __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const unsigned __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -27720,7 +28805,7 @@ static int tolua_function_VariableArray_WED_ScreenSectionList__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WED_ScreenSectionList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WED_ScreenSectionList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WED_ScreenSectionList"); return 1; } @@ -27729,7 +28814,7 @@ static int tolua_function_VariableArray_WED_ScreenSectionList__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WED_ScreenSectionList*)tolua_tousertype_dynamic(L, 3, 0, "WED_ScreenSectionList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WED_ScreenSectionList*)tolua_tousertype_dynamic(L, 3, 0, "WED_ScreenSectionList")); return 0; } @@ -27737,7 +28822,7 @@ static int tolua_function_VariableArray_WED_PolyPoint_st__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WED_PolyPoint_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WED_PolyPoint_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WED_PolyPoint_st"); return 1; } @@ -27746,7 +28831,7 @@ static int tolua_function_VariableArray_WED_PolyPoint_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WED_PolyPoint_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_PolyPoint_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WED_PolyPoint_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_PolyPoint_st")); return 0; } @@ -27754,7 +28839,7 @@ static int tolua_function_VariableArray_CVIDPOLY_VERTEX__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVIDPOLY_VERTEX* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVIDPOLY_VERTEX* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVIDPOLY_VERTEX"); return 1; } @@ -27763,7 +28848,7 @@ static int tolua_function_VariableArray_CVIDPOLY_VERTEX__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVIDPOLY_VERTEX*)tolua_tousertype_dynamic(L, 3, 0, "CVIDPOLY_VERTEX")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVIDPOLY_VERTEX*)tolua_tousertype_dynamic(L, 3, 0, "CVIDPOLY_VERTEX")); return 0; } @@ -27771,7 +28856,7 @@ static int tolua_function_VariableArray_CAreaPoint__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAreaPoint* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAreaPoint"); return 1; } @@ -27780,7 +28865,7 @@ static int tolua_function_VariableArray_CAreaPoint__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaPoint*)tolua_tousertype_dynamic(L, 3, 0, "CAreaPoint")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAreaPoint*)tolua_tousertype_dynamic(L, 3, 0, "CAreaPoint")); return 0; } @@ -27788,7 +28873,7 @@ static int tolua_function_VariableArray_EItemPreviewType__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - EItemPreviewType returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + EItemPreviewType returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27797,7 +28882,7 @@ static int tolua_function_VariableArray_EItemPreviewType__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - EItemPreviewType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + EItemPreviewType* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -27806,7 +28891,7 @@ static int tolua_function_VariableArray_EItemPreviewType__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (EItemPreviewType)tolua_function_tointeger<__int32>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (EItemPreviewType)tolua_function_tointeger<__int32>(L, 3, "set")); return 0; } @@ -27814,7 +28899,7 @@ static int tolua_function_VariableArray___int64__get(lua_State* L) { VariableArray<__int64>* self = (VariableArray<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__int64>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int64 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int64 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27823,7 +28908,7 @@ static int tolua_function_VariableArray___int64__getReference(lua_State* L) { VariableArray<__int64>* self = (VariableArray<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__int64>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int64* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int64* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int64>"); return 1; } @@ -27832,7 +28917,7 @@ static int tolua_function_VariableArray___int64__set(lua_State* L) { VariableArray<__int64>* self = (VariableArray<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<__int64>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int64>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int64>(L, 3, "set")); return 0; } @@ -27840,7 +28925,7 @@ static int tolua_function_VariableArray_CSteamID__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSteamID* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSteamID* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSteamID"); return 1; } @@ -27849,7 +28934,7 @@ static int tolua_function_VariableArray_CSteamID__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSteamID*)tolua_tousertype_dynamic(L, 3, 0, "CSteamID")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSteamID*)tolua_tousertype_dynamic(L, 3, 0, "CSteamID")); return 0; } @@ -27857,7 +28942,7 @@ static int tolua_function_VariableArray_const_unsigned___int8__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + const unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -27866,7 +28951,7 @@ static int tolua_function_VariableArray_const_unsigned___int8__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -27875,7 +28960,7 @@ static int tolua_function_VariableArray_unsigned___int8___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -27884,7 +28969,7 @@ static int tolua_function_VariableArray_unsigned___int8___getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -27893,7 +28978,7 @@ static int tolua_function_VariableArray_unsigned___int8___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); return 0; } @@ -27901,7 +28986,7 @@ static int tolua_function_VariableArray_Upvaldesc__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Upvaldesc* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Upvaldesc* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Upvaldesc"); return 1; } @@ -27910,7 +28995,7 @@ static int tolua_function_VariableArray_Upvaldesc__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Upvaldesc*)tolua_tousertype_dynamic(L, 3, 0, "Upvaldesc")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Upvaldesc*)tolua_tousertype_dynamic(L, 3, 0, "Upvaldesc")); return 0; } @@ -27918,7 +29003,7 @@ static int tolua_function_VariableArray_SDL_Color__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Color* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Color* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Color"); return 1; } @@ -27927,7 +29012,24 @@ static int tolua_function_VariableArray_SDL_Color__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Color*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Color")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Color*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Color")); + return 0; +} + +static int tolua_function_VariableArray_SDL_WindowShapeMode__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_WindowShapeMode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_WindowShapeMode"); + return 1; +} + +static int tolua_function_VariableArray_SDL_WindowShapeMode__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 3, 0, "SDL_WindowShapeMode")); return 0; } @@ -27935,7 +29037,7 @@ static int tolua_function_VariableArray_CVisibilityMapEllipse__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVisibilityMapEllipse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVisibilityMapEllipse* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVisibilityMapEllipse"); return 1; } @@ -27944,7 +29046,7 @@ static int tolua_function_VariableArray_CVisibilityMapEllipse__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVisibilityMapEllipse*)tolua_tousertype_dynamic(L, 3, 0, "CVisibilityMapEllipse")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVisibilityMapEllipse*)tolua_tousertype_dynamic(L, 3, 0, "CVisibilityMapEllipse")); return 0; } @@ -27952,7 +29054,7 @@ static int tolua_function_VariableArray_CColorRange__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CColorRange* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CColorRange* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CColorRange"); return 1; } @@ -27961,7 +29063,7 @@ static int tolua_function_VariableArray_CColorRange__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CColorRange*)tolua_tousertype_dynamic(L, 3, 0, "CColorRange")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CColorRange*)tolua_tousertype_dynamic(L, 3, 0, "CColorRange")); return 0; } @@ -27969,7 +29071,7 @@ static int tolua_function_VariableArray__iobuf__getReference(lua_State* L) { VariableArray<_iobuf>* self = (VariableArray<_iobuf>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_iobuf>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - _iobuf* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + _iobuf* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "_iobuf"); return 1; } @@ -27978,7 +29080,7 @@ static int tolua_function_VariableArray__iobuf__set(lua_State* L) { VariableArray<_iobuf>* self = (VariableArray<_iobuf>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_iobuf>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(_iobuf*)tolua_tousertype_dynamic(L, 3, 0, "_iobuf")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(_iobuf*)tolua_tousertype_dynamic(L, 3, 0, "_iobuf")); return 0; } @@ -27986,7 +29088,7 @@ static int tolua_function_VariableArray_bool__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - bool returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + bool returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -27995,7 +29097,7 @@ static int tolua_function_VariableArray_bool__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - bool* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + bool* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -28004,7 +29106,7 @@ static int tolua_function_VariableArray_bool__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_toboolean(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_toboolean(L, 3, "set")); return 0; } @@ -28012,7 +29114,7 @@ static int tolua_function_VariableArray_const_byte__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + const byte returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -28021,7 +29123,7 @@ static int tolua_function_VariableArray_const_byte__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const byte* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -28030,7 +29132,7 @@ static int tolua_function_VariableArray_const_char___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const char** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const char** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ConstCharString"); return 1; } @@ -28039,7 +29141,7 @@ static int tolua_function_VariableArray_const_long_double__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const long double returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + const long double returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -28048,7 +29150,7 @@ static int tolua_function_VariableArray_const_long_double__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const long double* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const long double* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -28057,7 +29159,7 @@ static int tolua_function_VariableArray_long_double__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - long double returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + long double returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -28066,7 +29168,7 @@ static int tolua_function_VariableArray_long_double__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - long double* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + long double* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -28075,15 +29177,33 @@ static int tolua_function_VariableArray_long_double__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tonumber(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tonumber(L, 3, "set")); return 0; } +static int tolua_function_VariableArray_const_float__get(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + const float returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); + tolua_pushnumber(L, (lua_Number)returnVal); + return 1; +} + +static int tolua_function_VariableArray_const_float__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + const float* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; +} + static int tolua_function_VariableArray_const_unsigned_int__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + const unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -28092,7 +29212,7 @@ static int tolua_function_VariableArray_const_unsigned_int__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -28101,7 +29221,7 @@ static int tolua_function_VariableArray_const_int__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + const int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -28110,7 +29230,7 @@ static int tolua_function_VariableArray_const_int__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -28119,7 +29239,7 @@ static int tolua_function_VariableArray_glyphAdvance_t__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - glyphAdvance_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + glyphAdvance_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "glyphAdvance_t"); return 1; } @@ -28128,7 +29248,7 @@ static int tolua_function_VariableArray_glyphAdvance_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(glyphAdvance_t*)tolua_tousertype_dynamic(L, 3, 0, "glyphAdvance_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(glyphAdvance_t*)tolua_tousertype_dynamic(L, 3, 0, "glyphAdvance_t")); return 0; } @@ -28136,7 +29256,7 @@ static int tolua_function_VariableArray_frameTableEntry_st__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - frameTableEntry_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + frameTableEntry_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "frameTableEntry_st"); return 1; } @@ -28145,7 +29265,7 @@ static int tolua_function_VariableArray_frameTableEntry_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(frameTableEntry_st*)tolua_tousertype_dynamic(L, 3, 0, "frameTableEntry_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(frameTableEntry_st*)tolua_tousertype_dynamic(L, 3, 0, "frameTableEntry_st")); return 0; } @@ -28153,7 +29273,7 @@ static int tolua_function_VariableArray_d3dvertex_t__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - d3dvertex_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + d3dvertex_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "d3dvertex_t"); return 1; } @@ -28162,7 +29282,7 @@ static int tolua_function_VariableArray_d3dvertex_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(d3dvertex_t*)tolua_tousertype_dynamic(L, 3, 0, "d3dvertex_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(d3dvertex_t*)tolua_tousertype_dynamic(L, 3, 0, "d3dvertex_t")); return 0; } @@ -28170,7 +29290,7 @@ static int tolua_function_VariableArray_bamHeader_st__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - bamHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + bamHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "bamHeader_st"); return 1; } @@ -28179,7 +29299,7 @@ static int tolua_function_VariableArray_bamHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(bamHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "bamHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(bamHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "bamHeader_st")); return 0; } @@ -28187,7 +29307,7 @@ static int tolua_function_VariableArray_adjustmentData_t__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - adjustmentData_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + adjustmentData_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "adjustmentData_t"); return 1; } @@ -28196,7 +29316,7 @@ static int tolua_function_VariableArray_adjustmentData_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(adjustmentData_t*)tolua_tousertype_dynamic(L, 3, 0, "adjustmentData_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(adjustmentData_t*)tolua_tousertype_dynamic(L, 3, 0, "adjustmentData_t")); return 0; } @@ -28204,7 +29324,7 @@ static int tolua_function_VariableArray__EdgeDescription__getReference(lua_State { VariableArray<_EdgeDescription>* self = (VariableArray<_EdgeDescription>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_EdgeDescription>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - _EdgeDescription* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + _EdgeDescription* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "_EdgeDescription"); return 1; } @@ -28213,7 +29333,7 @@ static int tolua_function_VariableArray__EdgeDescription__set(lua_State* L) { VariableArray<_EdgeDescription>* self = (VariableArray<_EdgeDescription>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray<_EdgeDescription>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(_EdgeDescription*)tolua_tousertype_dynamic(L, 3, 0, "_EdgeDescription")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(_EdgeDescription*)tolua_tousertype_dynamic(L, 3, 0, "_EdgeDescription")); return 0; } @@ -28221,7 +29341,7 @@ static int tolua_function_VariableArray_WED_WedHeader_st__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WED_WedHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WED_WedHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WED_WedHeader_st"); return 1; } @@ -28230,7 +29350,7 @@ static int tolua_function_VariableArray_WED_WedHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WED_WedHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_WedHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WED_WedHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_WedHeader_st")); return 0; } @@ -28238,7 +29358,7 @@ static int tolua_function_VariableArray_WED_PolyList_st__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WED_PolyList_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WED_PolyList_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WED_PolyList_st"); return 1; } @@ -28247,7 +29367,7 @@ static int tolua_function_VariableArray_WED_PolyList_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WED_PolyList_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_PolyList_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WED_PolyList_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_PolyList_st")); return 0; } @@ -28255,7 +29375,7 @@ static int tolua_function_VariableArray_WED_PolyHeader_st__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WED_PolyHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WED_PolyHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WED_PolyHeader_st"); return 1; } @@ -28264,7 +29384,7 @@ static int tolua_function_VariableArray_WED_PolyHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WED_PolyHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_PolyHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WED_PolyHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_PolyHeader_st")); return 0; } @@ -28272,7 +29392,7 @@ static int tolua_function_VariableArray_WAV_Header__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WAV_Header* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WAV_Header* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WAV_Header"); return 1; } @@ -28281,7 +29401,7 @@ static int tolua_function_VariableArray_WAV_Header__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WAV_Header*)tolua_tousertype_dynamic(L, 3, 0, "WAV_Header")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WAV_Header*)tolua_tousertype_dynamic(L, 3, 0, "WAV_Header")); return 0; } @@ -28289,7 +29409,7 @@ static int tolua_function_VariableArray_UI_Header_st__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - UI_Header_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + UI_Header_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "UI_Header_st"); return 1; } @@ -28298,7 +29418,7 @@ static int tolua_function_VariableArray_UI_Header_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(UI_Header_st*)tolua_tousertype_dynamic(L, 3, 0, "UI_Header_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(UI_Header_st*)tolua_tousertype_dynamic(L, 3, 0, "UI_Header_st")); return 0; } @@ -28306,7 +29426,7 @@ static int tolua_function_VariableArray_UI_ControlTableEntry_st__getReference(lu { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - UI_ControlTableEntry_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + UI_ControlTableEntry_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "UI_ControlTableEntry_st"); return 1; } @@ -28315,7 +29435,7 @@ static int tolua_function_VariableArray_UI_ControlTableEntry_st__set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(UI_ControlTableEntry_st*)tolua_tousertype_dynamic(L, 3, 0, "UI_ControlTableEntry_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(UI_ControlTableEntry_st*)tolua_tousertype_dynamic(L, 3, 0, "UI_ControlTableEntry_st")); return 0; } @@ -28323,7 +29443,7 @@ static int tolua_function_VariableArray_SteamParamStringArray_t__getReference(lu { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SteamParamStringArray_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SteamParamStringArray_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SteamParamStringArray_t"); return 1; } @@ -28332,7 +29452,7 @@ static int tolua_function_VariableArray_SteamParamStringArray_t__set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); return 0; } @@ -28340,7 +29460,7 @@ static int tolua_function_VariableArray_const_SteamParamStringArray_t__getRefere { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const SteamParamStringArray_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const SteamParamStringArray_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SteamParamStringArray_t"); return 1; } @@ -28349,7 +29469,7 @@ static int tolua_function_VariableArray_SDL_WindowShaper__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_WindowShaper* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_WindowShaper* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_WindowShaper"); return 1; } @@ -28358,7 +29478,7 @@ static int tolua_function_VariableArray_SDL_WindowShaper__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_WindowShaper*)tolua_tousertype_dynamic(L, 3, 0, "SDL_WindowShaper")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_WindowShaper*)tolua_tousertype_dynamic(L, 3, 0, "SDL_WindowShaper")); return 0; } @@ -28366,7 +29486,7 @@ static int tolua_function_VariableArray_SDL_SysWMmsg__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_SysWMmsg* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_SysWMmsg* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_SysWMmsg"); return 1; } @@ -28375,7 +29495,24 @@ static int tolua_function_VariableArray_SDL_SysWMmsg__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_SysWMmsg*)tolua_tousertype_dynamic(L, 3, 0, "SDL_SysWMmsg")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_SysWMmsg*)tolua_tousertype_dynamic(L, 3, 0, "SDL_SysWMmsg")); + return 0; +} + +static int tolua_function_VariableArray_SDL_SysWMinfo__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_SysWMinfo* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_SysWMinfo"); + return 1; +} + +static int tolua_function_VariableArray_SDL_SysWMinfo__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 3, 0, "SDL_SysWMinfo")); return 0; } @@ -28383,7 +29520,7 @@ static int tolua_function_VariableArray_SDL_Palette__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Palette* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Palette* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Palette"); return 1; } @@ -28392,7 +29529,93 @@ static int tolua_function_VariableArray_SDL_Palette__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Palette*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Palette")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Palette*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Palette")); + return 0; +} + +static int tolua_function_VariableArray_const_SDL_MessageBoxData__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + const SDL_MessageBoxData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxData"); + return 1; +} + +static int tolua_function_VariableArray_const_SDL_MessageBoxButtonData__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + const SDL_MessageBoxButtonData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxButtonData"); + return 1; +} + +static int tolua_function_VariableArray_SDL_GLDriverData__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_GLDriverData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_GLDriverData"); + return 1; +} + +static int tolua_function_VariableArray_SDL_GLDriverData__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_GLDriverData*)tolua_tousertype_dynamic(L, 3, 0, "SDL_GLDriverData")); + return 0; +} + +static int tolua_function_VariableArray_SDL_EGL_VideoData__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_EGL_VideoData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_EGL_VideoData"); + return 1; +} + +static int tolua_function_VariableArray_SDL_EGL_VideoData__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 3, 0, "SDL_EGL_VideoData")); + return 0; +} + +static int tolua_function_VariableArray_SDL_DisplayMode__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_DisplayMode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_DisplayMode"); + return 1; +} + +static int tolua_function_VariableArray_SDL_DisplayMode__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_DisplayMode*)tolua_tousertype_dynamic(L, 3, 0, "SDL_DisplayMode")); + return 0; +} + +static int tolua_function_VariableArray_SDL_VideoDisplay__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_VideoDisplay* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_VideoDisplay"); + return 1; +} + +static int tolua_function_VariableArray_SDL_VideoDisplay__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 3, 0, "SDL_VideoDisplay")); return 0; } @@ -28400,7 +29623,7 @@ static int tolua_function_VariableArray_SDL_BlitMap__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_BlitMap* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_BlitMap* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_BlitMap"); return 1; } @@ -28409,7 +29632,7 @@ static int tolua_function_VariableArray_SDL_BlitMap__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_BlitMap*)tolua_tousertype_dynamic(L, 3, 0, "SDL_BlitMap")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_BlitMap*)tolua_tousertype_dynamic(L, 3, 0, "SDL_BlitMap")); return 0; } @@ -28417,7 +29640,7 @@ static int tolua_function_VariableArray_ResFixedHeader_st__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ResFixedHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ResFixedHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ResFixedHeader_st"); return 1; } @@ -28426,7 +29649,7 @@ static int tolua_function_VariableArray_ResFixedHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(ResFixedHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "ResFixedHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(ResFixedHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "ResFixedHeader_st")); return 0; } @@ -28434,7 +29657,7 @@ static int tolua_function_VariableArray_Proto___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - Proto* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + Proto* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "Proto"); return 1; } @@ -28443,7 +29666,7 @@ static int tolua_function_VariableArray_Proto___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Proto** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Proto** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -28452,7 +29675,7 @@ static int tolua_function_VariableArray_Proto___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (Proto*)tolua_tousertype_dynamic(L, 3, 0, "Proto")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (Proto*)tolua_tousertype_dynamic(L, 3, 0, "Proto")); return 0; } @@ -28460,7 +29683,7 @@ static int tolua_function_VariableArray_PLTHeader_st__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - PLTHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + PLTHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "PLTHeader_st"); return 1; } @@ -28469,7 +29692,7 @@ static int tolua_function_VariableArray_PLTHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(PLTHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "PLTHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(PLTHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "PLTHeader_st")); return 0; } @@ -28477,7 +29700,7 @@ static int tolua_function_VariableArray_MOSAICQUAD__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - MOSAICQUAD* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + MOSAICQUAD* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "MOSAICQUAD"); return 1; } @@ -28486,7 +29709,7 @@ static int tolua_function_VariableArray_MOSAICQUAD__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(MOSAICQUAD*)tolua_tousertype_dynamic(L, 3, 0, "MOSAICQUAD")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(MOSAICQUAD*)tolua_tousertype_dynamic(L, 3, 0, "MOSAICQUAD")); return 0; } @@ -28494,7 +29717,7 @@ static int tolua_function_VariableArray_MOSAICHEADERV2__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - MOSAICHEADERV2* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + MOSAICHEADERV2* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "MOSAICHEADERV2"); return 1; } @@ -28503,7 +29726,7 @@ static int tolua_function_VariableArray_MOSAICHEADERV2__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(MOSAICHEADERV2*)tolua_tousertype_dynamic(L, 3, 0, "MOSAICHEADERV2")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(MOSAICHEADERV2*)tolua_tousertype_dynamic(L, 3, 0, "MOSAICHEADERV2")); return 0; } @@ -28511,7 +29734,7 @@ static int tolua_function_VariableArray_LocVar__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - LocVar* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + LocVar* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "LocVar"); return 1; } @@ -28520,7 +29743,7 @@ static int tolua_function_VariableArray_LocVar__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(LocVar*)tolua_tousertype_dynamic(L, 3, 0, "LocVar")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(LocVar*)tolua_tousertype_dynamic(L, 3, 0, "LocVar")); return 0; } @@ -28528,7 +29751,7 @@ static int tolua_function_VariableArray_LeaderboardEntry_t__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - LeaderboardEntry_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + LeaderboardEntry_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "LeaderboardEntry_t"); return 1; } @@ -28537,7 +29760,7 @@ static int tolua_function_VariableArray_LeaderboardEntry_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 3, 0, "LeaderboardEntry_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 3, 0, "LeaderboardEntry_t")); return 0; } @@ -28545,7 +29768,7 @@ static int tolua_function_VariableArray_ISteamUserStats__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ISteamUserStats* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ISteamUserStats* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ISteamUserStats"); return 1; } @@ -28554,7 +29777,7 @@ static int tolua_function_VariableArray_ISteamUserStats__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(ISteamUserStats*)tolua_tousertype_dynamic(L, 3, 0, "ISteamUserStats")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(ISteamUserStats*)tolua_tousertype_dynamic(L, 3, 0, "ISteamUserStats")); return 0; } @@ -28562,7 +29785,7 @@ static int tolua_function_VariableArray_HWND____getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - HWND__* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + HWND__* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "HWND__"); return 1; } @@ -28571,7 +29794,41 @@ static int tolua_function_VariableArray_HWND____set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(HWND__*)tolua_tousertype_dynamic(L, 3, 0, "HWND__")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(HWND__*)tolua_tousertype_dynamic(L, 3, 0, "HWND__")); + return 0; +} + +static int tolua_function_VariableArray_HGLRC____getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + HGLRC__* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "HGLRC__"); + return 1; +} + +static int tolua_function_VariableArray_HGLRC____set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(HGLRC__*)tolua_tousertype_dynamic(L, 3, 0, "HGLRC__")); + return 0; +} + +static int tolua_function_VariableArray_HDC____getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + HDC__* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "HDC__"); + return 1; +} + +static int tolua_function_VariableArray_HDC____set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(HDC__*)tolua_tousertype_dynamic(L, 3, 0, "HDC__")); return 0; } @@ -28579,7 +29836,7 @@ static int tolua_function_VariableArray_DP_Packet__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - DP_Packet* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + DP_Packet* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "DP_Packet"); return 1; } @@ -28588,7 +29845,7 @@ static int tolua_function_VariableArray_DP_Packet__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(DP_Packet*)tolua_tousertype_dynamic(L, 3, 0, "DP_Packet")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(DP_Packet*)tolua_tousertype_dynamic(L, 3, 0, "DP_Packet")); return 0; } @@ -28596,7 +29853,7 @@ static int tolua_function_VariableArray_DP_Event__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - DP_Event* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + DP_Event* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "DP_Event"); return 1; } @@ -28605,7 +29862,7 @@ static int tolua_function_VariableArray_DP_Event__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(DP_Event*)tolua_tousertype_dynamic(L, 3, 0, "DP_Event")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(DP_Event*)tolua_tousertype_dynamic(L, 3, 0, "DP_Event")); return 0; } @@ -28613,7 +29870,7 @@ static int tolua_function_VariableArray_CallInfo__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CallInfo* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CallInfo* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CallInfo"); return 1; } @@ -28622,7 +29879,7 @@ static int tolua_function_VariableArray_CallInfo__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CallInfo*)tolua_tousertype_dynamic(L, 3, 0, "CallInfo")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CallInfo*)tolua_tousertype_dynamic(L, 3, 0, "CallInfo")); return 0; } @@ -28630,7 +29887,7 @@ static int tolua_function_VariableArray_CWeaponIdentification__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWeaponIdentification* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CWeaponIdentification* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CWeaponIdentification"); return 1; } @@ -28639,7 +29896,7 @@ static int tolua_function_VariableArray_CWeaponIdentification__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CWeaponIdentification*)tolua_tousertype_dynamic(L, 3, 0, "CWeaponIdentification")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CWeaponIdentification*)tolua_tousertype_dynamic(L, 3, 0, "CWeaponIdentification")); return 0; } @@ -28647,7 +29904,7 @@ static int tolua_function_VariableArray_CVariableHash__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVariableHash* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVariableHash* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVariableHash"); return 1; } @@ -28656,7 +29913,7 @@ static int tolua_function_VariableArray_CVariableHash__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVariableHash*)tolua_tousertype_dynamic(L, 3, 0, "CVariableHash")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVariableHash*)tolua_tousertype_dynamic(L, 3, 0, "CVariableHash")); return 0; } @@ -28664,7 +29921,7 @@ static int tolua_function_VariableArray_CVRamPool__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVRamPool* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVRamPool* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVRamPool"); return 1; } @@ -28673,7 +29930,7 @@ static int tolua_function_VariableArray_CVRamPool__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVRamPool*)tolua_tousertype_dynamic(L, 3, 0, "CVRamPool")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVRamPool*)tolua_tousertype_dynamic(L, 3, 0, "CVRamPool")); return 0; } @@ -28681,7 +29938,7 @@ static int tolua_function_VariableArray_CVIDPALETTE_COLOR__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVIDPALETTE_COLOR* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVIDPALETTE_COLOR* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVIDPALETTE_COLOR"); return 1; } @@ -28690,7 +29947,7 @@ static int tolua_function_VariableArray_CVIDPALETTE_COLOR__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 3, 0, "CVIDPALETTE_COLOR")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 3, 0, "CVIDPALETTE_COLOR")); return 0; } @@ -28698,7 +29955,7 @@ static int tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__getRefe { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSchoolAndSecondaryDecrementing* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSchoolAndSecondaryDecrementing* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSchoolAndSecondaryDecrementing"); return 1; } @@ -28707,7 +29964,7 @@ static int tolua_function_VariableArray_CSchoolAndSecondaryDecrementing__set(lua { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 3, 0, "CSchoolAndSecondaryDecrementing")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 3, 0, "CSchoolAndSecondaryDecrementing")); return 0; } @@ -28715,7 +29972,7 @@ static int tolua_function_VariableArray_CResTile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResTile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResTile* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResTile"); return 1; } @@ -28724,7 +29981,7 @@ static int tolua_function_VariableArray_CResTile__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResTile*)tolua_tousertype_dynamic(L, 3, 0, "CResTile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResTile*)tolua_tousertype_dynamic(L, 3, 0, "CResTile")); return 0; } @@ -28732,7 +29989,7 @@ static int tolua_function_VariableArray_CResInfTile___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CResInfTile* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CResInfTile* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CResInfTile"); return 1; } @@ -28741,7 +29998,7 @@ static int tolua_function_VariableArray_CResInfTile___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResInfTile** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResInfTile** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -28750,7 +30007,7 @@ static int tolua_function_VariableArray_CResInfTile___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CResInfTile*)tolua_tousertype_dynamic(L, 3, 0, "CResInfTile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CResInfTile*)tolua_tousertype_dynamic(L, 3, 0, "CResInfTile")); return 0; } @@ -28758,7 +30015,7 @@ static int tolua_function_VariableArray_CPathSearch__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPathSearch* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPathSearch* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPathSearch"); return 1; } @@ -28767,7 +30024,7 @@ static int tolua_function_VariableArray_CPathSearch__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPathSearch*)tolua_tousertype_dynamic(L, 3, 0, "CPathSearch")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPathSearch*)tolua_tousertype_dynamic(L, 3, 0, "CPathSearch")); return 0; } @@ -28775,7 +30032,7 @@ static int tolua_function_VariableArray_CPathNode__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPathNode* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPathNode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPathNode"); return 1; } @@ -28784,7 +30041,7 @@ static int tolua_function_VariableArray_CPathNode__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPathNode*)tolua_tousertype_dynamic(L, 3, 0, "CPathNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPathNode*)tolua_tousertype_dynamic(L, 3, 0, "CPathNode")); return 0; } @@ -28792,7 +30049,7 @@ static int tolua_function_VariableArray_CPathNode___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CPathNode* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CPathNode* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CPathNode"); return 1; } @@ -28801,7 +30058,7 @@ static int tolua_function_VariableArray_CPathNode___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPathNode** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPathNode** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -28810,7 +30067,7 @@ static int tolua_function_VariableArray_CPathNode___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CPathNode*)tolua_tousertype_dynamic(L, 3, 0, "CPathNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CPathNode*)tolua_tousertype_dynamic(L, 3, 0, "CPathNode")); return 0; } @@ -28818,7 +30075,7 @@ static int tolua_function_VariableArray_CParticle__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CParticle* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CParticle* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CParticle"); return 1; } @@ -28827,7 +30084,7 @@ static int tolua_function_VariableArray_CParticle__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CParticle*)tolua_tousertype_dynamic(L, 3, 0, "CParticle")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CParticle*)tolua_tousertype_dynamic(L, 3, 0, "CParticle")); return 0; } @@ -28835,7 +30092,7 @@ static int tolua_function_VariableArray_CSnowFlake__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSnowFlake* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSnowFlake* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSnowFlake"); return 1; } @@ -28844,7 +30101,7 @@ static int tolua_function_VariableArray_CSnowFlake__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSnowFlake*)tolua_tousertype_dynamic(L, 3, 0, "CSnowFlake")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSnowFlake*)tolua_tousertype_dynamic(L, 3, 0, "CSnowFlake")); return 0; } @@ -28852,7 +30109,7 @@ static int tolua_function_VariableArray_CRainDrop__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CRainDrop* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CRainDrop* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CRainDrop"); return 1; } @@ -28861,7 +30118,7 @@ static int tolua_function_VariableArray_CRainDrop__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CRainDrop*)tolua_tousertype_dynamic(L, 3, 0, "CRainDrop")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CRainDrop*)tolua_tousertype_dynamic(L, 3, 0, "CRainDrop")); return 0; } @@ -28869,7 +30126,7 @@ static int tolua_function_VariableArray_CMusicPosition__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMusicPosition* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMusicPosition* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CMusicPosition"); return 1; } @@ -28878,7 +30135,7 @@ static int tolua_function_VariableArray_CMusicPosition__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMusicPosition*)tolua_tousertype_dynamic(L, 3, 0, "CMusicPosition")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CMusicPosition*)tolua_tousertype_dynamic(L, 3, 0, "CMusicPosition")); return 0; } @@ -28886,7 +30143,7 @@ static int tolua_function_VariableArray_CImmunitiesItemTypeEquip__getReference(l { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CImmunitiesItemTypeEquip* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CImmunitiesItemTypeEquip* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemTypeEquip"); return 1; } @@ -28895,7 +30152,7 @@ static int tolua_function_VariableArray_CImmunitiesItemTypeEquip__set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemTypeEquip")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemTypeEquip")); return 0; } @@ -28903,7 +30160,7 @@ static int tolua_function_VariableArray_CGameTimer__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameTimer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameTimer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameTimer"); return 1; } @@ -28912,7 +30169,7 @@ static int tolua_function_VariableArray_CGameTimer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameTimer*)tolua_tousertype_dynamic(L, 3, 0, "CGameTimer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameTimer*)tolua_tousertype_dynamic(L, 3, 0, "CGameTimer")); return 0; } @@ -28920,7 +30177,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectListEntry___get(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CGameRemoteObjectListEntry* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CGameRemoteObjectListEntry* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CGameRemoteObjectListEntry"); return 1; } @@ -28929,7 +30186,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectListEntry___getReferenc { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameRemoteObjectListEntry** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameRemoteObjectListEntry** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -28938,7 +30195,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectListEntry___set(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CGameRemoteObjectListEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameRemoteObjectListEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CGameRemoteObjectListEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameRemoteObjectListEntry")); return 0; } @@ -28946,7 +30203,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectDeletion__getReference( { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameRemoteObjectDeletion* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameRemoteObjectDeletion* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameRemoteObjectDeletion"); return 1; } @@ -28955,7 +30212,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectDeletion__set(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameRemoteObjectDeletion*)tolua_tousertype_dynamic(L, 3, 0, "CGameRemoteObjectDeletion")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameRemoteObjectDeletion*)tolua_tousertype_dynamic(L, 3, 0, "CGameRemoteObjectDeletion")); return 0; } @@ -28963,7 +30220,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectControlChange__getRefer { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameRemoteObjectControlChange* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameRemoteObjectControlChange* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameRemoteObjectControlChange"); return 1; } @@ -28972,7 +30229,7 @@ static int tolua_function_VariableArray_CGameRemoteObjectControlChange__set(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameRemoteObjectControlChange*)tolua_tousertype_dynamic(L, 3, 0, "CGameRemoteObjectControlChange")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameRemoteObjectControlChange*)tolua_tousertype_dynamic(L, 3, 0, "CGameRemoteObjectControlChange")); return 0; } @@ -28980,7 +30237,7 @@ static int tolua_function_VariableArray_CGameOptions__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameOptions* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameOptions* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CGameOptions"); return 1; } @@ -28989,7 +30246,7 @@ static int tolua_function_VariableArray_CGameOptions__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameOptions*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CGameOptions")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameOptions*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CGameOptions")); return 0; } @@ -28997,7 +30254,7 @@ static int tolua_function_VariableArray_CGameJournalEntry__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameJournalEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameJournalEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameJournalEntry"); return 1; } @@ -29006,7 +30263,7 @@ static int tolua_function_VariableArray_CGameJournalEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameJournalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameJournalEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameJournalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameJournalEntry")); return 0; } @@ -29014,7 +30271,7 @@ static int tolua_function_VariableArray_CDeathSound__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CDeathSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CDeathSound* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CDeathSound"); return 1; } @@ -29023,7 +30280,7 @@ static int tolua_function_VariableArray_CDeathSound__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CDeathSound*)tolua_tousertype_dynamic(L, 3, 0, "CDeathSound")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CDeathSound*)tolua_tousertype_dynamic(L, 3, 0, "CDeathSound")); return 0; } @@ -29031,7 +30288,7 @@ static int tolua_function_VariableArray_CColorEffect__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CColorEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CColorEffect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CColorEffect"); return 1; } @@ -29040,7 +30297,7 @@ static int tolua_function_VariableArray_CColorEffect__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CColorEffect*)tolua_tousertype_dynamic(L, 3, 0, "CColorEffect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CColorEffect*)tolua_tousertype_dynamic(L, 3, 0, "CColorEffect")); return 0; } @@ -29048,7 +30305,7 @@ static int tolua_function_VariableArray_CBounceEntry__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBounceEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CBounceEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CBounceEntry"); return 1; } @@ -29057,7 +30314,7 @@ static int tolua_function_VariableArray_CBounceEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBounceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CBounceEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CBounceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CBounceEntry")); return 0; } @@ -29065,7 +30322,7 @@ static int tolua_function_VariableArray_BAMHEADERV2__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - BAMHEADERV2* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + BAMHEADERV2* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "BAMHEADERV2"); return 1; } @@ -29074,7 +30331,7 @@ static int tolua_function_VariableArray_BAMHEADERV2__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(BAMHEADERV2*)tolua_tousertype_dynamic(L, 3, 0, "BAMHEADERV2")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(BAMHEADERV2*)tolua_tousertype_dynamic(L, 3, 0, "BAMHEADERV2")); return 0; } @@ -29082,7 +30339,7 @@ static int tolua_function_VariableArray_const_letter_t__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const letter_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const letter_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "letter_t"); return 1; } @@ -29091,7 +30348,7 @@ static int tolua_function_VariableArray_line_metric__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - line_metric* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + line_metric* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "line_metric"); return 1; } @@ -29100,7 +30357,7 @@ static int tolua_function_VariableArray_line_metric__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(line_metric*)tolua_tousertype_dynamic(L, 3, 0, "line_metric")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(line_metric*)tolua_tousertype_dynamic(L, 3, 0, "line_metric")); return 0; } @@ -29108,7 +30365,7 @@ static int tolua_function_VariableArray_unsigned_long__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned long returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned long returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -29117,7 +30374,7 @@ static int tolua_function_VariableArray_unsigned_long__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned long* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned long* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -29126,7 +30383,7 @@ static int tolua_function_VariableArray_unsigned_long__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -29134,7 +30391,7 @@ static int tolua_function_VariableArray_Node__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Node* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Node* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Node"); return 1; } @@ -29143,7 +30400,7 @@ static int tolua_function_VariableArray_Node__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Node*)tolua_tousertype_dynamic(L, 3, 0, "Node")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Node*)tolua_tousertype_dynamic(L, 3, 0, "Node")); return 0; } @@ -29151,7 +30408,7 @@ static int tolua_function_VariableArray_mosHeader_st__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - mosHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + mosHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "mosHeader_st"); return 1; } @@ -29160,7 +30417,7 @@ static int tolua_function_VariableArray_mosHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(mosHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "mosHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(mosHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "mosHeader_st")); return 0; } @@ -29168,7 +30425,7 @@ static int tolua_function_VariableArray_sequenceTableEntry_st__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - sequenceTableEntry_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + sequenceTableEntry_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "sequenceTableEntry_st"); return 1; } @@ -29177,7 +30434,7 @@ static int tolua_function_VariableArray_sequenceTableEntry_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(sequenceTableEntry_st*)tolua_tousertype_dynamic(L, 3, 0, "sequenceTableEntry_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(sequenceTableEntry_st*)tolua_tousertype_dynamic(L, 3, 0, "sequenceTableEntry_st")); return 0; } @@ -29185,7 +30442,7 @@ static int tolua_function_VariableArray_sheet__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - sheet* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + sheet* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "sheet"); return 1; } @@ -29194,7 +30451,7 @@ static int tolua_function_VariableArray_sheet__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(sheet*)tolua_tousertype_dynamic(L, 3, 0, "sheet")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(sheet*)tolua_tousertype_dynamic(L, 3, 0, "sheet")); return 0; } @@ -29202,7 +30459,7 @@ static int tolua_function_VariableArray_st_tiledef__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - st_tiledef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + st_tiledef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "st_tiledef"); return 1; } @@ -29211,7 +30468,7 @@ static int tolua_function_VariableArray_st_tiledef__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(st_tiledef*)tolua_tousertype_dynamic(L, 3, 0, "st_tiledef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(st_tiledef*)tolua_tousertype_dynamic(L, 3, 0, "st_tiledef")); return 0; } @@ -29219,7 +30476,7 @@ static int tolua_function_VariableArray_glyphmap_t__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - glyphmap_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + glyphmap_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "glyphmap_t"); return 1; } @@ -29228,7 +30485,7 @@ static int tolua_function_VariableArray_glyphmap_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(glyphmap_t*)tolua_tousertype_dynamic(L, 3, 0, "glyphmap_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(glyphmap_t*)tolua_tousertype_dynamic(L, 3, 0, "glyphmap_t")); return 0; } @@ -29236,7 +30493,7 @@ static int tolua_function_VariableArray_tagBITMAPFILEHEADER__getReference(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - tagBITMAPFILEHEADER* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tagBITMAPFILEHEADER* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "tagBITMAPFILEHEADER"); return 1; } @@ -29245,7 +30502,7 @@ static int tolua_function_VariableArray_tagBITMAPFILEHEADER__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(tagBITMAPFILEHEADER*)tolua_tousertype_dynamic(L, 3, 0, "tagBITMAPFILEHEADER")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(tagBITMAPFILEHEADER*)tolua_tousertype_dynamic(L, 3, 0, "tagBITMAPFILEHEADER")); return 0; } @@ -29253,7 +30510,7 @@ static int tolua_function_VariableArray_tagBITMAPINFOHEADER__getReference(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - tagBITMAPINFOHEADER* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tagBITMAPINFOHEADER* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "tagBITMAPINFOHEADER"); return 1; } @@ -29262,7 +30519,7 @@ static int tolua_function_VariableArray_tagBITMAPINFOHEADER__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(tagBITMAPINFOHEADER*)tolua_tousertype_dynamic(L, 3, 0, "tagBITMAPINFOHEADER")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(tagBITMAPINFOHEADER*)tolua_tousertype_dynamic(L, 3, 0, "tagBITMAPINFOHEADER")); return 0; } @@ -29270,7 +30527,7 @@ static int tolua_function_VariableArray_tagPOINT__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - tagPOINT* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tagPOINT* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "tagPOINT"); return 1; } @@ -29279,7 +30536,7 @@ static int tolua_function_VariableArray_tagPOINT__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(tagPOINT*)tolua_tousertype_dynamic(L, 3, 0, "tagPOINT")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(tagPOINT*)tolua_tousertype_dynamic(L, 3, 0, "tagPOINT")); return 0; } @@ -29287,7 +30544,7 @@ static int tolua_function_VariableArray_uiColumn__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - uiColumn* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + uiColumn* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "uiColumn"); return 1; } @@ -29296,7 +30553,7 @@ static int tolua_function_VariableArray_uiColumn__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(uiColumn*)tolua_tousertype_dynamic(L, 3, 0, "uiColumn")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(uiColumn*)tolua_tousertype_dynamic(L, 3, 0, "uiColumn")); return 0; } @@ -29304,7 +30561,7 @@ static int tolua_function_VariableArray_uiVariant__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - uiVariant* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + uiVariant* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "uiVariant"); return 1; } @@ -29313,7 +30570,7 @@ static int tolua_function_VariableArray_uiVariant__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(uiVariant*)tolua_tousertype_dynamic(L, 3, 0, "uiVariant")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(uiVariant*)tolua_tousertype_dynamic(L, 3, 0, "uiVariant")); return 0; } @@ -29321,7 +30578,7 @@ static int tolua_function_VariableArray_lua_State__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - lua_State* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + lua_State* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "lua_State"); return 1; } @@ -29330,7 +30587,7 @@ static int tolua_function_VariableArray_lua_State__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(lua_State*)tolua_tousertype_dynamic(L, 3, 0, "lua_State")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(lua_State*)tolua_tousertype_dynamic(L, 3, 0, "lua_State")); return 0; } @@ -29338,7 +30595,7 @@ static int tolua_function_VariableArray_const_SDL_Rect__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const SDL_Rect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const SDL_Rect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Rect"); return 1; } @@ -29347,7 +30604,7 @@ static int tolua_function_VariableArray_SDL_Rect__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Rect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Rect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Rect"); return 1; } @@ -29356,7 +30613,7 @@ static int tolua_function_VariableArray_SDL_Rect__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect")); return 0; } @@ -29364,7 +30621,7 @@ static int tolua_function_VariableArray_SDL_Window__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Window* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Window* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Window"); return 1; } @@ -29373,7 +30630,7 @@ static int tolua_function_VariableArray_SDL_Window__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); return 0; } @@ -29381,7 +30638,7 @@ static int tolua_function_VariableArray_SDL_Surface__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Surface* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Surface* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Surface"); return 1; } @@ -29390,7 +30647,7 @@ static int tolua_function_VariableArray_SDL_Surface__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Surface*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Surface")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Surface*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Surface")); return 0; } @@ -29398,7 +30655,7 @@ static int tolua_function_VariableArray_const_SDL_Point__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const SDL_Point* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const SDL_Point* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Point"); return 1; } @@ -29407,7 +30664,7 @@ static int tolua_function_VariableArray_ISteamUGC__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ISteamUGC* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ISteamUGC* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ISteamUGC"); return 1; } @@ -29416,7 +30673,7 @@ static int tolua_function_VariableArray_ISteamUGC__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(ISteamUGC*)tolua_tousertype_dynamic(L, 3, 0, "ISteamUGC")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(ISteamUGC*)tolua_tousertype_dynamic(L, 3, 0, "ISteamUGC")); return 0; } @@ -29424,7 +30681,7 @@ static int tolua_function_VariableArray_ISteamRemoteStorage__getReference(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - ISteamRemoteStorage* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + ISteamRemoteStorage* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "ISteamRemoteStorage"); return 1; } @@ -29433,7 +30690,7 @@ static int tolua_function_VariableArray_ISteamRemoteStorage__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 3, 0, "ISteamRemoteStorage")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 3, 0, "ISteamRemoteStorage")); return 0; } @@ -29441,7 +30698,7 @@ static int tolua_function_VariableArray_IDPProvider__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - IDPProvider* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + IDPProvider* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "IDPProvider"); return 1; } @@ -29450,7 +30707,7 @@ static int tolua_function_VariableArray_IDPProvider__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(IDPProvider*)tolua_tousertype_dynamic(L, 3, 0, "IDPProvider")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(IDPProvider*)tolua_tousertype_dynamic(L, 3, 0, "IDPProvider")); return 0; } @@ -29458,7 +30715,7 @@ static int tolua_function_VariableArray_IDPPeer__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - IDPPeer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + IDPPeer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "IDPPeer"); return 1; } @@ -29467,7 +30724,7 @@ static int tolua_function_VariableArray_IDPPeer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(IDPPeer*)tolua_tousertype_dynamic(L, 3, 0, "IDPPeer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(IDPPeer*)tolua_tousertype_dynamic(L, 3, 0, "IDPPeer")); return 0; } @@ -29475,7 +30732,7 @@ static int tolua_function_VariableArray_CVidPoly__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVidPoly* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVidPoly* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVidPoly"); return 1; } @@ -29484,7 +30741,7 @@ static int tolua_function_VariableArray_CVidPoly__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVidPoly*)tolua_tousertype_dynamic(L, 3, 0, "CVidPoly")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVidPoly*)tolua_tousertype_dynamic(L, 3, 0, "CVidPoly")); return 0; } @@ -29492,7 +30749,7 @@ static int tolua_function_VariableArray_const_CString__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CString* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CString* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -29501,7 +30758,7 @@ static int tolua_function_VariableArray_CFeedbackEntry__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CFeedbackEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CFeedbackEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CFeedbackEntry"); return 1; } @@ -29510,7 +30767,7 @@ static int tolua_function_VariableArray_CFeedbackEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CFeedbackEntry*)tolua_tousertype_dynamic(L, 3, 0, "CFeedbackEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CFeedbackEntry*)tolua_tousertype_dynamic(L, 3, 0, "CFeedbackEntry")); return 0; } @@ -29518,7 +30775,7 @@ static int tolua_function_VariableArray_CSpawnVar__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawnVar* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpawnVar* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpawnVar"); return 1; } @@ -29527,7 +30784,7 @@ static int tolua_function_VariableArray_CSpawnVar__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawnVar*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnVar")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpawnVar*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnVar")); return 0; } @@ -29535,7 +30792,7 @@ static int tolua_function_VariableArray_CSpawnPointVar__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawnPointVar* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpawnPointVar* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpawnPointVar"); return 1; } @@ -29544,7 +30801,7 @@ static int tolua_function_VariableArray_CSpawnPointVar__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawnPointVar*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnPointVar")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpawnPointVar*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnPointVar")); return 0; } @@ -29552,7 +30809,7 @@ static int tolua_function_VariableArray_CSoundMixer__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSoundMixer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSoundMixer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CSoundMixer"); return 1; } @@ -29561,7 +30818,7 @@ static int tolua_function_VariableArray_CSoundMixer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSoundMixer*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CSoundMixer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSoundMixer*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CSoundMixer")); return 0; } @@ -29569,7 +30826,7 @@ static int tolua_function_VariableArray_const_CRes__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CRes* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CRes* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CRes"); return 1; } @@ -29578,7 +30835,7 @@ static int tolua_function_VariableArray_CResWED__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResWED* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResWED* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResWED"); return 1; } @@ -29587,7 +30844,7 @@ static int tolua_function_VariableArray_CResWED__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResWED*)tolua_tousertype_dynamic(L, 3, 0, "CResWED")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResWED*)tolua_tousertype_dynamic(L, 3, 0, "CResWED")); return 0; } @@ -29595,7 +30852,7 @@ static int tolua_function_VariableArray_CResPVR__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResPVR* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResPVR* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResPVR"); return 1; } @@ -29604,7 +30861,7 @@ static int tolua_function_VariableArray_CResPVR__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResPVR*)tolua_tousertype_dynamic(L, 3, 0, "CResPVR")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResPVR*)tolua_tousertype_dynamic(L, 3, 0, "CResPVR")); return 0; } @@ -29612,7 +30869,7 @@ static int tolua_function_VariableArray_const_CRect__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CRect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CRect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CRect"); return 1; } @@ -29621,7 +30878,7 @@ static int tolua_function_VariableArray_CResWebm__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResWebm* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResWebm* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResWebm"); return 1; } @@ -29630,7 +30887,7 @@ static int tolua_function_VariableArray_CResWebm__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResWebm*)tolua_tousertype_dynamic(L, 3, 0, "CResWebm")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResWebm*)tolua_tousertype_dynamic(L, 3, 0, "CResWebm")); return 0; } @@ -29638,7 +30895,7 @@ static int tolua_function_VariableArray_const_CPoint__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CPoint* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -29647,7 +30904,7 @@ static int tolua_function_VariableArray_CAOEEntry__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAOEEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAOEEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAOEEntry"); return 1; } @@ -29656,7 +30913,7 @@ static int tolua_function_VariableArray_CAOEEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAOEEntry*)tolua_tousertype_dynamic(L, 3, 0, "CAOEEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAOEEntry*)tolua_tousertype_dynamic(L, 3, 0, "CAOEEntry")); return 0; } @@ -29664,7 +30921,7 @@ static int tolua_function_VariableArray_CPersistantEffect__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPersistantEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPersistantEffect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPersistantEffect"); return 1; } @@ -29673,7 +30930,7 @@ static int tolua_function_VariableArray_CPersistantEffect__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPersistantEffect*)tolua_tousertype_dynamic(L, 3, 0, "CPersistantEffect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPersistantEffect*)tolua_tousertype_dynamic(L, 3, 0, "CPersistantEffect")); return 0; } @@ -29681,7 +30938,7 @@ static int tolua_function_VariableArray_CObject__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CObject* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CObject* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CObject"); return 1; } @@ -29690,7 +30947,7 @@ static int tolua_function_VariableArray_CObject__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CObject*)tolua_tousertype_dynamic(L, 3, 0, "CObject")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CObject*)tolua_tousertype_dynamic(L, 3, 0, "CObject")); return 0; } @@ -29698,7 +30955,7 @@ static int tolua_function_VariableArray_CException__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CException* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CException* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CException"); return 1; } @@ -29707,7 +30964,7 @@ static int tolua_function_VariableArray_CException__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CException*)tolua_tousertype_dynamic(L, 3, 0, "CException")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CException*)tolua_tousertype_dynamic(L, 3, 0, "CException")); return 0; } @@ -29715,7 +30972,7 @@ static int tolua_function_VariableArray_CFileException__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CFileException* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CFileException* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CFileException"); return 1; } @@ -29724,7 +30981,7 @@ static int tolua_function_VariableArray_CFileException__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CFileException*)tolua_tousertype_dynamic(L, 3, 0, "CFileException")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CFileException*)tolua_tousertype_dynamic(L, 3, 0, "CFileException")); return 0; } @@ -29732,7 +30989,7 @@ static int tolua_function_VariableArray_CList_unsigned_long_unsigned_long____get { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CList"); return 1; } @@ -29741,7 +30998,7 @@ static int tolua_function_VariableArray_CList_unsigned_long_unsigned_long____set { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CList*)tolua_tousertype_dynamic(L, 3, 0, "CList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CList*)tolua_tousertype_dynamic(L, 3, 0, "CList")); return 0; } @@ -29749,7 +31006,7 @@ static int tolua_function_VariableArray_CMapStringToString__CAssoc___get(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CMapStringToString::CAssoc* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CMapStringToString::CAssoc* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CMapStringToString::CAssoc"); return 1; } @@ -29758,7 +31015,7 @@ static int tolua_function_VariableArray_CMapStringToString__CAssoc___getReferenc { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMapStringToString::CAssoc** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMapStringToString::CAssoc** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -29767,7 +31024,7 @@ static int tolua_function_VariableArray_CMapStringToString__CAssoc___set(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CMapStringToString::CAssoc*)tolua_tousertype_dynamic(L, 3, 0, "CMapStringToString::CAssoc")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CMapStringToString::CAssoc*)tolua_tousertype_dynamic(L, 3, 0, "CMapStringToString::CAssoc")); return 0; } @@ -29775,7 +31032,7 @@ static int tolua_function_VariableArray_CVoice__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVoice* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVoice* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVoice"); return 1; } @@ -29784,7 +31041,7 @@ static int tolua_function_VariableArray_CVoice__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVoice*)tolua_tousertype_dynamic(L, 3, 0, "CVoice")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVoice*)tolua_tousertype_dynamic(L, 3, 0, "CVoice")); return 0; } @@ -29792,7 +31049,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___getReferen { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -29801,7 +31058,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___set(lua_St { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -29809,7 +31066,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CAITrigger____get { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -29818,7 +31075,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_CAITrigger____set { VariableArray>* self = (VariableArray>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -29826,7 +31083,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___CNode__get { VariableArray::CNode>* self = (VariableArray::CNode>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray::CNode>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList::CNode* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList::CNode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -29835,7 +31092,7 @@ static int tolua_function_VariableArray_CTypedPtrList_CPtrList_long___CNode__set { VariableArray::CNode>* self = (VariableArray::CNode>*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray::CNode>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); return 0; } @@ -29843,7 +31100,7 @@ static int tolua_function_VariableArray_CTimer__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTimer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTimer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTimer"); return 1; } @@ -29852,7 +31109,7 @@ static int tolua_function_VariableArray_CTimer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTimer*)tolua_tousertype_dynamic(L, 3, 0, "CTimer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTimer*)tolua_tousertype_dynamic(L, 3, 0, "CTimer")); return 0; } @@ -29860,7 +31117,7 @@ static int tolua_function_VariableArray_CStringList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStringList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CStringList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CStringList"); return 1; } @@ -29869,7 +31126,7 @@ static int tolua_function_VariableArray_CStringList__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CStringList*)tolua_tousertype_dynamic(L, 3, 0, "CStringList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CStringList*)tolua_tousertype_dynamic(L, 3, 0, "CStringList")); return 0; } @@ -29877,7 +31134,7 @@ static int tolua_function_VariableArray_CStringList__CNode__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStringList::CNode* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CStringList::CNode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CStringList::CNode"); return 1; } @@ -29886,7 +31143,7 @@ static int tolua_function_VariableArray_CStringList__CNode__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CStringList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CStringList::CNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CStringList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CStringList::CNode")); return 0; } @@ -29894,7 +31151,7 @@ static int tolua_function_VariableArray_CAICondition__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAICondition* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAICondition* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAICondition"); return 1; } @@ -29903,7 +31160,7 @@ static int tolua_function_VariableArray_CAICondition__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAICondition*)tolua_tousertype_dynamic(L, 3, 0, "CAICondition")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAICondition*)tolua_tousertype_dynamic(L, 3, 0, "CAICondition")); return 0; } @@ -29911,7 +31168,7 @@ static int tolua_function_VariableArray_CAIResponseSet__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIResponseSet* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIResponseSet* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIResponseSet"); return 1; } @@ -29920,7 +31177,7 @@ static int tolua_function_VariableArray_CAIResponseSet__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIResponseSet*)tolua_tousertype_dynamic(L, 3, 0, "CAIResponseSet")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIResponseSet*)tolua_tousertype_dynamic(L, 3, 0, "CAIResponseSet")); return 0; } @@ -29928,7 +31185,7 @@ static int tolua_function_VariableArray_CAIConditionResponse__getReference(lua_S { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIConditionResponse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIConditionResponse* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIConditionResponse"); return 1; } @@ -29937,7 +31194,7 @@ static int tolua_function_VariableArray_CAIConditionResponse__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIConditionResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIConditionResponse")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIConditionResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIConditionResponse")); return 0; } @@ -29945,7 +31202,7 @@ static int tolua_function_VariableArray_CGameButtonList__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameButtonList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameButtonList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameButtonList"); return 1; } @@ -29954,7 +31211,7 @@ static int tolua_function_VariableArray_CGameButtonList__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameButtonList*)tolua_tousertype_dynamic(L, 3, 0, "CGameButtonList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameButtonList*)tolua_tousertype_dynamic(L, 3, 0, "CGameButtonList")); return 0; } @@ -29962,7 +31219,7 @@ static int tolua_function_VariableArray_CAIResponse__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIResponse* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIResponse* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIResponse"); return 1; } @@ -29971,7 +31228,7 @@ static int tolua_function_VariableArray_CAIResponse__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIResponse")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIResponse*)tolua_tousertype_dynamic(L, 3, 0, "CAIResponse")); return 0; } @@ -29979,7 +31236,7 @@ static int tolua_function_VariableArray_CWarp__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWarp* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CWarp* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CWarp"); return 1; } @@ -29988,7 +31245,7 @@ static int tolua_function_VariableArray_CWarp__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CWarp*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CWarp")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CWarp*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CWarp")); return 0; } @@ -29996,7 +31253,7 @@ static int tolua_function_VariableArray_CMemINISection__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMemINISection* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMemINISection* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CMemINISection"); return 1; } @@ -30005,7 +31262,7 @@ static int tolua_function_VariableArray_CMemINISection__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMemINISection*)tolua_tousertype_dynamic(L, 3, 0, "CMemINISection")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CMemINISection*)tolua_tousertype_dynamic(L, 3, 0, "CMemINISection")); return 0; } @@ -30013,7 +31270,7 @@ static int tolua_function_VariableArray_CSpawnList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawnList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpawnList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpawnList"); return 1; } @@ -30022,7 +31279,7 @@ static int tolua_function_VariableArray_CSpawnList__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawnList*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpawnList*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnList")); return 0; } @@ -30030,7 +31287,7 @@ static int tolua_function_VariableArray_CSpawnFile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawnFile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpawnFile* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpawnFile"); return 1; } @@ -30039,7 +31296,7 @@ static int tolua_function_VariableArray_CSpawnFile__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawnFile*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnFile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpawnFile*)tolua_tousertype_dynamic(L, 3, 0, "CSpawnFile")); return 0; } @@ -30047,7 +31304,7 @@ static int tolua_function_VariableArray_CPtrList__CNode__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPtrList::CNode* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPtrList::CNode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPtrList::CNode"); return 1; } @@ -30056,7 +31313,7 @@ static int tolua_function_VariableArray_CPtrList__CNode__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CPtrList::CNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CPtrList::CNode")); return 0; } @@ -30064,7 +31321,7 @@ static int tolua_function_VariableArray_CGameAbilityList__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameAbilityList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameAbilityList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameAbilityList"); return 1; } @@ -30073,7 +31330,7 @@ static int tolua_function_VariableArray_CGameAbilityList__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameAbilityList*)tolua_tousertype_dynamic(L, 3, 0, "CGameAbilityList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameAbilityList*)tolua_tousertype_dynamic(L, 3, 0, "CGameAbilityList")); return 0; } @@ -30081,7 +31338,7 @@ static int tolua_function_VariableArray_CObList__CNode__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CObList::CNode* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CObList::CNode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CObList::CNode"); return 1; } @@ -30090,7 +31347,7 @@ static int tolua_function_VariableArray_CObList__CNode__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CObList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CObList::CNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CObList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CObList::CNode")); return 0; } @@ -30098,7 +31355,7 @@ static int tolua_function_VariableArray_CMessage__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMessage* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMessage* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CMessage"); return 1; } @@ -30107,7 +31364,7 @@ static int tolua_function_VariableArray_CMessage__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMessage*)tolua_tousertype_dynamic(L, 3, 0, "CMessage")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CMessage*)tolua_tousertype_dynamic(L, 3, 0, "CMessage")); return 0; } @@ -30115,7 +31372,7 @@ static int tolua_function_VariableArray_CMemINIValue__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMemINIValue* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMemINIValue* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CMemINIValue"); return 1; } @@ -30124,7 +31381,7 @@ static int tolua_function_VariableArray_CMemINIValue__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMemINIValue*)tolua_tousertype_dynamic(L, 3, 0, "CMemINIValue")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CMemINIValue*)tolua_tousertype_dynamic(L, 3, 0, "CMemINIValue")); return 0; } @@ -30132,7 +31389,7 @@ static int tolua_function_VariableArray_CGameAreaClairvoyanceEntry__getReference { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameAreaClairvoyanceEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameAreaClairvoyanceEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameAreaClairvoyanceEntry"); return 1; } @@ -30141,7 +31398,7 @@ static int tolua_function_VariableArray_CGameAreaClairvoyanceEntry__set(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameAreaClairvoyanceEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 3, 0, "CGameAreaClairvoyanceEntry")); return 0; } @@ -30149,7 +31406,7 @@ static int tolua_function_VariableArray_CFile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CFile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CFile* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CFile"); return 1; } @@ -30158,7 +31415,7 @@ static int tolua_function_VariableArray_CFile__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CFile*)tolua_tousertype_dynamic(L, 3, 0, "CFile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CFile*)tolua_tousertype_dynamic(L, 3, 0, "CFile")); return 0; } @@ -30166,7 +31423,7 @@ static int tolua_function_VariableArray_CCallbackBase__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCallbackBase* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCallbackBase* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCallbackBase"); return 1; } @@ -30175,7 +31432,7 @@ static int tolua_function_VariableArray_CCallbackBase__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCallbackBase*)tolua_tousertype_dynamic(L, 3, 0, "CCallbackBase")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCallbackBase*)tolua_tousertype_dynamic(L, 3, 0, "CCallbackBase")); return 0; } @@ -30183,7 +31440,7 @@ static int tolua_function_VariableArray_CBaldurEngine__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBaldurEngine* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CBaldurEngine* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CBaldurEngine"); return 1; } @@ -30192,7 +31449,7 @@ static int tolua_function_VariableArray_CBaldurEngine__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBaldurEngine*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CBaldurEngine")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CBaldurEngine*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CBaldurEngine")); return 0; } @@ -30200,7 +31457,7 @@ static int tolua_function_VariableArray_CScreenMap__vtbl__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenMap::vtbl* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenMap::vtbl* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CScreenMap::vtbl"); return 1; } @@ -30209,7 +31466,7 @@ static int tolua_function_VariableArray_CScreenMap__vtbl__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenMap::vtbl*)tolua_tousertype_dynamic(L, 3, 0, "CScreenMap::vtbl")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenMap::vtbl*)tolua_tousertype_dynamic(L, 3, 0, "CScreenMap::vtbl")); return 0; } @@ -30217,7 +31474,7 @@ static int tolua_function_VariableArray_CDungeonMaster__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CDungeonMaster* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CDungeonMaster* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CDungeonMaster"); return 1; } @@ -30226,7 +31483,7 @@ static int tolua_function_VariableArray_CDungeonMaster__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CDungeonMaster*)tolua_tousertype_dynamic(L, 3, 0, "CDungeonMaster")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CDungeonMaster*)tolua_tousertype_dynamic(L, 3, 0, "CDungeonMaster")); return 0; } @@ -30234,7 +31491,7 @@ static int tolua_function_VariableArray_uiItem__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - uiItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + uiItem* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "uiItem"); return 1; } @@ -30243,7 +31500,7 @@ static int tolua_function_VariableArray_uiItem__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(uiItem*)tolua_tousertype_dynamic(L, 3, 0, "uiItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(uiItem*)tolua_tousertype_dynamic(L, 3, 0, "uiItem")); return 0; } @@ -30251,7 +31508,7 @@ static int tolua_function_VariableArray_stbrp_context__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - stbrp_context* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + stbrp_context* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "stbrp_context"); return 1; } @@ -30260,7 +31517,7 @@ static int tolua_function_VariableArray_stbrp_context__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(stbrp_context*)tolua_tousertype_dynamic(L, 3, 0, "stbrp_context")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(stbrp_context*)tolua_tousertype_dynamic(L, 3, 0, "stbrp_context")); return 0; } @@ -30268,7 +31525,7 @@ static int tolua_function_VariableArray_lua_Debug__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - lua_Debug* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + lua_Debug* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "lua_Debug"); return 1; } @@ -30277,7 +31534,7 @@ static int tolua_function_VariableArray_lua_Debug__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(lua_Debug*)tolua_tousertype_dynamic(L, 3, 0, "lua_Debug")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(lua_Debug*)tolua_tousertype_dynamic(L, 3, 0, "lua_Debug")); return 0; } @@ -30285,7 +31542,7 @@ static int tolua_function_VariableArray_global_State__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - global_State* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + global_State* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "global_State"); return 1; } @@ -30294,7 +31551,7 @@ static int tolua_function_VariableArray_global_State__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(global_State*)tolua_tousertype_dynamic(L, 3, 0, "global_State")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(global_State*)tolua_tousertype_dynamic(L, 3, 0, "global_State")); return 0; } @@ -30302,7 +31559,7 @@ static int tolua_function_VariableArray_font_t__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - font_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + font_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "font_t"); return 1; } @@ -30311,7 +31568,7 @@ static int tolua_function_VariableArray_font_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(font_t*)tolua_tousertype_dynamic(L, 3, 0, "font_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(font_t*)tolua_tousertype_dynamic(L, 3, 0, "font_t")); return 0; } @@ -30319,7 +31576,7 @@ static int tolua_function_VariableArray_lua_longjmp__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - lua_longjmp* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + lua_longjmp* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "lua_longjmp"); return 1; } @@ -30328,7 +31585,24 @@ static int tolua_function_VariableArray_lua_longjmp__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(lua_longjmp*)tolua_tousertype_dynamic(L, 3, 0, "lua_longjmp")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(lua_longjmp*)tolua_tousertype_dynamic(L, 3, 0, "lua_longjmp")); + return 0; +} + +static int tolua_function_VariableArray_SDL_VideoDevice__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_VideoDevice* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_VideoDevice"); + return 1; +} + +static int tolua_function_VariableArray_SDL_VideoDevice__set(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_VideoDevice*)tolua_tousertype_dynamic(L, 3, 0, "SDL_VideoDevice")); return 0; } @@ -30336,7 +31610,7 @@ static int tolua_function_VariableArray_SDL_PixelFormat__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_PixelFormat* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_PixelFormat* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_PixelFormat"); return 1; } @@ -30345,15 +31619,24 @@ static int tolua_function_VariableArray_SDL_PixelFormat__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_PixelFormat*)tolua_tousertype_dynamic(L, 3, 0, "SDL_PixelFormat")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_PixelFormat*)tolua_tousertype_dynamic(L, 3, 0, "SDL_PixelFormat")); return 0; } +static int tolua_function_VariableArray_const_SDL_MessageBoxColorScheme__getReference(lua_State* L) +{ + VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + const SDL_MessageBoxColorScheme* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxColorScheme"); + return 1; +} + static int tolua_function_VariableArray_CVariable__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVariable* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVariable* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVariable"); return 1; } @@ -30362,7 +31645,7 @@ static int tolua_function_VariableArray_CVariable__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVariable*)tolua_tousertype_dynamic(L, 3, 0, "CVariable")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVariable*)tolua_tousertype_dynamic(L, 3, 0, "CVariable")); return 0; } @@ -30370,7 +31653,7 @@ static int tolua_function_VariableArray_DP_Player__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - DP_Player* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + DP_Player* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "DP_Player"); return 1; } @@ -30379,7 +31662,7 @@ static int tolua_function_VariableArray_DP_Player__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(DP_Player*)tolua_tousertype_dynamic(L, 3, 0, "DP_Player")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(DP_Player*)tolua_tousertype_dynamic(L, 3, 0, "DP_Player")); return 0; } @@ -30387,7 +31670,7 @@ static int tolua_function_VariableArray_SteamUGCDetails_t__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SteamUGCDetails_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SteamUGCDetails_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SteamUGCDetails_t"); return 1; } @@ -30396,7 +31679,7 @@ static int tolua_function_VariableArray_SteamUGCDetails_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamUGCDetails_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamUGCDetails_t")); return 0; } @@ -30404,7 +31687,7 @@ static int tolua_function_VariableArray_SDL_Event__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - SDL_Event* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + SDL_Event* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "SDL_Event"); return 1; } @@ -30413,7 +31696,7 @@ static int tolua_function_VariableArray_SDL_Event__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(SDL_Event*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Event")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_Event*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Event")); return 0; } @@ -30421,7 +31704,7 @@ static int tolua_function_VariableArray_CVisibilityMapTreeNode___get(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CVisibilityMapTreeNode* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CVisibilityMapTreeNode* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CVisibilityMapTreeNode"); return 1; } @@ -30430,7 +31713,7 @@ static int tolua_function_VariableArray_CVisibilityMapTreeNode___getReference(lu { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVisibilityMapTreeNode** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVisibilityMapTreeNode** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -30439,7 +31722,7 @@ static int tolua_function_VariableArray_CVisibilityMapTreeNode___set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CVisibilityMapTreeNode*)tolua_tousertype_dynamic(L, 3, 0, "CVisibilityMapTreeNode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CVisibilityMapTreeNode*)tolua_tousertype_dynamic(L, 3, 0, "CVisibilityMapTreeNode")); return 0; } @@ -30447,7 +31730,7 @@ static int tolua_function_VariableArray_CVidPalette__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVidPalette* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVidPalette* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVidPalette"); return 1; } @@ -30456,7 +31739,7 @@ static int tolua_function_VariableArray_CVidPalette__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVidPalette*)tolua_tousertype_dynamic(L, 3, 0, "CVidPalette")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVidPalette*)tolua_tousertype_dynamic(L, 3, 0, "CVidPalette")); return 0; } @@ -30464,7 +31747,7 @@ static int tolua_function_VariableArray_CVIDIMG_PALETTEAFFECT__getReference(lua_ { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVIDIMG_PALETTEAFFECT* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVIDIMG_PALETTEAFFECT* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVIDIMG_PALETTEAFFECT"); return 1; } @@ -30473,7 +31756,7 @@ static int tolua_function_VariableArray_CVIDIMG_PALETTEAFFECT__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT")); return 0; } @@ -30481,7 +31764,7 @@ static int tolua_function_VariableArray_CSoundMixerImp__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSoundMixerImp* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSoundMixerImp* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSoundMixerImp"); return 1; } @@ -30490,7 +31773,7 @@ static int tolua_function_VariableArray_CSoundMixerImp__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSoundMixerImp*)tolua_tousertype_dynamic(L, 3, 0, "CSoundMixerImp")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSoundMixerImp*)tolua_tousertype_dynamic(L, 3, 0, "CSoundMixerImp")); return 0; } @@ -30498,7 +31781,7 @@ static int tolua_function_VariableArray_CSearchRequest__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSearchRequest* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSearchRequest* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSearchRequest"); return 1; } @@ -30507,7 +31790,7 @@ static int tolua_function_VariableArray_CSearchRequest__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSearchRequest*)tolua_tousertype_dynamic(L, 3, 0, "CSearchRequest")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSearchRequest*)tolua_tousertype_dynamic(L, 3, 0, "CSearchRequest")); return 0; } @@ -30515,7 +31798,7 @@ static int tolua_function_VariableArray_CScreenMovies__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenMovies* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenMovies* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenMovies"); return 1; } @@ -30524,7 +31807,7 @@ static int tolua_function_VariableArray_CScreenMovies__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenMovies*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenMovies")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenMovies*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenMovies")); return 0; } @@ -30532,7 +31815,7 @@ static int tolua_function_VariableArray_CScreenConnection__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenConnection* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenConnection* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenConnection"); return 1; } @@ -30541,7 +31824,7 @@ static int tolua_function_VariableArray_CScreenConnection__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenConnection*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenConnection")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenConnection*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenConnection")); return 0; } @@ -30549,7 +31832,7 @@ static int tolua_function_VariableArray_const_CResRef__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -30558,7 +31841,7 @@ static int tolua_function_VariableArray_CAIScript___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CAIScript* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CAIScript* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CAIScript"); return 1; } @@ -30567,7 +31850,7 @@ static int tolua_function_VariableArray_CAIScript___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIScript** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIScript** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -30576,7 +31859,7 @@ static int tolua_function_VariableArray_CAIScript___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CAIScript*)tolua_tousertype_dynamic(L, 3, 0, "CAIScript")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CAIScript*)tolua_tousertype_dynamic(L, 3, 0, "CAIScript")); return 0; } @@ -30584,7 +31867,7 @@ static int tolua_function_VariableArray_CAbilityId__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAbilityId* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAbilityId* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAbilityId"); return 1; } @@ -30593,7 +31876,7 @@ static int tolua_function_VariableArray_CAbilityId__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAbilityId*)tolua_tousertype_dynamic(L, 3, 0, "CAbilityId")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAbilityId*)tolua_tousertype_dynamic(L, 3, 0, "CAbilityId")); return 0; } @@ -30601,7 +31884,7 @@ static int tolua_function_VariableArray_CGameDialogSprite__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameDialogSprite* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameDialogSprite* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameDialogSprite"); return 1; } @@ -30610,7 +31893,7 @@ static int tolua_function_VariableArray_CGameDialogSprite__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameDialogSprite*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogSprite")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameDialogSprite*)tolua_tousertype_dynamic(L, 3, 0, "CGameDialogSprite")); return 0; } @@ -30618,7 +31901,7 @@ static int tolua_function_VariableArray_CAIIdList__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIIdList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIIdList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIIdList"); return 1; } @@ -30627,7 +31910,7 @@ static int tolua_function_VariableArray_CAIIdList__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIIdList*)tolua_tousertype_dynamic(L, 3, 0, "CAIIdList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIIdList*)tolua_tousertype_dynamic(L, 3, 0, "CAIIdList")); return 0; } @@ -30635,7 +31918,7 @@ static int tolua_function_VariableArray_CAIScriptFile__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIScriptFile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIScriptFile* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIScriptFile"); return 1; } @@ -30644,7 +31927,7 @@ static int tolua_function_VariableArray_CAIScriptFile__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIScriptFile*)tolua_tousertype_dynamic(L, 3, 0, "CAIScriptFile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIScriptFile*)tolua_tousertype_dynamic(L, 3, 0, "CAIScriptFile")); return 0; } @@ -30652,7 +31935,7 @@ static int tolua_function_VariableArray_STR_RES__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - STR_RES* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + STR_RES* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "STR_RES"); return 1; } @@ -30661,7 +31944,7 @@ static int tolua_function_VariableArray_STR_RES__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(STR_RES*)tolua_tousertype_dynamic(L, 3, 0, "STR_RES")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(STR_RES*)tolua_tousertype_dynamic(L, 3, 0, "STR_RES")); return 0; } @@ -30669,7 +31952,7 @@ static int tolua_function_VariableArray_CSoundImp__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSoundImp* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSoundImp* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSoundImp"); return 1; } @@ -30678,7 +31961,7 @@ static int tolua_function_VariableArray_CSoundImp__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSoundImp*)tolua_tousertype_dynamic(L, 3, 0, "CSoundImp")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSoundImp*)tolua_tousertype_dynamic(L, 3, 0, "CSoundImp")); return 0; } @@ -30686,7 +31969,7 @@ static int tolua_function_VariableArray_CScreenAI__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenAI* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenAI* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CScreenAI"); return 1; } @@ -30695,7 +31978,7 @@ static int tolua_function_VariableArray_CScreenAI__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenAI*)tolua_tousertype_dynamic(L, 3, 0, "CScreenAI")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenAI*)tolua_tousertype_dynamic(L, 3, 0, "CScreenAI")); return 0; } @@ -30703,7 +31986,7 @@ static int tolua_function_VariableArray_CSearchBitmap__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSearchBitmap* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSearchBitmap* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSearchBitmap"); return 1; } @@ -30712,7 +31995,7 @@ static int tolua_function_VariableArray_CSearchBitmap__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSearchBitmap*)tolua_tousertype_dynamic(L, 3, 0, "CSearchBitmap")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSearchBitmap*)tolua_tousertype_dynamic(L, 3, 0, "CSearchBitmap")); return 0; } @@ -30720,7 +32003,7 @@ static int tolua_function_VariableArray_CVidMode__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVidMode* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVidMode* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVidMode"); return 1; } @@ -30729,7 +32012,7 @@ static int tolua_function_VariableArray_CVidMode__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVidMode*)tolua_tousertype_dynamic(L, 3, 0, "CVidMode")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVidMode*)tolua_tousertype_dynamic(L, 3, 0, "CVidMode")); return 0; } @@ -30737,7 +32020,7 @@ static int tolua_function_VariableArray_CVidCellFont__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVidCellFont* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVidCellFont* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVidCellFont"); return 1; } @@ -30746,7 +32029,7 @@ static int tolua_function_VariableArray_CVidCellFont__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVidCellFont*)tolua_tousertype_dynamic(L, 3, 0, "CVidCellFont")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVidCellFont*)tolua_tousertype_dynamic(L, 3, 0, "CVidCellFont")); return 0; } @@ -30754,7 +32037,7 @@ static int tolua_function_VariableArray_CPortraitIcon__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPortraitIcon* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPortraitIcon* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPortraitIcon"); return 1; } @@ -30763,7 +32046,7 @@ static int tolua_function_VariableArray_CPortraitIcon__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPortraitIcon*)tolua_tousertype_dynamic(L, 3, 0, "CPortraitIcon")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPortraitIcon*)tolua_tousertype_dynamic(L, 3, 0, "CPortraitIcon")); return 0; } @@ -30771,7 +32054,7 @@ static int tolua_function_VariableArray_CScreenCreateChar__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenCreateChar* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenCreateChar* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenCreateChar"); return 1; } @@ -30780,7 +32063,7 @@ static int tolua_function_VariableArray_CScreenCreateChar__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenCreateChar*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenCreateChar")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenCreateChar*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenCreateChar")); return 0; } @@ -30788,7 +32071,7 @@ static int tolua_function_VariableArray_CScreenCreateParty__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenCreateParty* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenCreateParty* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenCreateParty"); return 1; } @@ -30797,7 +32080,7 @@ static int tolua_function_VariableArray_CScreenCreateParty__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenCreateParty*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenCreateParty")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenCreateParty*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenCreateParty")); return 0; } @@ -30805,7 +32088,7 @@ static int tolua_function_VariableArray_CScreenDLC__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenDLC* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenDLC* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenDLC"); return 1; } @@ -30814,7 +32097,7 @@ static int tolua_function_VariableArray_CScreenDLC__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenDLC*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenDLC")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenDLC*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenDLC")); return 0; } @@ -30822,7 +32105,7 @@ static int tolua_function_VariableArray_CScreenLoad__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenLoad* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenLoad* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenLoad"); return 1; } @@ -30831,7 +32114,7 @@ static int tolua_function_VariableArray_CScreenLoad__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenLoad*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenLoad")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenLoad*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenLoad")); return 0; } @@ -30839,7 +32122,7 @@ static int tolua_function_VariableArray_CScreenMap__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenMap* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenMap* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenMap"); return 1; } @@ -30848,7 +32131,7 @@ static int tolua_function_VariableArray_CScreenMap__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenMap*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenMap")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenMap*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenMap")); return 0; } @@ -30856,7 +32139,7 @@ static int tolua_function_VariableArray_CScreenMultiPlayer__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenMultiPlayer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenMultiPlayer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenMultiPlayer"); return 1; } @@ -30865,7 +32148,7 @@ static int tolua_function_VariableArray_CScreenMultiPlayer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenMultiPlayer*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenMultiPlayer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenMultiPlayer*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenMultiPlayer")); return 0; } @@ -30873,7 +32156,7 @@ static int tolua_function_VariableArray_CScreenOptions__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenOptions* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenOptions* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenOptions"); return 1; } @@ -30882,7 +32165,7 @@ static int tolua_function_VariableArray_CScreenOptions__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenOptions*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenOptions")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenOptions*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenOptions")); return 0; } @@ -30890,7 +32173,7 @@ static int tolua_function_VariableArray_CScreenSave__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenSave* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenSave* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenSave"); return 1; } @@ -30899,7 +32182,7 @@ static int tolua_function_VariableArray_CScreenSave__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenSave*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenSave")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenSave*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenSave")); return 0; } @@ -30907,7 +32190,7 @@ static int tolua_function_VariableArray_CScreenStart__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenStart* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenStart* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenStart"); return 1; } @@ -30916,7 +32199,7 @@ static int tolua_function_VariableArray_CScreenStart__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenStart*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenStart")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenStart*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenStart")); return 0; } @@ -30924,7 +32207,7 @@ static int tolua_function_VariableArray_CInfCursor__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CInfCursor* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CInfCursor* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CInfCursor"); return 1; } @@ -30933,7 +32216,7 @@ static int tolua_function_VariableArray_CInfCursor__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CInfCursor*)tolua_tousertype_dynamic(L, 3, 0, "CInfCursor")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CInfCursor*)tolua_tousertype_dynamic(L, 3, 0, "CInfCursor")); return 0; } @@ -30941,7 +32224,7 @@ static int tolua_function_VariableArray_CGameFile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameFile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameFile* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameFile"); return 1; } @@ -30950,7 +32233,7 @@ static int tolua_function_VariableArray_CGameFile__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameFile*)tolua_tousertype_dynamic(L, 3, 0, "CGameFile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameFile*)tolua_tousertype_dynamic(L, 3, 0, "CGameFile")); return 0; } @@ -30958,7 +32241,7 @@ static int tolua_function_VariableArray_CAreaFileProjectileObject__getReference( { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaFileProjectileObject* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAreaFileProjectileObject* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAreaFileProjectileObject"); return 1; } @@ -30967,7 +32250,7 @@ static int tolua_function_VariableArray_CAreaFileProjectileObject__set(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaFileProjectileObject*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileProjectileObject")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAreaFileProjectileObject*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileProjectileObject")); return 0; } @@ -30975,7 +32258,7 @@ static int tolua_function_VariableArray_CCriticalEntry__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCriticalEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCriticalEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCriticalEntry"); return 1; } @@ -30984,7 +32267,7 @@ static int tolua_function_VariableArray_CCriticalEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCriticalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CCriticalEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCriticalEntry*)tolua_tousertype_dynamic(L, 3, 0, "CCriticalEntry")); return 0; } @@ -30992,7 +32275,7 @@ static int tolua_function_VariableArray_CGameSprite__GroundItem__getReference(lu { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameSprite::GroundItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameSprite::GroundItem* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameSprite::GroundItem"); return 1; } @@ -31001,7 +32284,7 @@ static int tolua_function_VariableArray_CGameSprite__GroundItem__set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite::GroundItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite::GroundItem")); return 0; } @@ -31009,7 +32292,7 @@ static int tolua_function_VariableArray_CImmunitiesItemEquip__getReference(lua_S { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CImmunitiesItemEquip* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CImmunitiesItemEquip* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemEquip"); return 1; } @@ -31018,7 +32301,7 @@ static int tolua_function_VariableArray_CImmunitiesItemEquip__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemEquip")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitiesItemEquip")); return 0; } @@ -31026,7 +32309,7 @@ static int tolua_function_VariableArray_CImmunitySpell__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CImmunitySpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CImmunitySpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CImmunitySpell"); return 1; } @@ -31035,7 +32318,7 @@ static int tolua_function_VariableArray_CImmunitySpell__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CImmunitySpell*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitySpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CImmunitySpell*)tolua_tousertype_dynamic(L, 3, 0, "CImmunitySpell")); return 0; } @@ -31043,7 +32326,7 @@ static int tolua_function_VariableArray_CMoveListEntry__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMoveListEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMoveListEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CMoveListEntry"); return 1; } @@ -31052,7 +32335,7 @@ static int tolua_function_VariableArray_CMoveListEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMoveListEntry*)tolua_tousertype_dynamic(L, 3, 0, "CMoveListEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CMoveListEntry*)tolua_tousertype_dynamic(L, 3, 0, "CMoveListEntry")); return 0; } @@ -31060,7 +32343,7 @@ static int tolua_function_VariableArray_CCreatureFileKnownSpell__getReference(lu { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileKnownSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileKnownSpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); return 1; } @@ -31069,7 +32352,7 @@ static int tolua_function_VariableArray_CCreatureFileKnownSpell__set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileKnownSpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileKnownSpell")); return 0; } @@ -31077,7 +32360,7 @@ static int tolua_function_VariableArray_WED_LayerHeader_st__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - WED_LayerHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + WED_LayerHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "WED_LayerHeader_st"); return 1; } @@ -31086,7 +32369,7 @@ static int tolua_function_VariableArray_WED_LayerHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(WED_LayerHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_LayerHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(WED_LayerHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "WED_LayerHeader_st")); return 0; } @@ -31094,7 +32377,7 @@ static int tolua_function_VariableArray_UI_PanelHeader_st__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - UI_PanelHeader_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + UI_PanelHeader_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "UI_PanelHeader_st"); return 1; } @@ -31103,7 +32386,7 @@ static int tolua_function_VariableArray_UI_PanelHeader_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(UI_PanelHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "UI_PanelHeader_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(UI_PanelHeader_st*)tolua_tousertype_dynamic(L, 3, 0, "UI_PanelHeader_st")); return 0; } @@ -31111,7 +32394,7 @@ static int tolua_function_VariableArray_Spell_ability_st__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Spell_ability_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Spell_ability_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Spell_ability_st"); return 1; } @@ -31120,7 +32403,7 @@ static int tolua_function_VariableArray_Spell_ability_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Spell_ability_st*)tolua_tousertype_dynamic(L, 3, 0, "Spell_ability_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Spell_ability_st*)tolua_tousertype_dynamic(L, 3, 0, "Spell_ability_st")); return 0; } @@ -31128,7 +32411,7 @@ static int tolua_function_VariableArray_Spell_Header_st__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Spell_Header_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Spell_Header_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Spell_Header_st"); return 1; } @@ -31137,7 +32420,7 @@ static int tolua_function_VariableArray_Spell_Header_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Spell_Header_st*)tolua_tousertype_dynamic(L, 3, 0, "Spell_Header_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Spell_Header_st*)tolua_tousertype_dynamic(L, 3, 0, "Spell_Header_st")); return 0; } @@ -31145,7 +32428,7 @@ static int tolua_function_VariableArray_Item_effect_st__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Item_effect_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Item_effect_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Item_effect_st"); return 1; } @@ -31154,7 +32437,7 @@ static int tolua_function_VariableArray_Item_effect_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Item_effect_st*)tolua_tousertype_dynamic(L, 3, 0, "Item_effect_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Item_effect_st*)tolua_tousertype_dynamic(L, 3, 0, "Item_effect_st")); return 0; } @@ -31162,7 +32445,7 @@ static int tolua_function_VariableArray_Item_ability_st__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Item_ability_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Item_ability_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Item_ability_st"); return 1; } @@ -31171,7 +32454,7 @@ static int tolua_function_VariableArray_Item_ability_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Item_ability_st*)tolua_tousertype_dynamic(L, 3, 0, "Item_ability_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Item_ability_st*)tolua_tousertype_dynamic(L, 3, 0, "Item_ability_st")); return 0; } @@ -31179,7 +32462,7 @@ static int tolua_function_VariableArray_Item_Header_st__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Item_Header_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Item_Header_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Item_Header_st"); return 1; } @@ -31188,7 +32471,7 @@ static int tolua_function_VariableArray_Item_Header_st__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Item_Header_st*)tolua_tousertype_dynamic(L, 3, 0, "Item_Header_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Item_Header_st*)tolua_tousertype_dynamic(L, 3, 0, "Item_Header_st")); return 0; } @@ -31196,7 +32479,7 @@ static int tolua_function_VariableArray_CWorldMapLinks___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CWorldMapLinks* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CWorldMapLinks* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CWorldMapLinks"); return 1; } @@ -31205,7 +32488,7 @@ static int tolua_function_VariableArray_CWorldMapLinks___getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWorldMapLinks** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CWorldMapLinks** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -31214,7 +32497,7 @@ static int tolua_function_VariableArray_CWorldMapLinks___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CWorldMapLinks*)tolua_tousertype_dynamic(L, 3, 0, "CWorldMapLinks")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CWorldMapLinks*)tolua_tousertype_dynamic(L, 3, 0, "CWorldMapLinks")); return 0; } @@ -31222,7 +32505,7 @@ static int tolua_function_VariableArray_CWorldMapData__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWorldMapData* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CWorldMapData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CWorldMapData"); return 1; } @@ -31231,7 +32514,7 @@ static int tolua_function_VariableArray_CWorldMapData__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CWorldMapData*)tolua_tousertype_dynamic(L, 3, 0, "CWorldMapData")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CWorldMapData*)tolua_tousertype_dynamic(L, 3, 0, "CWorldMapData")); return 0; } @@ -31239,7 +32522,7 @@ static int tolua_function_VariableArray_CWorldMapArea___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CWorldMapArea* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CWorldMapArea* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CWorldMapArea"); return 1; } @@ -31248,7 +32531,7 @@ static int tolua_function_VariableArray_CWorldMapArea___getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CWorldMapArea** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CWorldMapArea** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -31257,7 +32540,7 @@ static int tolua_function_VariableArray_CWorldMapArea___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CWorldMapArea*)tolua_tousertype_dynamic(L, 3, 0, "CWorldMapArea")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CWorldMapArea*)tolua_tousertype_dynamic(L, 3, 0, "CWorldMapArea")); return 0; } @@ -31265,7 +32548,7 @@ static int tolua_function_VariableArray_CVVCHashEntry__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVVCHashEntry* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVVCHashEntry* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVVCHashEntry"); return 1; } @@ -31274,7 +32557,7 @@ static int tolua_function_VariableArray_CVVCHashEntry__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVVCHashEntry*)tolua_tousertype_dynamic(L, 3, 0, "CVVCHashEntry")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVVCHashEntry*)tolua_tousertype_dynamic(L, 3, 0, "CVVCHashEntry")); return 0; } @@ -31282,7 +32565,7 @@ static int tolua_function_VariableArray_CVEFEvent__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVEFEvent* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVEFEvent* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVEFEvent"); return 1; } @@ -31291,7 +32574,7 @@ static int tolua_function_VariableArray_CVEFEvent__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVEFEvent*)tolua_tousertype_dynamic(L, 3, 0, "CVEFEvent")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVEFEvent*)tolua_tousertype_dynamic(L, 3, 0, "CVEFEvent")); return 0; } @@ -31299,7 +32582,7 @@ static int tolua_function_VariableArray_CTiledObject__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTiledObject* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTiledObject* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTiledObject"); return 1; } @@ -31308,7 +32591,7 @@ static int tolua_function_VariableArray_CTiledObject__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTiledObject*)tolua_tousertype_dynamic(L, 3, 0, "CTiledObject")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTiledObject*)tolua_tousertype_dynamic(L, 3, 0, "CTiledObject")); return 0; } @@ -31316,7 +32599,7 @@ static int tolua_function_VariableArray_CStoreFileSpell__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStoreFileSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CStoreFileSpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CStoreFileSpell"); return 1; } @@ -31325,7 +32608,7 @@ static int tolua_function_VariableArray_CStoreFileSpell__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CStoreFileSpell*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileSpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CStoreFileSpell*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileSpell")); return 0; } @@ -31333,7 +32616,7 @@ static int tolua_function_VariableArray_CStoreFileItem__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStoreFileItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CStoreFileItem* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CStoreFileItem"); return 1; } @@ -31342,7 +32625,7 @@ static int tolua_function_VariableArray_CStoreFileItem__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CStoreFileItem*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CStoreFileItem*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileItem")); return 0; } @@ -31350,7 +32633,7 @@ static int tolua_function_VariableArray_CStoreFileDrinks__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStoreFileDrinks* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CStoreFileDrinks* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CStoreFileDrinks"); return 1; } @@ -31359,7 +32642,7 @@ static int tolua_function_VariableArray_CStoreFileDrinks__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CStoreFileDrinks*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileDrinks")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CStoreFileDrinks*)tolua_tousertype_dynamic(L, 3, 0, "CStoreFileDrinks")); return 0; } @@ -31367,7 +32650,7 @@ static int tolua_function_VariableArray_CSpell__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpell"); return 1; } @@ -31376,7 +32659,7 @@ static int tolua_function_VariableArray_CSpell__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpell*)tolua_tousertype_dynamic(L, 3, 0, "CSpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpell*)tolua_tousertype_dynamic(L, 3, 0, "CSpell")); return 0; } @@ -31384,7 +32667,7 @@ static int tolua_function_VariableArray_CSequenceSound__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSequenceSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSequenceSound* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSequenceSound"); return 1; } @@ -31393,7 +32676,7 @@ static int tolua_function_VariableArray_CSequenceSound__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSequenceSound*)tolua_tousertype_dynamic(L, 3, 0, "CSequenceSound")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSequenceSound*)tolua_tousertype_dynamic(L, 3, 0, "CSequenceSound")); return 0; } @@ -31401,7 +32684,7 @@ static int tolua_function_VariableArray_CScreenWorldMap__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenWorldMap* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenWorldMap* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenWorldMap"); return 1; } @@ -31410,7 +32693,7 @@ static int tolua_function_VariableArray_CScreenWorldMap__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenWorldMap*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenWorldMap")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenWorldMap*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenWorldMap")); return 0; } @@ -31418,7 +32701,7 @@ static int tolua_function_VariableArray_CScreenWorld__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenWorld* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenWorld* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenWorld"); return 1; } @@ -31427,7 +32710,7 @@ static int tolua_function_VariableArray_CScreenWorld__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenWorld*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenWorld")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenWorld*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenWorld")); return 0; } @@ -31435,7 +32718,7 @@ static int tolua_function_VariableArray_CScreenWizSpell__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenWizSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenWizSpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenWizSpell"); return 1; } @@ -31444,7 +32727,7 @@ static int tolua_function_VariableArray_CScreenWizSpell__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenWizSpell*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenWizSpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenWizSpell*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenWizSpell")); return 0; } @@ -31452,7 +32735,7 @@ static int tolua_function_VariableArray_CScreenStoreItem__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenStoreItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenStoreItem* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CScreenStoreItem"); return 1; } @@ -31461,7 +32744,7 @@ static int tolua_function_VariableArray_CScreenStoreItem__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenStoreItem*)tolua_tousertype_dynamic(L, 3, 0, "CScreenStoreItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenStoreItem*)tolua_tousertype_dynamic(L, 3, 0, "CScreenStoreItem")); return 0; } @@ -31469,7 +32752,7 @@ static int tolua_function_VariableArray_CScreenPriestSpell__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenPriestSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenPriestSpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenPriestSpell"); return 1; } @@ -31478,7 +32761,7 @@ static int tolua_function_VariableArray_CScreenPriestSpell__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenPriestSpell*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenPriestSpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenPriestSpell*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenPriestSpell")); return 0; } @@ -31486,7 +32769,7 @@ static int tolua_function_VariableArray_CScreenJournal__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenJournal* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenJournal* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenJournal"); return 1; } @@ -31495,7 +32778,7 @@ static int tolua_function_VariableArray_CScreenJournal__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenJournal*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenJournal")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenJournal*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenJournal")); return 0; } @@ -31503,7 +32786,7 @@ static int tolua_function_VariableArray_CScreenInventory__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenInventory* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenInventory* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenInventory"); return 1; } @@ -31512,7 +32795,7 @@ static int tolua_function_VariableArray_CScreenInventory__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenInventory*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenInventory")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenInventory*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenInventory")); return 0; } @@ -31520,7 +32803,7 @@ static int tolua_function_VariableArray_CScreenCharacter__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenCharacter* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenCharacter* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenCharacter"); return 1; } @@ -31529,7 +32812,7 @@ static int tolua_function_VariableArray_CScreenCharacter__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenCharacter*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenCharacter")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenCharacter*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenCharacter")); return 0; } @@ -31537,7 +32820,7 @@ static int tolua_function_VariableArray_CScreenChapter__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenChapter* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenChapter* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenChapter"); return 1; } @@ -31546,7 +32829,7 @@ static int tolua_function_VariableArray_CScreenChapter__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenChapter*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenChapter")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenChapter*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenChapter")); return 0; } @@ -31554,7 +32837,7 @@ static int tolua_function_VariableArray_CSavedGameStoredLocation__getReference(l { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSavedGameStoredLocation* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSavedGameStoredLocation* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSavedGameStoredLocation"); return 1; } @@ -31563,7 +32846,7 @@ static int tolua_function_VariableArray_CSavedGameStoredLocation__set(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGameStoredLocation")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 3, 0, "CSavedGameStoredLocation")); return 0; } @@ -31571,7 +32854,7 @@ static int tolua_function_VariableArray_CPlex__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPlex* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPlex* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPlex"); return 1; } @@ -31580,7 +32863,7 @@ static int tolua_function_VariableArray_CPlex__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPlex*)tolua_tousertype_dynamic(L, 3, 0, "CPlex")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPlex*)tolua_tousertype_dynamic(L, 3, 0, "CPlex")); return 0; } @@ -31588,7 +32871,7 @@ static int tolua_function_VariableArray_CChitin__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CChitin* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CChitin* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CChitin"); return 1; } @@ -31597,7 +32880,7 @@ static int tolua_function_VariableArray_CChitin__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CChitin*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CChitin")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CChitin*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CChitin")); return 0; } @@ -31605,7 +32888,7 @@ static int tolua_function_VariableArray_CInfinity__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CInfinity* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CInfinity* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CInfinity"); return 1; } @@ -31614,7 +32897,7 @@ static int tolua_function_VariableArray_CInfinity__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CInfinity*)tolua_tousertype_dynamic(L, 3, 0, "CInfinity")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CInfinity*)tolua_tousertype_dynamic(L, 3, 0, "CInfinity")); return 0; } @@ -31622,7 +32905,7 @@ static int tolua_function_VariableArray_CInfGame__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CInfGame* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CInfGame* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CInfGame"); return 1; } @@ -31631,7 +32914,7 @@ static int tolua_function_VariableArray_CInfGame__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CInfGame*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CInfGame")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CInfGame*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CInfGame")); return 0; } @@ -31639,7 +32922,7 @@ static int tolua_function_VariableArray_CGameEffectBase__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameEffectBase* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameEffectBase* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameEffectBase"); return 1; } @@ -31648,7 +32931,7 @@ static int tolua_function_VariableArray_CGameEffectBase__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffectBase*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectBase")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameEffectBase*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectBase")); return 0; } @@ -31656,7 +32939,7 @@ static int tolua_function_VariableArray_CGameEffect__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameEffect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameEffect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameEffect"); return 1; } @@ -31665,7 +32948,7 @@ static int tolua_function_VariableArray_CGameEffect__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffect*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameEffect*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffect")); return 0; } @@ -31673,7 +32956,7 @@ static int tolua_function_VariableArray_CGameEffectDamage__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameEffectDamage* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameEffectDamage* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameEffectDamage"); return 1; } @@ -31682,7 +32965,7 @@ static int tolua_function_VariableArray_CGameEffectDamage__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffectDamage*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectDamage")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameEffectDamage*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectDamage")); return 0; } @@ -31690,7 +32973,7 @@ static int tolua_function_VariableArray_CGameEffectUsability__getReference(lua_S { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameEffectUsability* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameEffectUsability* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameEffectUsability"); return 1; } @@ -31699,7 +32982,7 @@ static int tolua_function_VariableArray_CGameEffectUsability__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameEffectUsability*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectUsability")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameEffectUsability*)tolua_tousertype_dynamic(L, 3, 0, "CGameEffectUsability")); return 0; } @@ -31707,7 +32990,7 @@ static int tolua_function_VariableArray_CGameAnimationType__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameAnimationType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameAnimationType* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameAnimationType"); return 1; } @@ -31716,7 +32999,7 @@ static int tolua_function_VariableArray_CGameAnimationType__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameAnimationType*)tolua_tousertype_dynamic(L, 3, 0, "CGameAnimationType")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameAnimationType*)tolua_tousertype_dynamic(L, 3, 0, "CGameAnimationType")); return 0; } @@ -31724,7 +33007,7 @@ static int tolua_function_VariableArray_CDerivedStats__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CDerivedStats* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CDerivedStats* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CDerivedStats"); return 1; } @@ -31733,7 +33016,7 @@ static int tolua_function_VariableArray_CDerivedStats__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CDerivedStats*)tolua_tousertype_dynamic(L, 3, 0, "CDerivedStats")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CDerivedStats*)tolua_tousertype_dynamic(L, 3, 0, "CDerivedStats")); return 0; } @@ -31741,7 +33024,7 @@ static int tolua_function_VariableArray_CCreatureFileMemorizedSpell__getReferenc { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileMemorizedSpell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpell"); return 1; } @@ -31750,7 +33033,7 @@ static int tolua_function_VariableArray_CCreatureFileMemorizedSpell__set(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpell")); return 0; } @@ -31758,7 +33041,7 @@ static int tolua_function_VariableArray_CCreatureFileItem__getReference(lua_Stat { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileItem* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileItem* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileItem"); return 1; } @@ -31767,7 +33050,7 @@ static int tolua_function_VariableArray_CCreatureFileItem__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileItem*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileItem*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileItem")); return 0; } @@ -31775,7 +33058,7 @@ static int tolua_function_VariableArray_CCreatureFileHeader__getReference(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileHeader* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileHeader* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileHeader"); return 1; } @@ -31784,7 +33067,7 @@ static int tolua_function_VariableArray_CCreatureFileHeader__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileHeader*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileHeader")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileHeader*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileHeader")); return 0; } @@ -31792,7 +33075,7 @@ static int tolua_function_VariableArray_Closure__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Closure* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Closure* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Closure"); return 1; } @@ -31801,7 +33084,7 @@ static int tolua_function_VariableArray_Closure__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Closure*)tolua_tousertype_dynamic(L, 3, 0, "Closure")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Closure*)tolua_tousertype_dynamic(L, 3, 0, "Closure")); return 0; } @@ -31809,7 +33092,7 @@ static int tolua_function_VariableArray_GCObject___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - GCObject* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + GCObject* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "GCObject"); return 1; } @@ -31818,7 +33101,7 @@ static int tolua_function_VariableArray_GCObject___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - GCObject** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + GCObject** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -31827,7 +33110,7 @@ static int tolua_function_VariableArray_GCObject___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (GCObject*)tolua_tousertype_dynamic(L, 3, 0, "GCObject")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (GCObject*)tolua_tousertype_dynamic(L, 3, 0, "GCObject")); return 0; } @@ -31835,7 +33118,7 @@ static int tolua_function_VariableArray_CBlood__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBlood* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CBlood* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CBlood"); return 1; } @@ -31844,7 +33127,7 @@ static int tolua_function_VariableArray_CBlood__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBlood*)tolua_tousertype_dynamic(L, 3, 0, "CBlood")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CBlood*)tolua_tousertype_dynamic(L, 3, 0, "CBlood")); return 0; } @@ -31852,7 +33135,7 @@ static int tolua_function_VariableArray_CBaldurProjector__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBaldurProjector* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CBaldurProjector* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CBaldurProjector"); return 1; } @@ -31861,7 +33144,7 @@ static int tolua_function_VariableArray_CBaldurProjector__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBaldurProjector*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CBaldurProjector")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CBaldurProjector*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CBaldurProjector")); return 0; } @@ -31869,7 +33152,7 @@ static int tolua_function_VariableArray_CBaldurChitin__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CBaldurChitin* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CBaldurChitin* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CBaldurChitin"); return 1; } @@ -31878,7 +33161,7 @@ static int tolua_function_VariableArray_CBaldurChitin__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CBaldurChitin*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CBaldurChitin")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CBaldurChitin*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CBaldurChitin")); return 0; } @@ -31886,7 +33169,7 @@ static int tolua_function_VariableArray_CAreaUserNote__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaUserNote* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAreaUserNote* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAreaUserNote"); return 1; } @@ -31895,7 +33178,7 @@ static int tolua_function_VariableArray_CAreaUserNote__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaUserNote*)tolua_tousertype_dynamic(L, 3, 0, "CAreaUserNote")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAreaUserNote*)tolua_tousertype_dynamic(L, 3, 0, "CAreaUserNote")); return 0; } @@ -31903,7 +33186,7 @@ static int tolua_function_VariableArray_CAreaFileContainer__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaFileContainer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAreaFileContainer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAreaFileContainer"); return 1; } @@ -31912,7 +33195,7 @@ static int tolua_function_VariableArray_CAreaFileContainer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaFileContainer*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileContainer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAreaFileContainer*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileContainer")); return 0; } @@ -31920,7 +33203,7 @@ static int tolua_function_VariableArray_CAreaFileCharacterEntryPoint__getReferen { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAreaFileCharacterEntryPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAreaFileCharacterEntryPoint* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAreaFileCharacterEntryPoint"); return 1; } @@ -31929,7 +33212,7 @@ static int tolua_function_VariableArray_CAreaFileCharacterEntryPoint__set(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileCharacterEntryPoint")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 3, 0, "CAreaFileCharacterEntryPoint")); return 0; } @@ -31937,7 +33220,7 @@ static int tolua_function_VariableArray_CAIObjectType__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIObjectType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIObjectType* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -31946,7 +33229,7 @@ static int tolua_function_VariableArray_CAIObjectType__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType")); return 0; } @@ -31954,7 +33237,7 @@ static int tolua_function_VariableArray_const_CAIObjectType__getReference(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CAIObjectType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CAIObjectType* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -31963,7 +33246,7 @@ static int tolua_function_VariableArray_CAIAction__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAIAction* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAIAction* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIAction"); return 1; } @@ -31972,7 +33255,7 @@ static int tolua_function_VariableArray_CAIAction__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAIAction*)tolua_tousertype_dynamic(L, 3, 0, "CAIAction")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAIAction*)tolua_tousertype_dynamic(L, 3, 0, "CAIAction")); return 0; } @@ -31980,7 +33263,7 @@ static int tolua_function_VariableArray_const_CAIAction__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CAIAction* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CAIAction* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAIAction"); return 1; } @@ -31989,7 +33272,7 @@ static int tolua_function_VariableArray_CSpawn__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpawn* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpawn* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpawn"); return 1; } @@ -31998,7 +33281,7 @@ static int tolua_function_VariableArray_CSpawn__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpawn*)tolua_tousertype_dynamic(L, 3, 0, "CSpawn")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpawn*)tolua_tousertype_dynamic(L, 3, 0, "CSpawn")); return 0; } @@ -32006,7 +33289,7 @@ static int tolua_function_VariableArray_CSelectiveWeaponType__getReference(lua_S { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSelectiveWeaponType* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSelectiveWeaponType* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSelectiveWeaponType"); return 1; } @@ -32015,7 +33298,7 @@ static int tolua_function_VariableArray_CSelectiveWeaponType__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveWeaponType")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveWeaponType")); return 0; } @@ -32023,7 +33306,7 @@ static int tolua_function_VariableArray_CSelectiveBonus__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSelectiveBonus* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSelectiveBonus* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSelectiveBonus"); return 1; } @@ -32032,7 +33315,7 @@ static int tolua_function_VariableArray_CSelectiveBonus__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSelectiveBonus*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveBonus")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSelectiveBonus*)tolua_tousertype_dynamic(L, 3, 0, "CSelectiveBonus")); return 0; } @@ -32040,7 +33323,7 @@ static int tolua_function_VariableArray_CScreenStore__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CScreenStore* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CScreenStore* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenStore"); return 1; } @@ -32049,7 +33332,7 @@ static int tolua_function_VariableArray_CScreenStore__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CScreenStore*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenStore")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CScreenStore*)tolua_tousertype_dynamic(L, 3, 0, "EEex_CScreenStore")); return 0; } @@ -32057,7 +33340,7 @@ static int tolua_function_VariableArray_CGameObject___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CGameObject* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CGameObject* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -32066,7 +33349,7 @@ static int tolua_function_VariableArray_CGameObject___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameObject** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameObject** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -32075,7 +33358,7 @@ static int tolua_function_VariableArray_CGameObject___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CGameObject*)tolua_tousertype_dynamic(L, 3, 0, "CGameObject")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CGameObject*)tolua_tousertype_dynamic(L, 3, 0, "CGameObject")); return 0; } @@ -32083,7 +33366,7 @@ static int tolua_function_VariableArray_CProjectile__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CProjectile* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CProjectile* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CProjectile"); return 1; } @@ -32092,7 +33375,7 @@ static int tolua_function_VariableArray_CProjectile__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectile*)tolua_tousertype_dynamic(L, 3, 0, "CProjectile")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CProjectile*)tolua_tousertype_dynamic(L, 3, 0, "CProjectile")); return 0; } @@ -32100,7 +33383,7 @@ static int tolua_function_VariableArray_CProjectileBAM__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CProjectileBAM* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CProjectileBAM* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CProjectileBAM"); return 1; } @@ -32109,7 +33392,7 @@ static int tolua_function_VariableArray_CProjectileBAM__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectileBAM*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileBAM")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CProjectileBAM*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileBAM")); return 0; } @@ -32117,7 +33400,7 @@ static int tolua_function_VariableArray_CProjectileSegment__getReference(lua_Sta { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CProjectileSegment* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CProjectileSegment* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CProjectileSegment"); return 1; } @@ -32126,7 +33409,7 @@ static int tolua_function_VariableArray_CProjectileSegment__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectileSegment*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileSegment")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CProjectileSegment*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileSegment")); return 0; } @@ -32134,7 +33417,7 @@ static int tolua_function_VariableArray_CProjectileNewScorcher__getReference(lua { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CProjectileNewScorcher* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CProjectileNewScorcher* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CProjectileNewScorcher"); return 1; } @@ -32143,7 +33426,7 @@ static int tolua_function_VariableArray_CProjectileNewScorcher__set(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileNewScorcher")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileNewScorcher")); return 0; } @@ -32151,7 +33434,7 @@ static int tolua_function_VariableArray_CProjectileMushroom__getReference(lua_St { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CProjectileMushroom* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CProjectileMushroom* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CProjectileMushroom"); return 1; } @@ -32160,7 +33443,7 @@ static int tolua_function_VariableArray_CProjectileMushroom__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CProjectileMushroom*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileMushroom")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CProjectileMushroom*)tolua_tousertype_dynamic(L, 3, 0, "CProjectileMushroom")); return 0; } @@ -32168,7 +33451,7 @@ static int tolua_function_VariableArray_CObjectMarker__getReference(lua_State* L { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CObjectMarker* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CObjectMarker* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CObjectMarker"); return 1; } @@ -32177,7 +33460,7 @@ static int tolua_function_VariableArray_CObjectMarker__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CObjectMarker*)tolua_tousertype_dynamic(L, 3, 0, "CObjectMarker")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CObjectMarker*)tolua_tousertype_dynamic(L, 3, 0, "CObjectMarker")); return 0; } @@ -32185,7 +33468,7 @@ static int tolua_function_VariableArray_CAITrigger__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CAITrigger* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CAITrigger* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); return 1; } @@ -32194,7 +33477,7 @@ static int tolua_function_VariableArray_CAITrigger__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CAITrigger*)tolua_tousertype_dynamic(L, 3, 0, "CAITrigger")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CAITrigger*)tolua_tousertype_dynamic(L, 3, 0, "CAITrigger")); return 0; } @@ -32202,7 +33485,7 @@ static int tolua_function_VariableArray_const_CAITrigger__getReference(lua_State { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - const CAITrigger* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + const CAITrigger* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); return 1; } @@ -32211,7 +33494,7 @@ static int tolua_function_VariableArray_CGameAIBase__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameAIBase* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameAIBase* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameAIBase"); return 1; } @@ -32220,7 +33503,7 @@ static int tolua_function_VariableArray_CGameAIBase__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameAIBase*)tolua_tousertype_dynamic(L, 3, 0, "CGameAIBase")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameAIBase*)tolua_tousertype_dynamic(L, 3, 0, "CGameAIBase")); return 0; } @@ -32228,7 +33511,7 @@ static int tolua_function_VariableArray_CGameTrigger__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameTrigger* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameTrigger* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameTrigger"); return 1; } @@ -32237,7 +33520,7 @@ static int tolua_function_VariableArray_CGameTrigger__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameTrigger*)tolua_tousertype_dynamic(L, 3, 0, "CGameTrigger")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameTrigger*)tolua_tousertype_dynamic(L, 3, 0, "CGameTrigger")); return 0; } @@ -32245,7 +33528,7 @@ static int tolua_function_VariableArray_CGameSprite___get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CGameSprite* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CGameSprite* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CGameSprite"); return 1; } @@ -32254,7 +33537,7 @@ static int tolua_function_VariableArray_CGameSprite___getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameSprite** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameSprite** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -32263,7 +33546,7 @@ static int tolua_function_VariableArray_CGameSprite___set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CGameSprite*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CGameSprite*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite")); return 0; } @@ -32271,7 +33554,7 @@ static int tolua_function_VariableArray_CGameContainer__getReference(lua_State* { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameContainer* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameContainer* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameContainer"); return 1; } @@ -32280,7 +33563,7 @@ static int tolua_function_VariableArray_CGameContainer__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameContainer*)tolua_tousertype_dynamic(L, 3, 0, "CGameContainer")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameContainer*)tolua_tousertype_dynamic(L, 3, 0, "CGameContainer")); return 0; } @@ -32288,7 +33571,7 @@ static int tolua_function_VariableArray_CContingency__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CContingency* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CContingency* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CContingency"); return 1; } @@ -32297,7 +33580,7 @@ static int tolua_function_VariableArray_CContingency__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CContingency*)tolua_tousertype_dynamic(L, 3, 0, "CContingency")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CContingency*)tolua_tousertype_dynamic(L, 3, 0, "CContingency")); return 0; } @@ -32305,7 +33588,7 @@ static int tolua_function_VariableArray_wchar_t__get(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - wchar_t returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + wchar_t returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -32314,7 +33597,7 @@ static int tolua_function_VariableArray_wchar_t__getReference(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - wchar_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + wchar_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -32323,7 +33606,7 @@ static int tolua_function_VariableArray_wchar_t__set(lua_State* L) { VariableArray* self = (VariableArray*)tolua_tousertype_dynamic(L, 1, 0, "VariableArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(wchar_t*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(wchar_t*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); return 0; } @@ -33075,7 +34358,7 @@ static int tolua_function_SDL_Window_hit_test(lua_State* L) { SDL_Window* self = (SDL_Window*)tolua_tousertype_dynamic(L, 1, 0, "SDL_Window"); if (!self) tolua_error(L, "invalid 'self' in calling function 'hit_test'", NULL); - SDL_HitTestResult returnVal = self->hit_test((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"), (const SDL_Point*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Point"), (void*)tolua_tousertype_dynamic(L, 4, 0, "UnmappedUserType")); + SDL_HitTestResult returnVal = (self->hit_test)((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"), (const SDL_Point*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Point"), (void*)tolua_tousertype_dynamic(L, 4, 0, "UnmappedUserType")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -34060,7 +35343,7 @@ static int tolua_function__9B9540D9920A90D57A3D80DDD1A70514_f(lua_State* L) { _9B9540D9920A90D57A3D80DDD1A70514* self = (_9B9540D9920A90D57A3D80DDD1A70514*)tolua_tousertype_dynamic(L, 1, 0, "_9B9540D9920A90D57A3D80DDD1A70514"); if (!self) tolua_error(L, "invalid 'self' in calling function 'f'", NULL); - bool returnVal = self->f((uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu"), (const SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect"), (SDL_Event*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Event")); + bool returnVal = (self->f)((uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu"), (const SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect"), (SDL_Event*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Event")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -34085,7 +35368,7 @@ static int tolua_function_Pointer_void___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - void* returnVal = self->getValue(); + void* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -34094,7 +35377,7 @@ static int tolua_function_Pointer_void___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + (self->setValue)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); return 0; } @@ -34134,7 +35417,7 @@ static int tolua_function_Pointer_CRes__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CRes*)tolua_tousertype_dynamic(L, 2, 0, "CRes")); + (self->setValue)(*(CRes*)tolua_tousertype_dynamic(L, 2, 0, "CRes")); return 0; } @@ -34174,7 +35457,31 @@ static int tolua_function_Pointer_uiMenu__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu")); + (self->setValue)(*(uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu")); + return 0; +} + +static int tolua_get_Pointer_SDL_VideoDisplay__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_VideoDisplay"); + return 1; +} + +static int tolua_set_Pointer_SDL_VideoDisplay__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDisplay"); + return 0; +} + +static int tolua_function_Pointer_SDL_VideoDisplay__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDisplay")); return 0; } @@ -34198,7 +35505,7 @@ static int tolua_function_Pointer_SDL_Window__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window")); + (self->setValue)(*(SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window")); return 0; } @@ -34222,7 +35529,7 @@ static int tolua_function_Pointer_CString__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->setValue)(*(CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -34246,7 +35553,7 @@ static int tolua_function_Pointer_CResText__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResText*)tolua_tousertype_dynamic(L, 2, 0, "CResText")); + (self->setValue)(*(CResText*)tolua_tousertype_dynamic(L, 2, 0, "CResText")); return 0; } @@ -34270,7 +35577,7 @@ static int tolua_function_Pointer_lua_State__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); + (self->setValue)(*(lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); return 0; } @@ -34326,7 +35633,7 @@ static int tolua_function_Pointer_font_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(font_t*)tolua_tousertype_dynamic(L, 2, 0, "font_t")); + (self->setValue)(*(font_t*)tolua_tousertype_dynamic(L, 2, 0, "font_t")); return 0; } @@ -34366,7 +35673,7 @@ static int tolua_function_Pointer_SDL_Rect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Rect*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Rect")); + (self->setValue)(*(SDL_Rect*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Rect")); return 0; } @@ -34390,7 +35697,7 @@ static int tolua_function_Pointer_SDL_Event__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Event*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Event")); + (self->setValue)(*(SDL_Event*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Event")); return 0; } @@ -34414,7 +35721,7 @@ static int tolua_function_Pointer_FILE__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(FILE*)tolua_tousertype_dynamic(L, 2, 0, "FILE")); + (self->setValue)(*(FILE*)tolua_tousertype_dynamic(L, 2, 0, "FILE")); return 0; } @@ -34438,7 +35745,7 @@ static int tolua_function_Pointer__iobuf__setValue(lua_State* L) { Pointer<_iobuf>* self = (Pointer<_iobuf>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_iobuf>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_iobuf*)tolua_tousertype_dynamic(L, 2, 0, "_iobuf")); + (self->setValue)(*(_iobuf*)tolua_tousertype_dynamic(L, 2, 0, "_iobuf")); return 0; } @@ -34462,7 +35769,7 @@ static int tolua_function_Pointer_uiVariant__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiVariant*)tolua_tousertype_dynamic(L, 2, 0, "uiVariant")); + (self->setValue)(*(uiVariant*)tolua_tousertype_dynamic(L, 2, 0, "uiVariant")); return 0; } @@ -34486,7 +35793,7 @@ static int tolua_function_Pointer_letter_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(letter_t*)tolua_tousertype_dynamic(L, 2, 0, "letter_t")); + (self->setValue)(*(letter_t*)tolua_tousertype_dynamic(L, 2, 0, "letter_t")); return 0; } @@ -34510,7 +35817,7 @@ static int tolua_function_Pointer_int__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - int returnVal = self->getValue(); + int returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -34519,7 +35826,7 @@ static int tolua_function_Pointer_int__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -34543,7 +35850,7 @@ static int tolua_function_Pointer_adjustmentData_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(adjustmentData_t*)tolua_tousertype_dynamic(L, 2, 0, "adjustmentData_t")); + (self->setValue)(*(adjustmentData_t*)tolua_tousertype_dynamic(L, 2, 0, "adjustmentData_t")); return 0; } @@ -34567,7 +35874,7 @@ static int tolua_function_Pointer_CBaldurChitin__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBaldurChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurChitin")); + (self->setValue)(*(CBaldurChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurChitin")); return 0; } @@ -34607,7 +35914,7 @@ static int tolua_function_Pointer_CPlex__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPlex*)tolua_tousertype_dynamic(L, 2, 0, "CPlex")); + (self->setValue)(*(CPlex*)tolua_tousertype_dynamic(L, 2, 0, "CPlex")); return 0; } @@ -34631,7 +35938,7 @@ static int tolua_function_Pointer_CResRef__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); + (self->setValue)(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); return 0; } @@ -34687,7 +35994,7 @@ static int tolua_function_Pointer_CAIId__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId")); + (self->setValue)(*(CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId")); return 0; } @@ -34711,7 +36018,7 @@ static int tolua_function_Pointer_CGameAIBase__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); + (self->setValue)(*(CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); return 0; } @@ -34735,7 +36042,7 @@ static int tolua_function_Pointer_CGameObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); + (self->setValue)(*(CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); return 0; } @@ -34775,7 +36082,7 @@ static int tolua_function_Pointer_CAreaUserNote__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote")); + (self->setValue)(*(CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote")); return 0; } @@ -34799,7 +36106,7 @@ static int tolua_function_Pointer_CGameDialogEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameDialogEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogEntry")); + (self->setValue)(*(CGameDialogEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogEntry")); return 0; } @@ -34823,7 +36130,7 @@ static int tolua_function_Pointer_CGameEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); + (self->setValue)(*(CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); return 0; } @@ -34847,7 +36154,7 @@ static int tolua_function_Pointer_Item_effect_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Item_effect_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_effect_st")); + (self->setValue)(*(Item_effect_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_effect_st")); return 0; } @@ -34887,7 +36194,7 @@ static int tolua_function_Pointer_CGameEffectBase__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffectBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectBase")); + (self->setValue)(*(CGameEffectBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectBase")); return 0; } @@ -34911,7 +36218,7 @@ static int tolua_function_Pointer_CObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CObject*)tolua_tousertype_dynamic(L, 2, 0, "CObject")); + (self->setValue)(*(CObject*)tolua_tousertype_dynamic(L, 2, 0, "CObject")); return 0; } @@ -34935,7 +36242,7 @@ static int tolua_function_Pointer_CObList__CNode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CObList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CObList::CNode")); + (self->setValue)(*(CObList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CObList::CNode")); return 0; } @@ -34959,7 +36266,7 @@ static int tolua_function_Pointer_CGameObject___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameObject* returnVal = self->getValue(); + CGameObject* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -34968,7 +36275,7 @@ static int tolua_function_Pointer_CGameObject___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); + (self->setValue)((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); return 0; } @@ -34992,7 +36299,7 @@ static int tolua_function_Pointer_CGameSprite__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->setValue)(*(CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -35016,7 +36323,7 @@ static int tolua_function_Pointer_CAIObjectType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + (self->setValue)(*(CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); return 0; } @@ -35040,7 +36347,7 @@ static int tolua_function_Pointer_CAIScript__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIScript*)tolua_tousertype_dynamic(L, 2, 0, "CAIScript")); + (self->setValue)(*(CAIScript*)tolua_tousertype_dynamic(L, 2, 0, "CAIScript")); return 0; } @@ -35064,7 +36371,7 @@ static int tolua_function_Pointer_CAIAction__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + (self->setValue)(*(CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); return 0; } @@ -35088,7 +36395,7 @@ static int tolua_function_Pointer_CAITrigger__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); + (self->setValue)(*(CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); return 0; } @@ -35112,7 +36419,7 @@ static int tolua_function_Pointer_CGameTimer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer")); + (self->setValue)(*(CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer")); return 0; } @@ -35136,7 +36443,7 @@ static int tolua_function_Pointer_byte__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - byte returnVal = self->getValue(); + byte returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -35145,7 +36452,7 @@ static int tolua_function_Pointer_byte__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -35169,7 +36476,7 @@ static int tolua_function_Pointer_CAbilityId__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAbilityId*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityId")); + (self->setValue)(*(CAbilityId*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityId")); return 0; } @@ -35193,7 +36500,7 @@ static int tolua_function_Pointer_CGameEffectDamage__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffectDamage*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectDamage")); + (self->setValue)(*(CGameEffectDamage*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectDamage")); return 0; } @@ -35217,7 +36524,7 @@ static int tolua_function_Pointer_CItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem")); + (self->setValue)(*(CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem")); return 0; } @@ -35241,7 +36548,7 @@ static int tolua_function_Pointer_CDerivedStats__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CDerivedStats*)tolua_tousertype_dynamic(L, 2, 0, "CDerivedStats")); + (self->setValue)(*(CDerivedStats*)tolua_tousertype_dynamic(L, 2, 0, "CDerivedStats")); return 0; } @@ -35265,7 +36572,7 @@ static int tolua_function_Pointer_CSpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpell*)tolua_tousertype_dynamic(L, 2, 0, "CSpell")); + (self->setValue)(*(CSpell*)tolua_tousertype_dynamic(L, 2, 0, "CSpell")); return 0; } @@ -35289,7 +36596,7 @@ static int tolua_function_Pointer_CGameButtonList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameButtonList*)tolua_tousertype_dynamic(L, 2, 0, "CGameButtonList")); + (self->setValue)(*(CGameButtonList*)tolua_tousertype_dynamic(L, 2, 0, "CGameButtonList")); return 0; } @@ -35313,7 +36620,7 @@ static int tolua_function_Pointer_CCreatureFileKnownSpell__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell")); + (self->setValue)(*(CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell")); return 0; } @@ -35337,7 +36644,7 @@ static int tolua_function_Pointer_Item_ability_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Item_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_ability_st")); + (self->setValue)(*(Item_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_ability_st")); return 0; } @@ -35361,7 +36668,7 @@ static int tolua_function_Pointer_short__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - short returnVal = self->getValue(); + short returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -35370,7 +36677,7 @@ static int tolua_function_Pointer_short__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -35394,7 +36701,7 @@ static int tolua_function_Pointer_CButtonData__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData")); + (self->setValue)(*(CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData")); return 0; } @@ -35418,7 +36725,7 @@ static int tolua_function_Pointer_CCreatureFileMemorizedSpellLevel__setValue(lua { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpellLevel")); + (self->setValue)(*(CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -35442,7 +36749,7 @@ static int tolua_function_Pointer_CCreatureFileMemorizedSpell__setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell")); + (self->setValue)(*(CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell")); return 0; } @@ -35466,7 +36773,7 @@ static int tolua_function_Pointer_unsigned___int8__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int8 returnVal = self->getValue(); + unsigned __int8 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -35475,7 +36782,7 @@ static int tolua_function_Pointer_unsigned___int8__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -35499,7 +36806,7 @@ static int tolua_function_Pointer_unsigned___int16__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int16 returnVal = self->getValue(); + unsigned __int16 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -35508,7 +36815,7 @@ static int tolua_function_Pointer_unsigned___int16__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -35532,7 +36839,7 @@ static int tolua_function_Pointer_tagPOINT__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(tagPOINT*)tolua_tousertype_dynamic(L, 2, 0, "tagPOINT")); + (self->setValue)(*(tagPOINT*)tolua_tousertype_dynamic(L, 2, 0, "tagPOINT")); return 0; } @@ -35556,7 +36863,7 @@ static int tolua_function_Pointer_long__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - long returnVal = self->getValue(); + long returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -35565,7 +36872,7 @@ static int tolua_function_Pointer_long__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -35589,7 +36896,7 @@ static int tolua_function_Pointer_CSearchRequest__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest")); + (self->setValue)(*(CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest")); return 0; } @@ -35613,7 +36920,7 @@ static int tolua_function_Pointer_CBlood__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood")); + (self->setValue)(*(CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood")); return 0; } @@ -35637,7 +36944,7 @@ static int tolua_function_Pointer___POSITION__setValue(lua_State* L) { Pointer<__POSITION>* self = (Pointer<__POSITION>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__POSITION>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); + (self->setValue)(*(__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); return 0; } @@ -35661,7 +36968,7 @@ static int tolua_function_Pointer_CProjectile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile")); + (self->setValue)(*(CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile")); return 0; } @@ -35685,7 +36992,7 @@ static int tolua_function_Pointer_STR_RES__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(STR_RES*)tolua_tousertype_dynamic(L, 2, 0, "STR_RES")); + (self->setValue)(*(STR_RES*)tolua_tousertype_dynamic(L, 2, 0, "STR_RES")); return 0; } @@ -35709,7 +37016,7 @@ static int tolua_function_Pointer_CPortraitIcon__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon")); + (self->setValue)(*(CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon")); return 0; } @@ -35733,7 +37040,7 @@ static int tolua_function_Pointer_CVariableHash__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVariableHash*)tolua_tousertype_dynamic(L, 2, 0, "CVariableHash")); + (self->setValue)(*(CVariableHash*)tolua_tousertype_dynamic(L, 2, 0, "CVariableHash")); return 0; } @@ -35757,7 +37064,7 @@ static int tolua_function_Pointer_CPoint__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->setValue)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -35781,7 +37088,7 @@ static int tolua_function_Pointer_CFeedbackEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry")); + (self->setValue)(*(CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry")); return 0; } @@ -35805,7 +37112,7 @@ static int tolua_function_Pointer_CGameSprite__GroundItem__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem")); + (self->setValue)(*(CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem")); return 0; } @@ -35829,7 +37136,7 @@ static int tolua_function_Pointer_CGameArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea")); + (self->setValue)(*(CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea")); return 0; } @@ -35853,7 +37160,7 @@ static int tolua_function_Pointer_CPathSearch__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPathSearch*)tolua_tousertype_dynamic(L, 2, 0, "CPathSearch")); + (self->setValue)(*(CPathSearch*)tolua_tousertype_dynamic(L, 2, 0, "CPathSearch")); return 0; } @@ -35877,7 +37184,7 @@ static int tolua_function_Pointer_CPathNode___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPathNode* returnVal = self->getValue(); + CPathNode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPathNode"); return 1; } @@ -35886,7 +37193,7 @@ static int tolua_function_Pointer_CPathNode___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPathNode*)tolua_tousertype_dynamic(L, 2, 0, "CPathNode")); + (self->setValue)((CPathNode*)tolua_tousertype_dynamic(L, 2, 0, "CPathNode")); return 0; } @@ -35910,7 +37217,7 @@ static int tolua_function_Pointer_SAreaFileWrapper__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper")); + (self->setValue)(*(SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper")); return 0; } @@ -35934,7 +37241,7 @@ static int tolua_function_Pointer_CAIScriptFile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIScriptFile*)tolua_tousertype_dynamic(L, 2, 0, "CAIScriptFile")); + (self->setValue)(*(CAIScriptFile*)tolua_tousertype_dynamic(L, 2, 0, "CAIScriptFile")); return 0; } @@ -35958,7 +37265,7 @@ static int tolua_function_Pointer_CStore__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStore*)tolua_tousertype_dynamic(L, 2, 0, "CStore")); + (self->setValue)(*(CStore*)tolua_tousertype_dynamic(L, 2, 0, "CStore")); return 0; } @@ -35982,7 +37289,7 @@ static int tolua_function_Pointer_CSavedGameStoredLocation__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation")); + (self->setValue)(*(CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation")); return 0; } @@ -36006,7 +37313,7 @@ static int tolua_function_Pointer_CInfTileSet__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CInfTileSet")); + (self->setValue)(*(CInfTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CInfTileSet")); return 0; } @@ -36030,7 +37337,7 @@ static int tolua_function_Pointer_CResWED__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResWED*)tolua_tousertype_dynamic(L, 2, 0, "CResWED")); + (self->setValue)(*(CResWED*)tolua_tousertype_dynamic(L, 2, 0, "CResWED")); return 0; } @@ -36054,7 +37361,7 @@ static int tolua_function_Pointer_CVRamPool__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVRamPool*)tolua_tousertype_dynamic(L, 2, 0, "CVRamPool")); + (self->setValue)(*(CVRamPool*)tolua_tousertype_dynamic(L, 2, 0, "CVRamPool")); return 0; } @@ -36078,7 +37385,7 @@ static int tolua_function_Pointer_CVidMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidMode*)tolua_tousertype_dynamic(L, 2, 0, "CVidMode")); + (self->setValue)(*(CVidMode*)tolua_tousertype_dynamic(L, 2, 0, "CVidMode")); return 0; } @@ -36102,7 +37409,7 @@ static int tolua_function_Pointer_CAOEEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry")); + (self->setValue)(*(CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry")); return 0; } @@ -36126,7 +37433,7 @@ static int tolua_function_Pointer_ushort__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ushort returnVal = self->getValue(); + ushort returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -36135,7 +37442,7 @@ static int tolua_function_Pointer_ushort__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -36159,7 +37466,7 @@ static int tolua_function_Pointer_const_unsigned___int8__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const unsigned __int8 returnVal = self->getValue(); + const unsigned __int8 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -36184,7 +37491,7 @@ static int tolua_function_Pointer_const_byte__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const byte returnVal = self->getValue(); + const byte returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -36209,7 +37516,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long___setValue(lua_Sta { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -36233,7 +37540,7 @@ static int tolua_function_Pointer_CGameAreaClairvoyanceEntry__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); + (self->setValue)(*(CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); return 0; } @@ -36257,7 +37564,7 @@ static int tolua_function_Pointer_CAreaFileCharacterEntryPoint__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint")); + (self->setValue)(*(CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint")); return 0; } @@ -36281,7 +37588,7 @@ static int tolua_function_Pointer_CInfGame__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfGame*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfGame")); + (self->setValue)(*(CInfGame*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfGame")); return 0; } @@ -36305,7 +37612,7 @@ static int tolua_function_Pointer_CVidBitmap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CVidBitmap")); + (self->setValue)(*(CVidBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CVidBitmap")); return 0; } @@ -36329,7 +37636,7 @@ static int tolua_function_Pointer_CObjectMarker__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CObjectMarker*)tolua_tousertype_dynamic(L, 2, 0, "CObjectMarker")); + (self->setValue)(*(CObjectMarker*)tolua_tousertype_dynamic(L, 2, 0, "CObjectMarker")); return 0; } @@ -36353,7 +37660,7 @@ static int tolua_function_Pointer_CTiledObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject")); + (self->setValue)(*(CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject")); return 0; } @@ -36377,7 +37684,7 @@ static int tolua_function_Pointer_CSpawnFile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnFile*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnFile")); + (self->setValue)(*(CSpawnFile*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnFile")); return 0; } @@ -36401,7 +37708,7 @@ static int tolua_function_Pointer_CSearchBitmap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); + (self->setValue)(*(CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); return 0; } @@ -36441,7 +37748,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAITrigger____setValue( { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -36465,7 +37772,7 @@ static int tolua_function_Pointer_CVidCell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell")); + (self->setValue)(*(CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell")); return 0; } @@ -36489,7 +37796,7 @@ static int tolua_function_Pointer_SDL_Cursor__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Cursor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Cursor")); + (self->setValue)(*(SDL_Cursor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Cursor")); return 0; } @@ -36513,7 +37820,7 @@ static int tolua_function_Pointer_SDL_Surface__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Surface*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Surface")); + (self->setValue)(*(SDL_Surface*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Surface")); return 0; } @@ -36537,7 +37844,7 @@ static int tolua_function_Pointer_CVIDPALETTE_COLOR__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR")); + (self->setValue)(*(CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR")); return 0; } @@ -36561,7 +37868,7 @@ static int tolua_function_Pointer_CVIDIMG_PALETTEAFFECT__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 2, 0, "CVIDIMG_PALETTEAFFECT")); + (self->setValue)(*(CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 2, 0, "CVIDIMG_PALETTEAFFECT")); return 0; } @@ -36585,7 +37892,7 @@ static int tolua_function_Pointer_tagRGBQUAD__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(tagRGBQUAD*)tolua_tousertype_dynamic(L, 2, 0, "tagRGBQUAD")); + (self->setValue)(*(tagRGBQUAD*)tolua_tousertype_dynamic(L, 2, 0, "tagRGBQUAD")); return 0; } @@ -36609,7 +37916,7 @@ static int tolua_function_Pointer_CVEFEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent")); + (self->setValue)(*(CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent")); return 0; } @@ -36633,7 +37940,7 @@ static int tolua_function_Pointer_CStringList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStringList*)tolua_tousertype_dynamic(L, 2, 0, "CStringList")); + (self->setValue)(*(CStringList*)tolua_tousertype_dynamic(L, 2, 0, "CStringList")); return 0; } @@ -36657,7 +37964,7 @@ static int tolua_function_Pointer_CVisibilityMapTreeNode___getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVisibilityMapTreeNode* returnVal = self->getValue(); + CVisibilityMapTreeNode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVisibilityMapTreeNode"); return 1; } @@ -36666,7 +37973,7 @@ static int tolua_function_Pointer_CVisibilityMapTreeNode___setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVisibilityMapTreeNode*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMapTreeNode")); + (self->setValue)((CVisibilityMapTreeNode*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMapTreeNode")); return 0; } @@ -36690,7 +37997,7 @@ static int tolua_function_Pointer_CVisibilityMapEllipse__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVisibilityMapEllipse*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMapEllipse")); + (self->setValue)(*(CVisibilityMapEllipse*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMapEllipse")); return 0; } @@ -36714,7 +38021,7 @@ static int tolua_function_Pointer_CWarp__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); + (self->setValue)(*(CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); return 0; } @@ -36738,7 +38045,7 @@ static int tolua_function_Pointer_CSoundMixer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSoundMixer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CSoundMixer")); + (self->setValue)(*(CSoundMixer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CSoundMixer")); return 0; } @@ -36762,7 +38069,7 @@ static int tolua_function_Pointer_CVariable__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVariable*)tolua_tousertype_dynamic(L, 2, 0, "CVariable")); + (self->setValue)(*(CVariable*)tolua_tousertype_dynamic(L, 2, 0, "CVariable")); return 0; } @@ -36786,7 +38093,7 @@ static int tolua_function_Pointer_CAIResponseSet__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIResponseSet*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponseSet")); + (self->setValue)(*(CAIResponseSet*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponseSet")); return 0; } @@ -36810,7 +38117,7 @@ static int tolua_function_Pointer_CAICondition__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAICondition*)tolua_tousertype_dynamic(L, 2, 0, "CAICondition")); + (self->setValue)(*(CAICondition*)tolua_tousertype_dynamic(L, 2, 0, "CAICondition")); return 0; } @@ -36834,7 +38141,7 @@ static int tolua_function_Pointer_CAIResponse__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse")); + (self->setValue)(*(CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse")); return 0; } @@ -36858,7 +38165,7 @@ static int tolua_function_Pointer_CAIConditionResponse__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse")); + (self->setValue)(*(CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse")); return 0; } @@ -36898,7 +38205,7 @@ static int tolua_function_Pointer_CMessage__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage")); + (self->setValue)(*(CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage")); return 0; } @@ -36922,7 +38229,7 @@ static int tolua_function_Pointer_C2DArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(C2DArray*)tolua_tousertype_dynamic(L, 2, 0, "C2DArray")); + (self->setValue)(*(C2DArray*)tolua_tousertype_dynamic(L, 2, 0, "C2DArray")); return 0; } @@ -36946,7 +38253,7 @@ static int tolua_function_Pointer_CSoundImp__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSoundImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundImp")); + (self->setValue)(*(CSoundImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundImp")); return 0; } @@ -36970,7 +38277,7 @@ static int tolua_function_Pointer_CSoundMixerImp__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSoundMixerImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundMixerImp")); + (self->setValue)(*(CSoundMixerImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundMixerImp")); return 0; } @@ -36994,7 +38301,7 @@ static int tolua_function_Pointer_CGameDialogSprite__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameDialogSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogSprite")); + (self->setValue)(*(CGameDialogSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogSprite")); return 0; } @@ -37018,7 +38325,7 @@ static int tolua_function_Pointer_CDeathSound__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound")); + (self->setValue)(*(CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound")); return 0; } @@ -37042,7 +38349,7 @@ static int tolua_function_Pointer_CFileView__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CFileView*)tolua_tousertype_dynamic(L, 2, 0, "CFileView")); + (self->setValue)(*(CFileView*)tolua_tousertype_dynamic(L, 2, 0, "CFileView")); return 0; } @@ -37066,7 +38373,7 @@ static int tolua_function_Pointer_unsigned_int__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned int returnVal = self->getValue(); + unsigned int returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -37075,7 +38382,7 @@ static int tolua_function_Pointer_unsigned_int__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -37099,7 +38406,7 @@ static int tolua_function_Pointer_CContingency__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency")); + (self->setValue)(*(CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency")); return 0; } @@ -37123,7 +38430,7 @@ static int tolua_function_Pointer_CScreenMap__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenMap::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CScreenMap::vtbl")); + (self->setValue)(*(CScreenMap::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CScreenMap::vtbl")); return 0; } @@ -37147,7 +38454,7 @@ static int tolua_function_Pointer_CRect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); + (self->setValue)(*(CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); return 0; } @@ -37171,7 +38478,7 @@ static int tolua_function_Pointer_CVidCellFont__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidCellFont*)tolua_tousertype_dynamic(L, 2, 0, "CVidCellFont")); + (self->setValue)(*(CVidCellFont*)tolua_tousertype_dynamic(L, 2, 0, "CVidCellFont")); return 0; } @@ -37195,7 +38502,55 @@ static int tolua_function_Pointer_uiItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem*)tolua_tousertype_dynamic(L, 2, 0, "uiItem")); + (self->setValue)(*(uiItem*)tolua_tousertype_dynamic(L, 2, 0, "uiItem")); + return 0; +} + +static int tolua_get_Pointer_SDL_DisplayMode__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_DisplayMode"); + return 1; +} + +static int tolua_set_Pointer_SDL_DisplayMode__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_DisplayMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DisplayMode"); + return 0; +} + +static int tolua_function_Pointer_SDL_DisplayMode__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_DisplayMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DisplayMode")); + return 0; +} + +static int tolua_get_Pointer_SDL_VideoDevice__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_VideoDevice"); + return 1; +} + +static int tolua_set_Pointer_SDL_VideoDevice__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"); + return 0; +} + +static int tolua_function_Pointer_SDL_VideoDevice__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); return 0; } @@ -37219,7 +38574,7 @@ static int tolua_function_Pointer_wchar_t__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - wchar_t returnVal = self->getValue(); + wchar_t returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -37228,7 +38583,7 @@ static int tolua_function_Pointer_wchar_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(wchar_t*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(wchar_t*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -37252,7 +38607,7 @@ static int tolua_function_Pointer_SDL_WindowShaper__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_WindowShaper*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShaper")); + (self->setValue)(*(SDL_WindowShaper*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShaper")); return 0; } @@ -37292,7 +38647,7 @@ static int tolua_function_Pointer_SDL_WindowUserData__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_WindowUserData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowUserData")); + (self->setValue)(*(SDL_WindowUserData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowUserData")); return 0; } @@ -37316,7 +38671,7 @@ static int tolua_function_Pointer_GCObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(GCObject*)tolua_tousertype_dynamic(L, 2, 0, "GCObject")); + (self->setValue)(*(GCObject*)tolua_tousertype_dynamic(L, 2, 0, "GCObject")); return 0; } @@ -37340,7 +38695,7 @@ static int tolua_function_Pointer_lua_TValue__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(lua_TValue*)tolua_tousertype_dynamic(L, 2, 0, "lua_TValue")); + (self->setValue)(*(lua_TValue*)tolua_tousertype_dynamic(L, 2, 0, "lua_TValue")); return 0; } @@ -37364,7 +38719,7 @@ static int tolua_function_Pointer_global_State__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(global_State*)tolua_tousertype_dynamic(L, 2, 0, "global_State")); + (self->setValue)(*(global_State*)tolua_tousertype_dynamic(L, 2, 0, "global_State")); return 0; } @@ -37388,7 +38743,7 @@ static int tolua_function_Pointer_CallInfo__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CallInfo*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo")); + (self->setValue)(*(CallInfo*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo")); return 0; } @@ -37412,7 +38767,7 @@ static int tolua_function_Pointer_const_unsigned_int__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const unsigned int returnVal = self->getValue(); + const unsigned int returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -37437,7 +38792,7 @@ static int tolua_function_Pointer_lua_Debug__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(lua_Debug*)tolua_tousertype_dynamic(L, 2, 0, "lua_Debug")); + (self->setValue)(*(lua_Debug*)tolua_tousertype_dynamic(L, 2, 0, "lua_Debug")); return 0; } @@ -37461,7 +38816,7 @@ static int tolua_function_Pointer_lua_longjmp__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(lua_longjmp*)tolua_tousertype_dynamic(L, 2, 0, "lua_longjmp")); + (self->setValue)(*(lua_longjmp*)tolua_tousertype_dynamic(L, 2, 0, "lua_longjmp")); return 0; } @@ -37485,7 +38840,7 @@ static int tolua_function_Pointer_sheet__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(sheet*)tolua_tousertype_dynamic(L, 2, 0, "sheet")); + (self->setValue)(*(sheet*)tolua_tousertype_dynamic(L, 2, 0, "sheet")); return 0; } @@ -37509,7 +38864,7 @@ static int tolua_function_Pointer_stbrp_context__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(stbrp_context*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_context")); + (self->setValue)(*(stbrp_context*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_context")); return 0; } @@ -37533,7 +38888,7 @@ static int tolua_function_Pointer_stbrp_node__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(stbrp_node*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_node")); + (self->setValue)(*(stbrp_node*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_node")); return 0; } @@ -37557,7 +38912,7 @@ static int tolua_function_Pointer_glyphmap_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(glyphmap_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphmap_t")); + (self->setValue)(*(glyphmap_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphmap_t")); return 0; } @@ -37581,7 +38936,7 @@ static int tolua_function_Pointer_line_metric__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(line_metric*)tolua_tousertype_dynamic(L, 2, 0, "line_metric")); + (self->setValue)(*(line_metric*)tolua_tousertype_dynamic(L, 2, 0, "line_metric")); return 0; } @@ -37605,7 +38960,7 @@ static int tolua_function_Pointer_glyphAdvance_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(glyphAdvance_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphAdvance_t")); + (self->setValue)(*(glyphAdvance_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphAdvance_t")); return 0; } @@ -37629,7 +38984,7 @@ static int tolua_function_Pointer_CInfCursor__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfCursor*)tolua_tousertype_dynamic(L, 2, 0, "CInfCursor")); + (self->setValue)(*(CInfCursor*)tolua_tousertype_dynamic(L, 2, 0, "CInfCursor")); return 0; } @@ -37653,7 +39008,7 @@ static int tolua_function_Pointer_CDungeonMaster__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CDungeonMaster*)tolua_tousertype_dynamic(L, 2, 0, "CDungeonMaster")); + (self->setValue)(*(CDungeonMaster*)tolua_tousertype_dynamic(L, 2, 0, "CDungeonMaster")); return 0; } @@ -37677,7 +39032,7 @@ static int tolua_function_Pointer_CBaldurProjector__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBaldurProjector*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurProjector")); + (self->setValue)(*(CBaldurProjector*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurProjector")); return 0; } @@ -37701,7 +39056,7 @@ static int tolua_function_Pointer_CScreenAI__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenAI*)tolua_tousertype_dynamic(L, 2, 0, "CScreenAI")); + (self->setValue)(*(CScreenAI*)tolua_tousertype_dynamic(L, 2, 0, "CScreenAI")); return 0; } @@ -37725,7 +39080,7 @@ static int tolua_function_Pointer_CScreenCharacter__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenCharacter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCharacter")); + (self->setValue)(*(CScreenCharacter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCharacter")); return 0; } @@ -37749,7 +39104,7 @@ static int tolua_function_Pointer_CScreenCreateChar__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenCreateChar*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateChar")); + (self->setValue)(*(CScreenCreateChar*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateChar")); return 0; } @@ -37773,7 +39128,7 @@ static int tolua_function_Pointer_CScreenCreateParty__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenCreateParty*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateParty")); + (self->setValue)(*(CScreenCreateParty*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateParty")); return 0; } @@ -37797,7 +39152,7 @@ static int tolua_function_Pointer_CScreenInventory__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenInventory*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenInventory")); + (self->setValue)(*(CScreenInventory*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenInventory")); return 0; } @@ -37821,7 +39176,7 @@ static int tolua_function_Pointer_CScreenJournal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenJournal*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenJournal")); + (self->setValue)(*(CScreenJournal*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenJournal")); return 0; } @@ -37845,7 +39200,7 @@ static int tolua_function_Pointer_CScreenLoad__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenLoad*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenLoad")); + (self->setValue)(*(CScreenLoad*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenLoad")); return 0; } @@ -37869,7 +39224,7 @@ static int tolua_function_Pointer_CScreenMap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMap")); + (self->setValue)(*(CScreenMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMap")); return 0; } @@ -37893,7 +39248,7 @@ static int tolua_function_Pointer_CScreenOptions__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenOptions")); + (self->setValue)(*(CScreenOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenOptions")); return 0; } @@ -37917,7 +39272,7 @@ static int tolua_function_Pointer_CScreenPriestSpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenPriestSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenPriestSpell")); + (self->setValue)(*(CScreenPriestSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenPriestSpell")); return 0; } @@ -37941,7 +39296,7 @@ static int tolua_function_Pointer_CScreenSave__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenSave*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenSave")); + (self->setValue)(*(CScreenSave*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenSave")); return 0; } @@ -37965,7 +39320,7 @@ static int tolua_function_Pointer_CScreenStart__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenStart*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStart")); + (self->setValue)(*(CScreenStart*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStart")); return 0; } @@ -37989,7 +39344,7 @@ static int tolua_function_Pointer_CScreenWizSpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenWizSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWizSpell")); + (self->setValue)(*(CScreenWizSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWizSpell")); return 0; } @@ -38013,7 +39368,7 @@ static int tolua_function_Pointer_CScreenWorld__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenWorld*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorld")); + (self->setValue)(*(CScreenWorld*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorld")); return 0; } @@ -38037,7 +39392,7 @@ static int tolua_function_Pointer_CScreenStore__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenStore*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStore")); + (self->setValue)(*(CScreenStore*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStore")); return 0; } @@ -38061,7 +39416,7 @@ static int tolua_function_Pointer_CScreenMultiPlayer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenMultiPlayer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMultiPlayer")); + (self->setValue)(*(CScreenMultiPlayer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMultiPlayer")); return 0; } @@ -38085,7 +39440,7 @@ static int tolua_function_Pointer_CScreenConnection__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenConnection*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenConnection")); + (self->setValue)(*(CScreenConnection*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenConnection")); return 0; } @@ -38109,7 +39464,7 @@ static int tolua_function_Pointer_CScreenWorldMap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorldMap")); + (self->setValue)(*(CScreenWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorldMap")); return 0; } @@ -38133,7 +39488,7 @@ static int tolua_function_Pointer_CScreenChapter__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenChapter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenChapter")); + (self->setValue)(*(CScreenChapter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenChapter")); return 0; } @@ -38157,7 +39512,7 @@ static int tolua_function_Pointer_CScreenMovies__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenMovies*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMovies")); + (self->setValue)(*(CScreenMovies*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMovies")); return 0; } @@ -38181,7 +39536,7 @@ static int tolua_function_Pointer_CScreenDLC__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenDLC*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenDLC")); + (self->setValue)(*(CScreenDLC*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenDLC")); return 0; } @@ -38221,7 +39576,7 @@ static int tolua_function_Pointer_HRESULT__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - HRESULT returnVal = self->getValue(); + HRESULT returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -38230,7 +39585,7 @@ static int tolua_function_Pointer_HRESULT__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -38318,7 +39673,7 @@ static int tolua_function_Pointer_ID3DXEffect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ID3DXEffect* returnVal = self->getValue(); + ID3DXEffect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ID3DXEffect"); return 1; } @@ -38327,7 +39682,7 @@ static int tolua_function_Pointer_ID3DXEffect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ID3DXEffect*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXEffect")); + (self->setValue)((ID3DXEffect*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXEffect")); return 0; } @@ -38351,7 +39706,7 @@ static int tolua_function_Pointer_ID3DXBuffer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ID3DXBuffer* returnVal = self->getValue(); + ID3DXBuffer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ID3DXBuffer"); return 1; } @@ -38360,7 +39715,7 @@ static int tolua_function_Pointer_ID3DXBuffer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ID3DXBuffer*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXBuffer")); + (self->setValue)((ID3DXBuffer*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXBuffer")); return 0; } @@ -38384,7 +39739,7 @@ static int tolua_function_Pointer_d3dvertex_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(d3dvertex_t*)tolua_tousertype_dynamic(L, 2, 0, "d3dvertex_t")); + (self->setValue)(*(d3dvertex_t*)tolua_tousertype_dynamic(L, 2, 0, "d3dvertex_t")); return 0; } @@ -38440,7 +39795,7 @@ static int tolua_function_Pointer_Table__setValue(lua_State* L) { Pointer* self = (Pointer
*)tolua_tousertype_dynamic(L, 1, 0, "Pointer
"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Table*)tolua_tousertype_dynamic(L, 2, 0, "Table")); + (self->setValue)(*(Table*)tolua_tousertype_dynamic(L, 2, 0, "Table")); return 0; } @@ -38464,7 +39819,7 @@ static int tolua_function_Pointer_Proto__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Proto*)tolua_tousertype_dynamic(L, 2, 0, "Proto")); + (self->setValue)(*(Proto*)tolua_tousertype_dynamic(L, 2, 0, "Proto")); return 0; } @@ -38488,7 +39843,7 @@ static int tolua_function_Pointer_UpVal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UpVal*)tolua_tousertype_dynamic(L, 2, 0, "UpVal")); + (self->setValue)(*(UpVal*)tolua_tousertype_dynamic(L, 2, 0, "UpVal")); return 0; } @@ -38512,7 +39867,7 @@ static int tolua_function_Pointer_Node__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Node*)tolua_tousertype_dynamic(L, 2, 0, "Node")); + (self->setValue)(*(Node*)tolua_tousertype_dynamic(L, 2, 0, "Node")); return 0; } @@ -38536,7 +39891,7 @@ static int tolua_function_Pointer_Proto___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Proto* returnVal = self->getValue(); + Proto* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Proto"); return 1; } @@ -38545,7 +39900,7 @@ static int tolua_function_Pointer_Proto___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Proto*)tolua_tousertype_dynamic(L, 2, 0, "Proto")); + (self->setValue)((Proto*)tolua_tousertype_dynamic(L, 2, 0, "Proto")); return 0; } @@ -38569,7 +39924,7 @@ static int tolua_function_Pointer_LocVar__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LocVar*)tolua_tousertype_dynamic(L, 2, 0, "LocVar")); + (self->setValue)(*(LocVar*)tolua_tousertype_dynamic(L, 2, 0, "LocVar")); return 0; } @@ -38593,7 +39948,7 @@ static int tolua_function_Pointer_Upvaldesc__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Upvaldesc*)tolua_tousertype_dynamic(L, 2, 0, "Upvaldesc")); + (self->setValue)(*(Upvaldesc*)tolua_tousertype_dynamic(L, 2, 0, "Upvaldesc")); return 0; } @@ -38617,7 +39972,7 @@ static int tolua_function_Pointer_Closure__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Closure*)tolua_tousertype_dynamic(L, 2, 0, "Closure")); + (self->setValue)(*(Closure*)tolua_tousertype_dynamic(L, 2, 0, "Closure")); return 0; } @@ -38641,7 +39996,7 @@ static int tolua_function_Pointer_TString__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(TString*)tolua_tousertype_dynamic(L, 2, 0, "TString")); + (self->setValue)(*(TString*)tolua_tousertype_dynamic(L, 2, 0, "TString")); return 0; } @@ -38665,7 +40020,7 @@ static int tolua_function_Pointer_GCObject___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - GCObject* returnVal = self->getValue(); + GCObject* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "GCObject"); return 1; } @@ -38674,7 +40029,7 @@ static int tolua_function_Pointer_GCObject___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((GCObject*)tolua_tousertype_dynamic(L, 2, 0, "GCObject")); + (self->setValue)((GCObject*)tolua_tousertype_dynamic(L, 2, 0, "GCObject")); return 0; } @@ -38698,7 +40053,7 @@ static int tolua_function_Pointer_const_long_double__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const long double returnVal = self->getValue(); + const long double returnVal = (self->getValue)(); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -38723,7 +40078,7 @@ static int tolua_function_Pointer_CPtrList__CNode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CPtrList::CNode")); + (self->setValue)(*(CPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CPtrList::CNode")); return 0; } @@ -38747,7 +40102,7 @@ static int tolua_function_Pointer_DP_Player__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(DP_Player*)tolua_tousertype_dynamic(L, 2, 0, "DP_Player")); + (self->setValue)(*(DP_Player*)tolua_tousertype_dynamic(L, 2, 0, "DP_Player")); return 0; } @@ -38771,7 +40126,7 @@ static int tolua_function_Pointer_DP_Packet__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(DP_Packet*)tolua_tousertype_dynamic(L, 2, 0, "DP_Packet")); + (self->setValue)(*(DP_Packet*)tolua_tousertype_dynamic(L, 2, 0, "DP_Packet")); return 0; } @@ -38795,7 +40150,7 @@ static int tolua_function_Pointer_IDPProvider__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(IDPProvider*)tolua_tousertype_dynamic(L, 2, 0, "IDPProvider")); + (self->setValue)(*(IDPProvider*)tolua_tousertype_dynamic(L, 2, 0, "IDPProvider")); return 0; } @@ -38819,7 +40174,7 @@ static int tolua_function_Pointer_IDPPeer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(IDPPeer*)tolua_tousertype_dynamic(L, 2, 0, "IDPPeer")); + (self->setValue)(*(IDPPeer*)tolua_tousertype_dynamic(L, 2, 0, "IDPPeer")); return 0; } @@ -38843,7 +40198,7 @@ static int tolua_function_Pointer_cnetworkwindow_queueentry_st__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st")); + (self->setValue)(*(cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st")); return 0; } @@ -38867,7 +40222,7 @@ static int tolua_function_Pointer_ISteamRemoteStorage__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 2, 0, "ISteamRemoteStorage")); + (self->setValue)(*(ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 2, 0, "ISteamRemoteStorage")); return 0; } @@ -38891,7 +40246,7 @@ static int tolua_function_Pointer_ISteamUGC__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ISteamUGC*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUGC")); + (self->setValue)(*(ISteamUGC*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUGC")); return 0; } @@ -38915,7 +40270,7 @@ static int tolua_function_Pointer_ISteamUserStats__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ISteamUserStats*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUserStats")); + (self->setValue)(*(ISteamUserStats*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUserStats")); return 0; } @@ -38939,7 +40294,7 @@ static int tolua_function_Pointer_CChitin__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CChitin")); + (self->setValue)(*(CChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CChitin")); return 0; } @@ -38963,7 +40318,7 @@ static int tolua_function_Pointer_unsigned___int8___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int8* returnVal = self->getValue(); + unsigned __int8* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -38972,7 +40327,7 @@ static int tolua_function_Pointer_unsigned___int8___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned __int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); + (self->setValue)((unsigned __int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); return 0; } @@ -38996,7 +40351,7 @@ static int tolua_function_Pointer_float__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - float returnVal = self->getValue(); + float returnVal = (self->getValue)(); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -39005,7 +40360,7 @@ static int tolua_function_Pointer_float__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tonumber(L, 2, "setValue")); + (self->setValue)(tolua_function_tonumber(L, 2, "setValue")); return 0; } @@ -39029,7 +40384,7 @@ static int tolua_function_Pointer_CCallbackBase__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCallbackBase*)tolua_tousertype_dynamic(L, 2, 0, "CCallbackBase")); + (self->setValue)(*(CCallbackBase*)tolua_tousertype_dynamic(L, 2, 0, "CCallbackBase")); return 0; } @@ -39053,7 +40408,7 @@ static int tolua_function_Pointer_ALCcontext_struct__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ALCcontext_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCcontext_struct")); + (self->setValue)(*(ALCcontext_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCcontext_struct")); return 0; } @@ -39077,7 +40432,7 @@ static int tolua_function_Pointer_ALCdevice_struct__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ALCdevice_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCdevice_struct")); + (self->setValue)(*(ALCdevice_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCdevice_struct")); return 0; } @@ -39101,7 +40456,7 @@ static int tolua_function_Pointer_CMusicPosition__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition")); + (self->setValue)(*(CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition")); return 0; } @@ -39125,7 +40480,7 @@ static int tolua_function_Pointer_tagBITMAPFILEHEADER__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(tagBITMAPFILEHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPFILEHEADER")); + (self->setValue)(*(tagBITMAPFILEHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPFILEHEADER")); return 0; } @@ -39149,7 +40504,7 @@ static int tolua_function_Pointer_tagBITMAPINFOHEADER__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(tagBITMAPINFOHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPINFOHEADER")); + (self->setValue)(*(tagBITMAPINFOHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPINFOHEADER")); return 0; } @@ -39173,7 +40528,7 @@ static int tolua_function_Pointer_frameTableEntry_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(frameTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st")); + (self->setValue)(*(frameTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st")); return 0; } @@ -39197,7 +40552,7 @@ static int tolua_function_Pointer_SDL_PixelFormat__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_PixelFormat*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PixelFormat")); + (self->setValue)(*(SDL_PixelFormat*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PixelFormat")); return 0; } @@ -39221,7 +40576,7 @@ static int tolua_function_Pointer_SDL_BlitMap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_BlitMap*)tolua_tousertype_dynamic(L, 2, 0, "SDL_BlitMap")); + (self->setValue)(*(SDL_BlitMap*)tolua_tousertype_dynamic(L, 2, 0, "SDL_BlitMap")); return 0; } @@ -39245,7 +40600,7 @@ static int tolua_function_Pointer_DP_Event__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(DP_Event*)tolua_tousertype_dynamic(L, 2, 0, "DP_Event")); + (self->setValue)(*(DP_Event*)tolua_tousertype_dynamic(L, 2, 0, "DP_Event")); return 0; } @@ -39269,7 +40624,7 @@ static int tolua_function_Pointer_unsigned___int64__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int64 returnVal = self->getValue(); + unsigned __int64 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -39278,7 +40633,7 @@ static int tolua_function_Pointer_unsigned___int64__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -39302,7 +40657,7 @@ static int tolua_function_Pointer_CSteamID__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID")); + (self->setValue)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID")); return 0; } @@ -39326,7 +40681,7 @@ static int tolua_function_Pointer_SteamParamStringArray_t__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamParamStringArray_t")); + (self->setValue)(*(SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamParamStringArray_t")); return 0; } @@ -39350,7 +40705,7 @@ static int tolua_function_Pointer_SteamUGCDetails_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCDetails_t")); + (self->setValue)(*(SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCDetails_t")); return 0; } @@ -39374,7 +40729,7 @@ static int tolua_function_Pointer_EItemPreviewType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EItemPreviewType returnVal = self->getValue(); + EItemPreviewType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -39383,7 +40738,7 @@ static int tolua_function_Pointer_EItemPreviewType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EItemPreviewType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EItemPreviewType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -39423,7 +40778,7 @@ static int tolua_function_Pointer_bool__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - bool returnVal = self->getValue(); + bool returnVal = (self->getValue)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -39432,7 +40787,7 @@ static int tolua_function_Pointer_bool__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_toboolean(L, 2, "setValue")); + (self->setValue)(tolua_function_toboolean(L, 2, "setValue")); return 0; } @@ -39456,7 +40811,7 @@ static int tolua_function_Pointer_LeaderboardEntry_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "LeaderboardEntry_t")); + (self->setValue)(*(LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "LeaderboardEntry_t")); return 0; } @@ -39480,7 +40835,7 @@ static int tolua_function_Pointer_const_int__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const int returnVal = self->getValue(); + const int returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -39505,7 +40860,7 @@ static int tolua_function_Pointer_long_double__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - long double returnVal = self->getValue(); + long double returnVal = (self->getValue)(); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -39514,7 +40869,7 @@ static int tolua_function_Pointer_long_double__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tonumber(L, 2, "setValue")); + (self->setValue)(tolua_function_tonumber(L, 2, "setValue")); return 0; } @@ -39538,7 +40893,7 @@ static int tolua_function_Pointer___int64__getValue(lua_State* L) { Pointer<__int64>* self = (Pointer<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int64>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int64 returnVal = self->getValue(); + __int64 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -39547,7 +40902,7 @@ static int tolua_function_Pointer___int64__setValue(lua_State* L) { Pointer<__int64>* self = (Pointer<__int64>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int64>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger<__int64>(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger<__int64>(L, 2, "setValue")); return 0; } @@ -39571,7 +40926,7 @@ static int tolua_function_Pointer_CVidPoly__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidPoly*)tolua_tousertype_dynamic(L, 2, 0, "CVidPoly")); + (self->setValue)(*(CVidPoly*)tolua_tousertype_dynamic(L, 2, 0, "CVidPoly")); return 0; } @@ -39595,7 +40950,7 @@ static int tolua_function_Pointer_bamHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(bamHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "bamHeader_st")); + (self->setValue)(*(bamHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "bamHeader_st")); return 0; } @@ -39619,7 +40974,7 @@ static int tolua_function_Pointer_BAMHEADERV2__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(BAMHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "BAMHEADERV2")); + (self->setValue)(*(BAMHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "BAMHEADERV2")); return 0; } @@ -39643,7 +40998,7 @@ static int tolua_function_Pointer_MOSAICQUAD__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(MOSAICQUAD*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICQUAD")); + (self->setValue)(*(MOSAICQUAD*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICQUAD")); return 0; } @@ -39667,7 +41022,7 @@ static int tolua_function_Pointer_sequenceTableEntry_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(sequenceTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "sequenceTableEntry_st")); + (self->setValue)(*(sequenceTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "sequenceTableEntry_st")); return 0; } @@ -39691,7 +41046,7 @@ static int tolua_function_Pointer_SDL_Palette__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Palette*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Palette")); + (self->setValue)(*(SDL_Palette*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Palette")); return 0; } @@ -39715,7 +41070,7 @@ static int tolua_function_Pointer_CVIDPOLY_VERTEX__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVIDPOLY_VERTEX*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPOLY_VERTEX")); + (self->setValue)(*(CVIDPOLY_VERTEX*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPOLY_VERTEX")); return 0; } @@ -39739,7 +41094,7 @@ static int tolua_function_Pointer__EdgeDescription__setValue(lua_State* L) { Pointer<_EdgeDescription>* self = (Pointer<_EdgeDescription>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_EdgeDescription>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_EdgeDescription*)tolua_tousertype_dynamic(L, 2, 0, "_EdgeDescription")); + (self->setValue)(*(_EdgeDescription*)tolua_tousertype_dynamic(L, 2, 0, "_EdgeDescription")); return 0; } @@ -39763,7 +41118,7 @@ static int tolua_function_Pointer_SDL_Color__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Color*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Color")); + (self->setValue)(*(SDL_Color*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Color")); return 0; } @@ -39787,7 +41142,7 @@ static int tolua_function_Pointer_HWND____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(HWND__*)tolua_tousertype_dynamic(L, 2, 0, "HWND__")); + (self->setValue)(*(HWND__*)tolua_tousertype_dynamic(L, 2, 0, "HWND__")); return 0; } @@ -39811,7 +41166,7 @@ static int tolua_function_Pointer_SDL_SysWMmsg__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_SysWMmsg*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg")); + (self->setValue)(*(SDL_SysWMmsg*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg")); return 0; } @@ -39835,7 +41190,7 @@ static int tolua_function_Pointer_CKeyInfo__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CKeyInfo*)tolua_tousertype_dynamic(L, 2, 0, "CKeyInfo")); + (self->setValue)(*(CKeyInfo*)tolua_tousertype_dynamic(L, 2, 0, "CKeyInfo")); return 0; } @@ -39859,7 +41214,7 @@ static int tolua_function_Pointer_WAV_Header__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WAV_Header*)tolua_tousertype_dynamic(L, 2, 0, "WAV_Header")); + (self->setValue)(*(WAV_Header*)tolua_tousertype_dynamic(L, 2, 0, "WAV_Header")); return 0; } @@ -39883,7 +41238,7 @@ static int tolua_function_Pointer_CSound__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound")); + (self->setValue)(*(CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound")); return 0; } @@ -39907,7 +41262,7 @@ static int tolua_function_Pointer_CAIIdList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIIdList*)tolua_tousertype_dynamic(L, 2, 0, "CAIIdList")); + (self->setValue)(*(CAIIdList*)tolua_tousertype_dynamic(L, 2, 0, "CAIIdList")); return 0; } @@ -39931,7 +41286,7 @@ static int tolua_function_Pointer_ResFixedHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ResFixedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "ResFixedHeader_st")); + (self->setValue)(*(ResFixedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "ResFixedHeader_st")); return 0; } @@ -39955,7 +41310,7 @@ static int tolua_function_Pointer_CResTileSet__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CResTileSet")); + (self->setValue)(*(CResTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CResTileSet")); return 0; } @@ -39979,7 +41334,7 @@ static int tolua_function_Pointer_CResPVR__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResPVR*)tolua_tousertype_dynamic(L, 2, 0, "CResPVR")); + (self->setValue)(*(CResPVR*)tolua_tousertype_dynamic(L, 2, 0, "CResPVR")); return 0; } @@ -40003,7 +41358,7 @@ static int tolua_function_Pointer_CResTile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResTile*)tolua_tousertype_dynamic(L, 2, 0, "CResTile")); + (self->setValue)(*(CResTile*)tolua_tousertype_dynamic(L, 2, 0, "CResTile")); return 0; } @@ -40027,7 +41382,7 @@ static int tolua_function_Pointer_st_tiledef__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(st_tiledef*)tolua_tousertype_dynamic(L, 2, 0, "st_tiledef")); + (self->setValue)(*(st_tiledef*)tolua_tousertype_dynamic(L, 2, 0, "st_tiledef")); return 0; } @@ -40051,7 +41406,7 @@ static int tolua_function_Pointer_CResInfTile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResInfTile* returnVal = self->getValue(); + CResInfTile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResInfTile"); return 1; } @@ -40060,7 +41415,7 @@ static int tolua_function_Pointer_CResInfTile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResInfTile*)tolua_tousertype_dynamic(L, 2, 0, "CResInfTile")); + (self->setValue)((CResInfTile*)tolua_tousertype_dynamic(L, 2, 0, "CResInfTile")); return 0; } @@ -40084,7 +41439,7 @@ static int tolua_function_Pointer_CGameRemoteObjectListEntry__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameRemoteObjectListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectListEntry")); + (self->setValue)(*(CGameRemoteObjectListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectListEntry")); return 0; } @@ -40108,7 +41463,7 @@ static int tolua_function_Pointer_CGameRemoteObjectControlChange__setValue(lua_S { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameRemoteObjectControlChange*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectControlChange")); + (self->setValue)(*(CGameRemoteObjectControlChange*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectControlChange")); return 0; } @@ -40132,7 +41487,7 @@ static int tolua_function_Pointer_CGameRemoteObjectDeletion__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameRemoteObjectDeletion*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectDeletion")); + (self->setValue)(*(CGameRemoteObjectDeletion*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectDeletion")); return 0; } @@ -40156,7 +41511,7 @@ static int tolua_function_Pointer_CGameRemoteObjectListEntry___getValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameRemoteObjectListEntry* returnVal = self->getValue(); + CGameRemoteObjectListEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameRemoteObjectListEntry"); return 1; } @@ -40165,7 +41520,7 @@ static int tolua_function_Pointer_CGameRemoteObjectListEntry___setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameRemoteObjectListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectListEntry")); + (self->setValue)((CGameRemoteObjectListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectListEntry")); return 0; } @@ -40189,7 +41544,7 @@ static int tolua_function_Pointer_WED_WedHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WED_WedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_WedHeader_st")); + (self->setValue)(*(WED_WedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_WedHeader_st")); return 0; } @@ -40213,7 +41568,7 @@ static int tolua_function_Pointer_WED_LayerHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WED_LayerHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_LayerHeader_st")); + (self->setValue)(*(WED_LayerHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_LayerHeader_st")); return 0; } @@ -40237,7 +41592,7 @@ static int tolua_function_Pointer_WED_PolyHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WED_PolyHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyHeader_st")); + (self->setValue)(*(WED_PolyHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyHeader_st")); return 0; } @@ -40261,7 +41616,7 @@ static int tolua_function_Pointer_WED_ScreenSectionList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WED_ScreenSectionList*)tolua_tousertype_dynamic(L, 2, 0, "WED_ScreenSectionList")); + (self->setValue)(*(WED_ScreenSectionList*)tolua_tousertype_dynamic(L, 2, 0, "WED_ScreenSectionList")); return 0; } @@ -40285,7 +41640,7 @@ static int tolua_function_Pointer_WED_PolyList_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WED_PolyList_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyList_st")); + (self->setValue)(*(WED_PolyList_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyList_st")); return 0; } @@ -40309,7 +41664,7 @@ static int tolua_function_Pointer_WED_PolyPoint_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(WED_PolyPoint_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyPoint_st")); + (self->setValue)(*(WED_PolyPoint_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyPoint_st")); return 0; } @@ -40333,7 +41688,7 @@ static int tolua_function_Pointer_CGameJournalEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry")); + (self->setValue)(*(CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry")); return 0; } @@ -40357,7 +41712,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameJournalEntry____se { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -40381,7 +41736,7 @@ static int tolua_function_Pointer_CWorldMapData__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWorldMapData*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapData")); + (self->setValue)(*(CWorldMapData*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapData")); return 0; } @@ -40405,7 +41760,7 @@ static int tolua_function_Pointer_CWorldMapArea___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWorldMapArea* returnVal = self->getValue(); + CWorldMapArea* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CWorldMapArea"); return 1; } @@ -40414,7 +41769,7 @@ static int tolua_function_Pointer_CWorldMapArea___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWorldMapArea*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapArea")); + (self->setValue)((CWorldMapArea*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapArea")); return 0; } @@ -40438,7 +41793,7 @@ static int tolua_function_Pointer_CWorldMapLinks___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWorldMapLinks* returnVal = self->getValue(); + CWorldMapLinks* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CWorldMapLinks"); return 1; } @@ -40447,7 +41802,7 @@ static int tolua_function_Pointer_CWorldMapLinks___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWorldMapLinks*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapLinks")); + (self->setValue)((CWorldMapLinks*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapLinks")); return 0; } @@ -40471,7 +41826,7 @@ static int tolua_function_Pointer_CMoveListEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry")); + (self->setValue)(*(CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry")); return 0; } @@ -40495,7 +41850,7 @@ static int tolua_function_Pointer_CVVCHashEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVVCHashEntry*)tolua_tousertype_dynamic(L, 2, 0, "CVVCHashEntry")); + (self->setValue)(*(CVVCHashEntry*)tolua_tousertype_dynamic(L, 2, 0, "CVVCHashEntry")); return 0; } @@ -40519,7 +41874,7 @@ static int tolua_function_Pointer_CMemINISection__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMemINISection*)tolua_tousertype_dynamic(L, 2, 0, "CMemINISection")); + (self->setValue)(*(CMemINISection*)tolua_tousertype_dynamic(L, 2, 0, "CMemINISection")); return 0; } @@ -40543,7 +41898,7 @@ static int tolua_function_Pointer_CPathNode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPathNode*)tolua_tousertype_dynamic(L, 2, 0, "CPathNode")); + (self->setValue)(*(CPathNode*)tolua_tousertype_dynamic(L, 2, 0, "CPathNode")); return 0; } @@ -40567,7 +41922,7 @@ static int tolua_function_Pointer_CGameEffectUsability__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability")); + (self->setValue)(*(CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability")); return 0; } @@ -40591,7 +41946,7 @@ static int tolua_function_Pointer_CStoreFileItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem")); + (self->setValue)(*(CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem")); return 0; } @@ -40615,7 +41970,7 @@ static int tolua_function_Pointer_CStoreFileDrinks__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStoreFileDrinks*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileDrinks")); + (self->setValue)(*(CStoreFileDrinks*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileDrinks")); return 0; } @@ -40639,7 +41994,7 @@ static int tolua_function_Pointer_CStoreFileSpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStoreFileSpell*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileSpell")); + (self->setValue)(*(CStoreFileSpell*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileSpell")); return 0; } @@ -40663,7 +42018,7 @@ static int tolua_function_Pointer_CMemINIValue__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue")); + (self->setValue)(*(CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue")); return 0; } @@ -40687,7 +42042,7 @@ static int tolua_function_Pointer_CSpawnList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnList*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnList")); + (self->setValue)(*(CSpawnList*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnList")); return 0; } @@ -40711,7 +42066,7 @@ static int tolua_function_Pointer_Item_Header_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Item_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_Header_st")); + (self->setValue)(*(Item_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_Header_st")); return 0; } @@ -40735,7 +42090,7 @@ static int tolua_function_Pointer_CSpawn__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn")); + (self->setValue)(*(CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn")); return 0; } @@ -40759,7 +42114,7 @@ static int tolua_function_Pointer_CSpawnVar__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnVar")); + (self->setValue)(*(CSpawnVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnVar")); return 0; } @@ -40783,7 +42138,7 @@ static int tolua_function_Pointer_CException__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CException*)tolua_tousertype_dynamic(L, 2, 0, "CException")); + (self->setValue)(*(CException*)tolua_tousertype_dynamic(L, 2, 0, "CException")); return 0; } @@ -40807,7 +42162,7 @@ static int tolua_function_Pointer_CFile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CFile*)tolua_tousertype_dynamic(L, 2, 0, "CFile")); + (self->setValue)(*(CFile*)tolua_tousertype_dynamic(L, 2, 0, "CFile")); return 0; } @@ -40831,7 +42186,7 @@ static int tolua_function_Pointer_CFileException__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CFileException*)tolua_tousertype_dynamic(L, 2, 0, "CFileException")); + (self->setValue)(*(CFileException*)tolua_tousertype_dynamic(L, 2, 0, "CFileException")); return 0; } @@ -40855,7 +42210,7 @@ static int tolua_function_Pointer_CBaldurEngine__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBaldurEngine*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurEngine")); + (self->setValue)(*(CBaldurEngine*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurEngine")); return 0; } @@ -40879,7 +42234,7 @@ static int tolua_function_Pointer_CResWebm__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResWebm*)tolua_tousertype_dynamic(L, 2, 0, "CResWebm")); + (self->setValue)(*(CResWebm*)tolua_tousertype_dynamic(L, 2, 0, "CResWebm")); return 0; } @@ -40903,7 +42258,7 @@ static int tolua_function_Pointer_CStringList__CNode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStringList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CStringList::CNode")); + (self->setValue)(*(CStringList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CStringList::CNode")); return 0; } @@ -40927,7 +42282,7 @@ static int tolua_function_Pointer_CWeaponIdentification__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification")); + (self->setValue)(*(CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification")); return 0; } @@ -40951,7 +42306,7 @@ static int tolua_function_Pointer_CSelectiveBonus__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus")); + (self->setValue)(*(CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus")); return 0; } @@ -40975,7 +42330,7 @@ static int tolua_function_Pointer_CImmunitiesItemEquip__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip")); + (self->setValue)(*(CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip")); return 0; } @@ -40999,7 +42354,7 @@ static int tolua_function_Pointer_CImmunitiesItemTypeEquip__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip")); + (self->setValue)(*(CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip")); return 0; } @@ -41023,7 +42378,7 @@ static int tolua_function_Pointer_CImmunitySpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell")); + (self->setValue)(*(CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell")); return 0; } @@ -41047,7 +42402,7 @@ static int tolua_function_Pointer_CSchoolAndSecondaryDecrementing__setValue(lua_ { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing")); + (self->setValue)(*(CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing")); return 0; } @@ -41071,7 +42426,7 @@ static int tolua_function_Pointer_CPersistantEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect")); + (self->setValue)(*(CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect")); return 0; } @@ -41095,7 +42450,7 @@ static int tolua_function_Pointer_CColorRange__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange")); + (self->setValue)(*(CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange")); return 0; } @@ -41119,7 +42474,7 @@ static int tolua_function_Pointer_CColorEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect")); + (self->setValue)(*(CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect")); return 0; } @@ -41143,7 +42498,7 @@ static int tolua_function_Pointer_CSelectiveWeaponType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType")); + (self->setValue)(*(CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType")); return 0; } @@ -41167,7 +42522,7 @@ static int tolua_function_Pointer_CCriticalEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry")); + (self->setValue)(*(CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry")); return 0; } @@ -41191,7 +42546,7 @@ static int tolua_function_Pointer_CCreatureFileHeader__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCreatureFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileHeader")); + (self->setValue)(*(CCreatureFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileHeader")); return 0; } @@ -41215,7 +42570,7 @@ static int tolua_function_Pointer_CGameFile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameFile*)tolua_tousertype_dynamic(L, 2, 0, "CGameFile")); + (self->setValue)(*(CGameFile*)tolua_tousertype_dynamic(L, 2, 0, "CGameFile")); return 0; } @@ -41239,7 +42594,7 @@ static int tolua_function_Pointer_CSavedGamePartyCreature__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGamePartyCreature")); + (self->setValue)(*(CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGamePartyCreature")); return 0; } @@ -41263,7 +42618,7 @@ static int tolua_function_Pointer_CAbilityData__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAbilityData*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityData")); + (self->setValue)(*(CAbilityData*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityData")); return 0; } @@ -41287,7 +42642,7 @@ static int tolua_function_Pointer_CGameAbilityList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAbilityList*)tolua_tousertype_dynamic(L, 2, 0, "CGameAbilityList")); + (self->setValue)(*(CGameAbilityList*)tolua_tousertype_dynamic(L, 2, 0, "CGameAbilityList")); return 0; } @@ -41311,7 +42666,7 @@ static int tolua_function_Pointer_CSaveGameSlot__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSaveGameSlot*)tolua_tousertype_dynamic(L, 2, 0, "CSaveGameSlot")); + (self->setValue)(*(CSaveGameSlot*)tolua_tousertype_dynamic(L, 2, 0, "CSaveGameSlot")); return 0; } @@ -41335,7 +42690,7 @@ static int tolua_function_Pointer_MOSAICHEADERV2__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(MOSAICHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICHEADERV2")); + (self->setValue)(*(MOSAICHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICHEADERV2")); return 0; } @@ -41359,7 +42714,7 @@ static int tolua_function_Pointer_mosHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(mosHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "mosHeader_st")); + (self->setValue)(*(mosHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "mosHeader_st")); return 0; } @@ -41383,7 +42738,7 @@ static int tolua_function_Pointer_CGameOptions__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions")); + (self->setValue)(*(CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions")); return 0; } @@ -41407,7 +42762,7 @@ static int tolua_function_Pointer_CSnowFlake__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSnowFlake*)tolua_tousertype_dynamic(L, 2, 0, "CSnowFlake")); + (self->setValue)(*(CSnowFlake*)tolua_tousertype_dynamic(L, 2, 0, "CSnowFlake")); return 0; } @@ -41431,7 +42786,7 @@ static int tolua_function_Pointer_CRainDrop__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CRainDrop*)tolua_tousertype_dynamic(L, 2, 0, "CRainDrop")); + (self->setValue)(*(CRainDrop*)tolua_tousertype_dynamic(L, 2, 0, "CRainDrop")); return 0; } @@ -41455,7 +42810,7 @@ static int tolua_function_Pointer_unsigned_long__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned long returnVal = self->getValue(); + unsigned long returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -41464,7 +42819,7 @@ static int tolua_function_Pointer_unsigned_long__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -41488,7 +42843,7 @@ static int tolua_function_Pointer_CList_unsigned_long_unsigned_long____setValue( { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CList*)tolua_tousertype_dynamic(L, 2, 0, "CList")); + (self->setValue)(*(CList*)tolua_tousertype_dynamic(L, 2, 0, "CList")); return 0; } @@ -41512,7 +42867,7 @@ static int tolua_function_Pointer_CUIControlTextDisplay__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CUIControlTextDisplay*)tolua_tousertype_dynamic(L, 2, 0, "CUIControlTextDisplay")); + (self->setValue)(*(CUIControlTextDisplay*)tolua_tousertype_dynamic(L, 2, 0, "CUIControlTextDisplay")); return 0; } @@ -41536,7 +42891,7 @@ static int tolua_function_Pointer_CMapStringToString__CAssoc__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMapStringToString::CAssoc*)tolua_tousertype_dynamic(L, 2, 0, "CMapStringToString::CAssoc")); + (self->setValue)(*(CMapStringToString::CAssoc*)tolua_tousertype_dynamic(L, 2, 0, "CMapStringToString::CAssoc")); return 0; } @@ -41560,7 +42915,7 @@ static int tolua_function_Pointer_CMapStringToString__CAssoc___getValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMapStringToString::CAssoc* returnVal = self->getValue(); + CMapStringToString::CAssoc* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMapStringToString::CAssoc"); return 1; } @@ -41569,7 +42924,7 @@ static int tolua_function_Pointer_CMapStringToString__CAssoc___setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMapStringToString::CAssoc*)tolua_tousertype_dynamic(L, 2, 0, "CMapStringToString::CAssoc")); + (self->setValue)((CMapStringToString::CAssoc*)tolua_tousertype_dynamic(L, 2, 0, "CMapStringToString::CAssoc")); return 0; } @@ -41593,7 +42948,7 @@ static int tolua_function_Pointer_CAIScript___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIScript* returnVal = self->getValue(); + CAIScript* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIScript"); return 1; } @@ -41602,7 +42957,7 @@ static int tolua_function_Pointer_CAIScript___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIScript*)tolua_tousertype_dynamic(L, 2, 0, "CAIScript")); + (self->setValue)((CAIScript*)tolua_tousertype_dynamic(L, 2, 0, "CAIScript")); return 0; } @@ -41626,7 +42981,7 @@ static int tolua_function_Pointer_CSpawnPoint__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnPoint*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPoint")); + (self->setValue)(*(CSpawnPoint*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPoint")); return 0; } @@ -41650,7 +43005,7 @@ static int tolua_function_Pointer_CSpawnPointVar__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnPointVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPointVar")); + (self->setValue)(*(CSpawnPointVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPointVar")); return 0; } @@ -41674,7 +43029,7 @@ static int tolua_function_Pointer_CGameAnimationType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAnimationType*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimationType")); + (self->setValue)(*(CGameAnimationType*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimationType")); return 0; } @@ -41698,7 +43053,7 @@ static int tolua_function_Pointer_CBounceEntry__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry")); + (self->setValue)(*(CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry")); return 0; } @@ -41722,7 +43077,7 @@ static int tolua_function_Pointer_CSequenceSound__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound")); + (self->setValue)(*(CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound")); return 0; } @@ -41746,7 +43101,7 @@ static int tolua_function_Pointer_const_unsigned___int16__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const unsigned __int16 returnVal = self->getValue(); + const unsigned __int16 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -41771,7 +43126,7 @@ static int tolua_function_Pointer_CVidPalette__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidPalette*)tolua_tousertype_dynamic(L, 2, 0, "CVidPalette")); + (self->setValue)(*(CVidPalette*)tolua_tousertype_dynamic(L, 2, 0, "CVidPalette")); return 0; } @@ -41795,7 +43150,7 @@ static int tolua_function_Pointer_CInfinity__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfinity*)tolua_tousertype_dynamic(L, 2, 0, "CInfinity")); + (self->setValue)(*(CInfinity*)tolua_tousertype_dynamic(L, 2, 0, "CInfinity")); return 0; } @@ -41819,7 +43174,7 @@ static int tolua_function_Pointer___int16__getValue(lua_State* L) { Pointer<__int16>* self = (Pointer<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int16>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int16 returnVal = self->getValue(); + __int16 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -41828,7 +43183,7 @@ static int tolua_function_Pointer___int16__setValue(lua_State* L) { Pointer<__int16>* self = (Pointer<__int16>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int16>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger<__int16>(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger<__int16>(L, 2, "setValue")); return 0; } @@ -41852,7 +43207,7 @@ static int tolua_function_Pointer_Spell_ability_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Spell_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_ability_st")); + (self->setValue)(*(Spell_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_ability_st")); return 0; } @@ -41876,7 +43231,7 @@ static int tolua_function_Pointer_Spell_Header_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Spell_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_Header_st")); + (self->setValue)(*(Spell_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_Header_st")); return 0; } @@ -41900,7 +43255,7 @@ static int tolua_function_Pointer_CGameSprite___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameSprite* returnVal = self->getValue(); + CGameSprite* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameSprite"); return 1; } @@ -41909,7 +43264,7 @@ static int tolua_function_Pointer_CGameSprite___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->setValue)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -41933,7 +43288,7 @@ static int tolua_function_Pointer_CAreaFileProjectileObject__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileProjectileObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileProjectileObject")); + (self->setValue)(*(CAreaFileProjectileObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileProjectileObject")); return 0; } @@ -41957,7 +43312,7 @@ static int tolua_function_Pointer_SProjectileWrapper__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SProjectileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SProjectileWrapper")); + (self->setValue)(*(SProjectileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SProjectileWrapper")); return 0; } @@ -41981,7 +43336,7 @@ static int tolua_function_Pointer_CItem___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CItem* returnVal = self->getValue(); + CItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CItem"); return 1; } @@ -41990,7 +43345,7 @@ static int tolua_function_Pointer_CItem___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem")); + (self->setValue)((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem")); return 0; } @@ -42014,7 +43369,7 @@ static int tolua_function_Pointer_CGameContainer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameContainer*)tolua_tousertype_dynamic(L, 2, 0, "CGameContainer")); + (self->setValue)(*(CGameContainer*)tolua_tousertype_dynamic(L, 2, 0, "CGameContainer")); return 0; } @@ -42038,7 +43393,7 @@ static int tolua_function_Pointer_CParticle__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle")); + (self->setValue)(*(CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle")); return 0; } @@ -42062,7 +43417,7 @@ static int tolua_function_Pointer_CProjectileBAM__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileBAM*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAM")); + (self->setValue)(*(CProjectileBAM*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAM")); return 0; } @@ -42086,7 +43441,7 @@ static int tolua_function_Pointer_CGameDialogReply__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameDialogReply*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogReply")); + (self->setValue)(*(CGameDialogReply*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogReply")); return 0; } @@ -42110,7 +43465,7 @@ static int tolua_function_Pointer_CGameTrigger__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameTrigger*)tolua_tousertype_dynamic(L, 2, 0, "CGameTrigger")); + (self->setValue)(*(CGameTrigger*)tolua_tousertype_dynamic(L, 2, 0, "CGameTrigger")); return 0; } @@ -42134,7 +43489,7 @@ static int tolua_function_Pointer_CAreaFileContainer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileContainer*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileContainer")); + (self->setValue)(*(CAreaFileContainer*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileContainer")); return 0; } @@ -42158,7 +43513,7 @@ static int tolua_function_Pointer_CCreatureFileItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCreatureFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileItem")); + (self->setValue)(*(CCreatureFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileItem")); return 0; } @@ -42182,7 +43537,7 @@ static int tolua_function_Pointer_CAreaPoint__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaPoint")); + (self->setValue)(*(CAreaPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaPoint")); return 0; } @@ -42206,7 +43561,7 @@ static int tolua_function_Pointer_uiColumn__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiColumn*)tolua_tousertype_dynamic(L, 2, 0, "uiColumn")); + (self->setValue)(*(uiColumn*)tolua_tousertype_dynamic(L, 2, 0, "uiColumn")); return 0; } @@ -42230,7 +43585,7 @@ static int tolua_function_Pointer_CProjectileSegment__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileSegment*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSegment")); + (self->setValue)(*(CProjectileSegment*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSegment")); return 0; } @@ -42254,7 +43609,7 @@ static int tolua_function_Pointer_CProjectileNewScorcher__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileNewScorcher")); + (self->setValue)(*(CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileNewScorcher")); return 0; } @@ -42278,7 +43633,7 @@ static int tolua_function_Pointer_UI_Header_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UI_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_Header_st")); + (self->setValue)(*(UI_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_Header_st")); return 0; } @@ -42302,7 +43657,7 @@ static int tolua_function_Pointer_UI_PanelHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UI_PanelHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_PanelHeader_st")); + (self->setValue)(*(UI_PanelHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_PanelHeader_st")); return 0; } @@ -42326,7 +43681,7 @@ static int tolua_function_Pointer_UI_ControlTableEntry_st__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UI_ControlTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_ControlTableEntry_st")); + (self->setValue)(*(UI_ControlTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_ControlTableEntry_st")); return 0; } @@ -42350,7 +43705,39 @@ static int tolua_function_Pointer_PLTHeader_st__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(PLTHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "PLTHeader_st")); + (self->setValue)(*(PLTHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "PLTHeader_st")); + return 0; +} + +static int tolua_get_Pointer_const_SDL_MessageBoxButtonData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_MessageBoxButtonData"); + return 1; +} + +static int tolua_set_Pointer_const_SDL_MessageBoxButtonData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const SDL_MessageBoxButtonData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxButtonData"); + return 0; +} + +static int tolua_get_Pointer_const_SDL_MessageBoxColorScheme__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_MessageBoxColorScheme"); + return 1; +} + +static int tolua_set_Pointer_const_SDL_MessageBoxColorScheme__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const SDL_MessageBoxColorScheme*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxColorScheme"); return 0; } @@ -42374,7 +43761,7 @@ static int tolua_function_Pointer_CTimer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer")); + (self->setValue)(*(CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer")); return 0; } @@ -42398,10 +43785,219 @@ static int tolua_function_Pointer_CProjectileMushroom__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileMushroom*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMushroom")); + (self->setValue)(*(CProjectileMushroom*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMushroom")); + return 0; +} + +static int tolua_get_Pointer_HDC____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "HDC__"); + return 1; +} + +static int tolua_set_Pointer_HDC____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__"); + return 0; +} + +static int tolua_function_Pointer_HDC____setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__")); + return 0; +} + +static int tolua_get_Pointer_SDL_WindowShapeMode__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_WindowShapeMode"); + return 1; +} + +static int tolua_set_Pointer_SDL_WindowShapeMode__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeMode"); + return 0; +} + +static int tolua_function_Pointer_SDL_WindowShapeMode__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeMode")); + return 0; +} + +static int tolua_get_Pointer_SDL_SysWMinfo__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_SysWMinfo"); + return 1; +} + +static int tolua_set_Pointer_SDL_SysWMinfo__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo"); + return 0; +} + +static int tolua_function_Pointer_SDL_SysWMinfo__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo")); + return 0; +} + +static int tolua_get_Pointer_const_SDL_MessageBoxData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_MessageBoxData"); + return 1; +} + +static int tolua_set_Pointer_const_SDL_MessageBoxData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxData"); + return 0; +} + +static int tolua_get_Pointer_SDL_GLDriverData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_GLDriverData"); + return 1; +} + +static int tolua_set_Pointer_SDL_GLDriverData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_GLDriverData"); + return 0; +} + +static int tolua_function_Pointer_SDL_GLDriverData__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_GLDriverData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_GLDriverData")); return 0; } +static int tolua_get_Pointer_SDL_EGL_VideoData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_EGL_VideoData"); + return 1; +} + +static int tolua_set_Pointer_SDL_EGL_VideoData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_EGL_VideoData"); + return 0; +} + +static int tolua_function_Pointer_SDL_EGL_VideoData__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_EGL_VideoData")); + return 0; +} + +static int tolua_get_Pointer_SDL_PrivateGLESData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_PrivateGLESData"); + return 1; +} + +static int tolua_set_Pointer_SDL_PrivateGLESData__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_PrivateGLESData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PrivateGLESData"); + return 0; +} + +static int tolua_function_Pointer_SDL_PrivateGLESData__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_PrivateGLESData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PrivateGLESData")); + return 0; +} + +static int tolua_get_Pointer_HGLRC____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "HGLRC__"); + return 1; +} + +static int tolua_set_Pointer_HGLRC____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (HGLRC__*)tolua_tousertype_dynamic(L, 2, 0, "HGLRC__"); + return 0; +} + +static int tolua_function_Pointer_HGLRC____setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(HGLRC__*)tolua_tousertype_dynamic(L, 2, 0, "HGLRC__")); + return 0; +} + +static int tolua_get_Pointer_const_float__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_const_float__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const float*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_const_float__getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + const float returnVal = (self->getValue)(); + tolua_pushnumber(L, (lua_Number)returnVal); + return 1; +} + static int tolua_get_Pointer_VariableArray_CString___reference(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); @@ -42422,7 +44018,7 @@ static int tolua_function_Pointer_VariableArray_CString___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -42446,7 +44042,7 @@ static int tolua_function_Pointer_VariableArray_CAIId____setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -42470,7 +44066,7 @@ static int tolua_function_Pointer_VariableArray_int___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -42494,7 +44090,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long___CNode__setValue( { Pointer::CNode>* self = (Pointer::CNode>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::CNode>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->setValue)(*(CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -42518,7 +44114,7 @@ static int tolua_function_Pointer_VariableArray_void____setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -42542,7 +44138,7 @@ static int tolua_function_Pointer_CScreenStoreItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem")); + (self->setValue)(*(CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem")); return 0; } @@ -42566,7 +44162,7 @@ static int tolua_function_Pointer_CSoundChannel__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSoundChannel*)tolua_tousertype_dynamic(L, 2, 0, "CSoundChannel")); + (self->setValue)(*(CSoundChannel*)tolua_tousertype_dynamic(L, 2, 0, "CSoundChannel")); return 0; } @@ -42590,7 +44186,7 @@ static int tolua_function_Pointer_CVoice__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice")); + (self->setValue)(*(CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice")); return 0; } @@ -42614,7 +44210,7 @@ static int tolua_function_Pointer_void____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - void** returnVal = self->getValue(); + void** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VoidPointer"); return 1; } @@ -42623,7 +44219,7 @@ static int tolua_function_Pointer_void____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((void**)tolua_tousertype_dynamic(L, 2, 0, "VoidPointer")); + (self->setValue)((void**)tolua_tousertype_dynamic(L, 2, 0, "VoidPointer")); return 0; } @@ -42647,7 +44243,7 @@ static int tolua_function_Pointer_const_CRes___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CRes* returnVal = self->getValue(); + const CRes* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CRes"); return 1; } @@ -42672,7 +44268,7 @@ static int tolua_function_Pointer_CRes___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CRes* returnVal = self->getValue(); + CRes* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CRes"); return 1; } @@ -42681,7 +44277,7 @@ static int tolua_function_Pointer_CRes___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CRes*)tolua_tousertype_dynamic(L, 2, 0, "CRes")); + (self->setValue)((CRes*)tolua_tousertype_dynamic(L, 2, 0, "CRes")); return 0; } @@ -42705,7 +44301,7 @@ static int tolua_function_Pointer_const_CResRef___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CResRef* returnVal = self->getValue(); + const CResRef* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -42730,7 +44326,7 @@ static int tolua_function_Pointer_uiMenu___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uiMenu* returnVal = self->getValue(); + uiMenu* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "uiMenu"); return 1; } @@ -42739,7 +44335,40 @@ static int tolua_function_Pointer_uiMenu___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu")); + (self->setValue)((uiMenu*)tolua_tousertype_dynamic(L, 2, 0, "uiMenu")); + return 0; +} + +static int tolua_get_Pointer_SDL_VideoDisplay___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_VideoDisplay___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_VideoDisplay**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_VideoDisplay___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_VideoDisplay* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_VideoDisplay"); + return 1; +} + +static int tolua_function_Pointer_SDL_VideoDisplay___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDisplay")); return 0; } @@ -42763,7 +44392,7 @@ static int tolua_function_Pointer_SDL_Window___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Window* returnVal = self->getValue(); + SDL_Window* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Window"); return 1; } @@ -42772,7 +44401,7 @@ static int tolua_function_Pointer_SDL_Window___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window")); + (self->setValue)((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window")); return 0; } @@ -42796,7 +44425,7 @@ static int tolua_function_Pointer_CString___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CString* returnVal = self->getValue(); + CString* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -42805,7 +44434,7 @@ static int tolua_function_Pointer_CString___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->setValue)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -42829,7 +44458,7 @@ static int tolua_function_Pointer_CResText___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResText* returnVal = self->getValue(); + CResText* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResText"); return 1; } @@ -42838,7 +44467,7 @@ static int tolua_function_Pointer_CResText___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResText*)tolua_tousertype_dynamic(L, 2, 0, "CResText")); + (self->setValue)((CResText*)tolua_tousertype_dynamic(L, 2, 0, "CResText")); return 0; } @@ -42862,7 +44491,7 @@ static int tolua_function_Pointer_lua_State___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - lua_State* returnVal = self->getValue(); + lua_State* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "lua_State"); return 1; } @@ -42871,7 +44500,7 @@ static int tolua_function_Pointer_lua_State___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); + (self->setValue)((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); return 0; } @@ -42895,7 +44524,7 @@ static int tolua_function_Pointer_const_SDL_Rect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const SDL_Rect* returnVal = self->getValue(); + const SDL_Rect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Rect"); return 1; } @@ -42920,7 +44549,7 @@ static int tolua_function_Pointer_const_letter_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const letter_t* returnVal = self->getValue(); + const letter_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "letter_t"); return 1; } @@ -42945,7 +44574,7 @@ static int tolua_function_Pointer_font_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - font_t* returnVal = self->getValue(); + font_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "font_t"); return 1; } @@ -42954,7 +44583,7 @@ static int tolua_function_Pointer_font_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((font_t*)tolua_tousertype_dynamic(L, 2, 0, "font_t")); + (self->setValue)((font_t*)tolua_tousertype_dynamic(L, 2, 0, "font_t")); return 0; } @@ -42978,7 +44607,7 @@ static int tolua_function_Pointer_const_CRect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CRect* returnVal = self->getValue(); + const CRect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CRect"); return 1; } @@ -43003,7 +44632,7 @@ static int tolua_function_Pointer_SDL_Rect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Rect* returnVal = self->getValue(); + SDL_Rect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Rect"); return 1; } @@ -43012,7 +44641,7 @@ static int tolua_function_Pointer_SDL_Rect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Rect*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Rect")); + (self->setValue)((SDL_Rect*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Rect")); return 0; } @@ -43036,7 +44665,7 @@ static int tolua_function_Pointer_SDL_Event___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Event* returnVal = self->getValue(); + SDL_Event* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Event"); return 1; } @@ -43045,7 +44674,7 @@ static int tolua_function_Pointer_SDL_Event___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Event*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Event")); + (self->setValue)((SDL_Event*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Event")); return 0; } @@ -43069,7 +44698,7 @@ static int tolua_function_Pointer_FILE___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - FILE* returnVal = self->getValue(); + FILE* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "FILE"); return 1; } @@ -43078,7 +44707,7 @@ static int tolua_function_Pointer_FILE___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((FILE*)tolua_tousertype_dynamic(L, 2, 0, "FILE")); + (self->setValue)((FILE*)tolua_tousertype_dynamic(L, 2, 0, "FILE")); return 0; } @@ -43102,7 +44731,7 @@ static int tolua_function_Pointer__iobuf___getValue(lua_State* L) { Pointer<_iobuf*>* self = (Pointer<_iobuf*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_iobuf*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _iobuf* returnVal = self->getValue(); + _iobuf* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "_iobuf"); return 1; } @@ -43111,7 +44740,7 @@ static int tolua_function_Pointer__iobuf___setValue(lua_State* L) { Pointer<_iobuf*>* self = (Pointer<_iobuf*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_iobuf*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_iobuf*)tolua_tousertype_dynamic(L, 2, 0, "_iobuf")); + (self->setValue)((_iobuf*)tolua_tousertype_dynamic(L, 2, 0, "_iobuf")); return 0; } @@ -43135,7 +44764,7 @@ static int tolua_function_Pointer_uiVariant___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uiVariant* returnVal = self->getValue(); + uiVariant* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "uiVariant"); return 1; } @@ -43144,7 +44773,7 @@ static int tolua_function_Pointer_uiVariant___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uiVariant*)tolua_tousertype_dynamic(L, 2, 0, "uiVariant")); + (self->setValue)((uiVariant*)tolua_tousertype_dynamic(L, 2, 0, "uiVariant")); return 0; } @@ -43168,7 +44797,7 @@ static int tolua_function_Pointer_letter_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - letter_t* returnVal = self->getValue(); + letter_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "letter_t"); return 1; } @@ -43177,7 +44806,7 @@ static int tolua_function_Pointer_letter_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((letter_t*)tolua_tousertype_dynamic(L, 2, 0, "letter_t")); + (self->setValue)((letter_t*)tolua_tousertype_dynamic(L, 2, 0, "letter_t")); return 0; } @@ -43201,7 +44830,7 @@ static int tolua_function_Pointer_int___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - int* returnVal = self->getValue(); + int* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -43210,7 +44839,7 @@ static int tolua_function_Pointer_int___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -43234,7 +44863,7 @@ static int tolua_function_Pointer_adjustmentData_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - adjustmentData_t* returnVal = self->getValue(); + adjustmentData_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "adjustmentData_t"); return 1; } @@ -43243,7 +44872,7 @@ static int tolua_function_Pointer_adjustmentData_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((adjustmentData_t*)tolua_tousertype_dynamic(L, 2, 0, "adjustmentData_t")); + (self->setValue)((adjustmentData_t*)tolua_tousertype_dynamic(L, 2, 0, "adjustmentData_t")); return 0; } @@ -43267,7 +44896,7 @@ static int tolua_function_Pointer_CBaldurChitin___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CBaldurChitin* returnVal = self->getValue(); + CBaldurChitin* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CBaldurChitin"); return 1; } @@ -43276,7 +44905,7 @@ static int tolua_function_Pointer_CBaldurChitin___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CBaldurChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurChitin")); + (self->setValue)((CBaldurChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurChitin")); return 0; } @@ -43300,7 +44929,7 @@ static int tolua_function_Pointer_const_GLchar___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const GLchar* returnVal = self->getValue(); + const GLchar* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "GLchar"); return 1; } @@ -43325,7 +44954,7 @@ static int tolua_function_Pointer_CPlex___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPlex* returnVal = self->getValue(); + CPlex* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPlex"); return 1; } @@ -43334,7 +44963,7 @@ static int tolua_function_Pointer_CPlex___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPlex*)tolua_tousertype_dynamic(L, 2, 0, "CPlex")); + (self->setValue)((CPlex*)tolua_tousertype_dynamic(L, 2, 0, "CPlex")); return 0; } @@ -43358,7 +44987,7 @@ static int tolua_function_Pointer_CResRef___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResRef* returnVal = self->getValue(); + CResRef* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -43367,7 +44996,7 @@ static int tolua_function_Pointer_CResRef___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); + (self->setValue)((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); return 0; } @@ -43391,7 +45020,7 @@ static int tolua_function_Pointer_IDirect3DTexture9___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDirect3DTexture9* returnVal = self->getValue(); + IDirect3DTexture9* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDirect3DTexture9"); return 1; } @@ -43400,7 +45029,7 @@ static int tolua_function_Pointer_IDirect3DTexture9___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDirect3DTexture9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DTexture9")); + (self->setValue)((IDirect3DTexture9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DTexture9")); return 0; } @@ -43424,7 +45053,7 @@ static int tolua_function_Pointer_const_CString___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CString* returnVal = self->getValue(); + const CString* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -43449,7 +45078,7 @@ static int tolua_function_Pointer_CAIId___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIId* returnVal = self->getValue(); + CAIId* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIId"); return 1; } @@ -43458,7 +45087,7 @@ static int tolua_function_Pointer_CAIId___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId")); + (self->setValue)((CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId")); return 0; } @@ -43482,7 +45111,7 @@ static int tolua_function_Pointer_CGameAIBase___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameAIBase* returnVal = self->getValue(); + CGameAIBase* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameAIBase"); return 1; } @@ -43491,7 +45120,7 @@ static int tolua_function_Pointer_CGameAIBase___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); + (self->setValue)((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); return 0; } @@ -43515,7 +45144,7 @@ static int tolua_function_Pointer_const_CAIObjectType___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CAIObjectType* returnVal = self->getValue(); + const CAIObjectType* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -43540,7 +45169,7 @@ static int tolua_function_Pointer_CAreaUserNote___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAreaUserNote* returnVal = self->getValue(); + CAreaUserNote* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAreaUserNote"); return 1; } @@ -43549,7 +45178,7 @@ static int tolua_function_Pointer_CAreaUserNote___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote")); + (self->setValue)((CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote")); return 0; } @@ -43573,7 +45202,7 @@ static int tolua_function_Pointer_CGameDialogEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameDialogEntry* returnVal = self->getValue(); + CGameDialogEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameDialogEntry"); return 1; } @@ -43582,7 +45211,7 @@ static int tolua_function_Pointer_CGameDialogEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameDialogEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogEntry")); + (self->setValue)((CGameDialogEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogEntry")); return 0; } @@ -43606,7 +45235,7 @@ static int tolua_function_Pointer_CGameEffect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameEffect* returnVal = self->getValue(); + CGameEffect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffect"); return 1; } @@ -43615,7 +45244,7 @@ static int tolua_function_Pointer_CGameEffect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); + (self->setValue)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); return 0; } @@ -43639,7 +45268,7 @@ static int tolua_function_Pointer_Item_effect_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Item_effect_st* returnVal = self->getValue(); + Item_effect_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Item_effect_st"); return 1; } @@ -43648,7 +45277,7 @@ static int tolua_function_Pointer_Item_effect_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Item_effect_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_effect_st")); + (self->setValue)((Item_effect_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_effect_st")); return 0; } @@ -43672,7 +45301,7 @@ static int tolua_function_Pointer_const_CPoint___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CPoint* returnVal = self->getValue(); + const CPoint* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -43697,7 +45326,7 @@ static int tolua_function_Pointer_CGameEffectBase___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameEffectBase* returnVal = self->getValue(); + CGameEffectBase* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffectBase"); return 1; } @@ -43706,7 +45335,7 @@ static int tolua_function_Pointer_CGameEffectBase___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameEffectBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectBase")); + (self->setValue)((CGameEffectBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectBase")); return 0; } @@ -43730,7 +45359,7 @@ static int tolua_function_Pointer_CObject___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CObject* returnVal = self->getValue(); + CObject* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CObject"); return 1; } @@ -43739,7 +45368,7 @@ static int tolua_function_Pointer_CObject___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CObject*)tolua_tousertype_dynamic(L, 2, 0, "CObject")); + (self->setValue)((CObject*)tolua_tousertype_dynamic(L, 2, 0, "CObject")); return 0; } @@ -43763,7 +45392,7 @@ static int tolua_function_Pointer_CObList__CNode___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CObList::CNode* returnVal = self->getValue(); + CObList::CNode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CObList::CNode"); return 1; } @@ -43772,7 +45401,7 @@ static int tolua_function_Pointer_CObList__CNode___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CObList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CObList::CNode")); + (self->setValue)((CObList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CObList::CNode")); return 0; } @@ -43796,7 +45425,7 @@ static int tolua_function_Pointer_CGameObject____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameObject** returnVal = self->getValue(); + CGameObject** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -43805,7 +45434,7 @@ static int tolua_function_Pointer_CGameObject____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameObject**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CGameObject**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -43829,7 +45458,7 @@ static int tolua_function_Pointer_CAIObjectType___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIObjectType* returnVal = self->getValue(); + CAIObjectType* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -43838,7 +45467,7 @@ static int tolua_function_Pointer_CAIObjectType___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + (self->setValue)((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); return 0; } @@ -43862,7 +45491,7 @@ static int tolua_function_Pointer_CAIAction___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIAction* returnVal = self->getValue(); + CAIAction* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIAction"); return 1; } @@ -43871,7 +45500,7 @@ static int tolua_function_Pointer_CAIAction___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + (self->setValue)((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); return 0; } @@ -43895,7 +45524,7 @@ static int tolua_function_Pointer_CAITrigger___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAITrigger* returnVal = self->getValue(); + CAITrigger* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); return 1; } @@ -43904,7 +45533,7 @@ static int tolua_function_Pointer_CAITrigger___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); + (self->setValue)((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); return 0; } @@ -43928,7 +45557,7 @@ static int tolua_function_Pointer_CGameTimer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameTimer* returnVal = self->getValue(); + CGameTimer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameTimer"); return 1; } @@ -43937,7 +45566,7 @@ static int tolua_function_Pointer_CGameTimer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer")); + (self->setValue)((CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer")); return 0; } @@ -43961,7 +45590,7 @@ static int tolua_function_Pointer_byte___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - byte* returnVal = self->getValue(); + byte* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -43970,7 +45599,7 @@ static int tolua_function_Pointer_byte___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((byte*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((byte*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -43994,7 +45623,7 @@ static int tolua_function_Pointer_CAbilityId___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAbilityId* returnVal = self->getValue(); + CAbilityId* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAbilityId"); return 1; } @@ -44003,7 +45632,7 @@ static int tolua_function_Pointer_CAbilityId___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAbilityId*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityId")); + (self->setValue)((CAbilityId*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityId")); return 0; } @@ -44027,7 +45656,7 @@ static int tolua_function_Pointer_CGameEffectDamage___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameEffectDamage* returnVal = self->getValue(); + CGameEffectDamage* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffectDamage"); return 1; } @@ -44036,7 +45665,7 @@ static int tolua_function_Pointer_CGameEffectDamage___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameEffectDamage*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectDamage")); + (self->setValue)((CGameEffectDamage*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectDamage")); return 0; } @@ -44060,7 +45689,7 @@ static int tolua_function_Pointer_CDerivedStats___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CDerivedStats* returnVal = self->getValue(); + CDerivedStats* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CDerivedStats"); return 1; } @@ -44069,7 +45698,7 @@ static int tolua_function_Pointer_CDerivedStats___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CDerivedStats*)tolua_tousertype_dynamic(L, 2, 0, "CDerivedStats")); + (self->setValue)((CDerivedStats*)tolua_tousertype_dynamic(L, 2, 0, "CDerivedStats")); return 0; } @@ -44093,7 +45722,7 @@ static int tolua_function_Pointer_CSpell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpell* returnVal = self->getValue(); + CSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpell"); return 1; } @@ -44102,7 +45731,7 @@ static int tolua_function_Pointer_CSpell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpell*)tolua_tousertype_dynamic(L, 2, 0, "CSpell")); + (self->setValue)((CSpell*)tolua_tousertype_dynamic(L, 2, 0, "CSpell")); return 0; } @@ -44126,7 +45755,7 @@ static int tolua_function_Pointer_CGameButtonList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameButtonList* returnVal = self->getValue(); + CGameButtonList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameButtonList"); return 1; } @@ -44135,7 +45764,7 @@ static int tolua_function_Pointer_CGameButtonList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameButtonList*)tolua_tousertype_dynamic(L, 2, 0, "CGameButtonList")); + (self->setValue)((CGameButtonList*)tolua_tousertype_dynamic(L, 2, 0, "CGameButtonList")); return 0; } @@ -44159,7 +45788,7 @@ static int tolua_function_Pointer_CCreatureFileKnownSpell___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCreatureFileKnownSpell* returnVal = self->getValue(); + CCreatureFileKnownSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); return 1; } @@ -44168,7 +45797,7 @@ static int tolua_function_Pointer_CCreatureFileKnownSpell___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell")); + (self->setValue)((CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell")); return 0; } @@ -44192,7 +45821,7 @@ static int tolua_function_Pointer_Item_ability_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Item_ability_st* returnVal = self->getValue(); + Item_ability_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Item_ability_st"); return 1; } @@ -44201,7 +45830,7 @@ static int tolua_function_Pointer_Item_ability_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Item_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_ability_st")); + (self->setValue)((Item_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_ability_st")); return 0; } @@ -44225,7 +45854,7 @@ static int tolua_function_Pointer_short___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - short* returnVal = self->getValue(); + short* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -44234,7 +45863,7 @@ static int tolua_function_Pointer_short___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((short*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((short*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -44258,7 +45887,7 @@ static int tolua_function_Pointer_CButtonData___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CButtonData* returnVal = self->getValue(); + CButtonData* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CButtonData"); return 1; } @@ -44267,7 +45896,7 @@ static int tolua_function_Pointer_CButtonData___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData")); + (self->setValue)((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData")); return 0; } @@ -44291,7 +45920,7 @@ static int tolua_function_Pointer_CCreatureFileMemorizedSpellLevel___getValue(lu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCreatureFileMemorizedSpellLevel* returnVal = self->getValue(); + CCreatureFileMemorizedSpellLevel* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpellLevel"); return 1; } @@ -44300,7 +45929,7 @@ static int tolua_function_Pointer_CCreatureFileMemorizedSpellLevel___setValue(lu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpellLevel")); + (self->setValue)((CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -44324,7 +45953,7 @@ static int tolua_function_Pointer_CCreatureFileMemorizedSpell___getValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCreatureFileMemorizedSpell* returnVal = self->getValue(); + CCreatureFileMemorizedSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpell"); return 1; } @@ -44333,7 +45962,7 @@ static int tolua_function_Pointer_CCreatureFileMemorizedSpell___setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell")); + (self->setValue)((CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell")); return 0; } @@ -44357,7 +45986,7 @@ static int tolua_function_Pointer_unsigned___int16___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int16* returnVal = self->getValue(); + unsigned __int16* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -44366,7 +45995,7 @@ static int tolua_function_Pointer_unsigned___int16___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned __int16*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); + (self->setValue)((unsigned __int16*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); return 0; } @@ -44390,7 +46019,7 @@ static int tolua_function_Pointer_tagPOINT___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - tagPOINT* returnVal = self->getValue(); + tagPOINT* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "tagPOINT"); return 1; } @@ -44399,7 +46028,7 @@ static int tolua_function_Pointer_tagPOINT___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((tagPOINT*)tolua_tousertype_dynamic(L, 2, 0, "tagPOINT")); + (self->setValue)((tagPOINT*)tolua_tousertype_dynamic(L, 2, 0, "tagPOINT")); return 0; } @@ -44423,7 +46052,7 @@ static int tolua_function_Pointer_long___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - long* returnVal = self->getValue(); + long* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -44432,7 +46061,7 @@ static int tolua_function_Pointer_long___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -44456,7 +46085,7 @@ static int tolua_function_Pointer_CSearchRequest___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSearchRequest* returnVal = self->getValue(); + CSearchRequest* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSearchRequest"); return 1; } @@ -44465,7 +46094,7 @@ static int tolua_function_Pointer_CSearchRequest___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest")); + (self->setValue)((CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest")); return 0; } @@ -44489,7 +46118,7 @@ static int tolua_function_Pointer_CBlood___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CBlood* returnVal = self->getValue(); + CBlood* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CBlood"); return 1; } @@ -44498,7 +46127,7 @@ static int tolua_function_Pointer_CBlood___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood")); + (self->setValue)((CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood")); return 0; } @@ -44522,7 +46151,7 @@ static int tolua_function_Pointer___POSITION___getValue(lua_State* L) { Pointer<__POSITION*>* self = (Pointer<__POSITION*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__POSITION*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __POSITION* returnVal = self->getValue(); + __POSITION* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "__POSITION"); return 1; } @@ -44531,7 +46160,7 @@ static int tolua_function_Pointer___POSITION___setValue(lua_State* L) { Pointer<__POSITION*>* self = (Pointer<__POSITION*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__POSITION*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); + (self->setValue)((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); return 0; } @@ -44555,7 +46184,7 @@ static int tolua_function_Pointer_CProjectile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CProjectile* returnVal = self->getValue(); + CProjectile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CProjectile"); return 1; } @@ -44564,7 +46193,7 @@ static int tolua_function_Pointer_CProjectile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile")); + (self->setValue)((CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile")); return 0; } @@ -44588,7 +46217,7 @@ static int tolua_function_Pointer_STR_RES___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - STR_RES* returnVal = self->getValue(); + STR_RES* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "STR_RES"); return 1; } @@ -44597,7 +46226,7 @@ static int tolua_function_Pointer_STR_RES___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((STR_RES*)tolua_tousertype_dynamic(L, 2, 0, "STR_RES")); + (self->setValue)((STR_RES*)tolua_tousertype_dynamic(L, 2, 0, "STR_RES")); return 0; } @@ -44621,7 +46250,7 @@ static int tolua_function_Pointer_CPortraitIcon___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPortraitIcon* returnVal = self->getValue(); + CPortraitIcon* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPortraitIcon"); return 1; } @@ -44630,7 +46259,7 @@ static int tolua_function_Pointer_CPortraitIcon___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon")); + (self->setValue)((CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon")); return 0; } @@ -44654,7 +46283,7 @@ static int tolua_function_Pointer_CVariableHash___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVariableHash* returnVal = self->getValue(); + CVariableHash* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVariableHash"); return 1; } @@ -44663,7 +46292,7 @@ static int tolua_function_Pointer_CVariableHash___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVariableHash*)tolua_tousertype_dynamic(L, 2, 0, "CVariableHash")); + (self->setValue)((CVariableHash*)tolua_tousertype_dynamic(L, 2, 0, "CVariableHash")); return 0; } @@ -44687,7 +46316,7 @@ static int tolua_function_Pointer_CPoint___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPoint* returnVal = self->getValue(); + CPoint* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -44696,7 +46325,7 @@ static int tolua_function_Pointer_CPoint___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->setValue)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -44720,7 +46349,7 @@ static int tolua_function_Pointer_CFeedbackEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CFeedbackEntry* returnVal = self->getValue(); + CFeedbackEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CFeedbackEntry"); return 1; } @@ -44729,7 +46358,7 @@ static int tolua_function_Pointer_CFeedbackEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry")); + (self->setValue)((CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry")); return 0; } @@ -44753,7 +46382,7 @@ static int tolua_function_Pointer_CGameSprite__GroundItem___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameSprite::GroundItem* returnVal = self->getValue(); + CGameSprite::GroundItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameSprite::GroundItem"); return 1; } @@ -44762,7 +46391,7 @@ static int tolua_function_Pointer_CGameSprite__GroundItem___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem")); + (self->setValue)((CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem")); return 0; } @@ -44786,7 +46415,7 @@ static int tolua_function_Pointer_CGameArea___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameArea* returnVal = self->getValue(); + CGameArea* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameArea"); return 1; } @@ -44795,7 +46424,7 @@ static int tolua_function_Pointer_CGameArea___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea")); + (self->setValue)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea")); return 0; } @@ -44819,7 +46448,7 @@ static int tolua_function_Pointer_CPathSearch___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPathSearch* returnVal = self->getValue(); + CPathSearch* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPathSearch"); return 1; } @@ -44828,7 +46457,7 @@ static int tolua_function_Pointer_CPathSearch___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPathSearch*)tolua_tousertype_dynamic(L, 2, 0, "CPathSearch")); + (self->setValue)((CPathSearch*)tolua_tousertype_dynamic(L, 2, 0, "CPathSearch")); return 0; } @@ -44852,7 +46481,7 @@ static int tolua_function_Pointer_CPathNode____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPathNode** returnVal = self->getValue(); + CPathNode** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -44861,7 +46490,7 @@ static int tolua_function_Pointer_CPathNode____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPathNode**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CPathNode**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -44885,7 +46514,7 @@ static int tolua_function_Pointer_SAreaFileWrapper___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SAreaFileWrapper* returnVal = self->getValue(); + SAreaFileWrapper* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SAreaFileWrapper"); return 1; } @@ -44894,7 +46523,7 @@ static int tolua_function_Pointer_SAreaFileWrapper___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper")); + (self->setValue)((SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper")); return 0; } @@ -44918,7 +46547,7 @@ static int tolua_function_Pointer_CAIScriptFile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIScriptFile* returnVal = self->getValue(); + CAIScriptFile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIScriptFile"); return 1; } @@ -44927,7 +46556,7 @@ static int tolua_function_Pointer_CAIScriptFile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIScriptFile*)tolua_tousertype_dynamic(L, 2, 0, "CAIScriptFile")); + (self->setValue)((CAIScriptFile*)tolua_tousertype_dynamic(L, 2, 0, "CAIScriptFile")); return 0; } @@ -44951,7 +46580,7 @@ static int tolua_function_Pointer_CStore___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CStore* returnVal = self->getValue(); + CStore* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CStore"); return 1; } @@ -44960,7 +46589,7 @@ static int tolua_function_Pointer_CStore___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CStore*)tolua_tousertype_dynamic(L, 2, 0, "CStore")); + (self->setValue)((CStore*)tolua_tousertype_dynamic(L, 2, 0, "CStore")); return 0; } @@ -44984,7 +46613,7 @@ static int tolua_function_Pointer_CSavedGameStoredLocation___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSavedGameStoredLocation* returnVal = self->getValue(); + CSavedGameStoredLocation* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSavedGameStoredLocation"); return 1; } @@ -44993,7 +46622,7 @@ static int tolua_function_Pointer_CSavedGameStoredLocation___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation")); + (self->setValue)((CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation")); return 0; } @@ -45017,7 +46646,7 @@ static int tolua_function_Pointer_CInfTileSet___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CInfTileSet* returnVal = self->getValue(); + CInfTileSet* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CInfTileSet"); return 1; } @@ -45026,7 +46655,7 @@ static int tolua_function_Pointer_CInfTileSet___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CInfTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CInfTileSet")); + (self->setValue)((CInfTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CInfTileSet")); return 0; } @@ -45050,7 +46679,7 @@ static int tolua_function_Pointer_CResWED___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResWED* returnVal = self->getValue(); + CResWED* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResWED"); return 1; } @@ -45059,7 +46688,7 @@ static int tolua_function_Pointer_CResWED___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResWED*)tolua_tousertype_dynamic(L, 2, 0, "CResWED")); + (self->setValue)((CResWED*)tolua_tousertype_dynamic(L, 2, 0, "CResWED")); return 0; } @@ -45083,7 +46712,7 @@ static int tolua_function_Pointer_CVRamPool___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVRamPool* returnVal = self->getValue(); + CVRamPool* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVRamPool"); return 1; } @@ -45092,7 +46721,7 @@ static int tolua_function_Pointer_CVRamPool___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVRamPool*)tolua_tousertype_dynamic(L, 2, 0, "CVRamPool")); + (self->setValue)((CVRamPool*)tolua_tousertype_dynamic(L, 2, 0, "CVRamPool")); return 0; } @@ -45116,7 +46745,7 @@ static int tolua_function_Pointer_CVidMode___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVidMode* returnVal = self->getValue(); + CVidMode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVidMode"); return 1; } @@ -45125,7 +46754,7 @@ static int tolua_function_Pointer_CVidMode___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVidMode*)tolua_tousertype_dynamic(L, 2, 0, "CVidMode")); + (self->setValue)((CVidMode*)tolua_tousertype_dynamic(L, 2, 0, "CVidMode")); return 0; } @@ -45149,7 +46778,7 @@ static int tolua_function_Pointer_CAOEEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAOEEntry* returnVal = self->getValue(); + CAOEEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAOEEntry"); return 1; } @@ -45158,7 +46787,7 @@ static int tolua_function_Pointer_CAOEEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry")); + (self->setValue)((CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry")); return 0; } @@ -45182,7 +46811,7 @@ static int tolua_function_Pointer_ushort___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ushort* returnVal = self->getValue(); + ushort* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -45191,7 +46820,7 @@ static int tolua_function_Pointer_ushort___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ushort*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((ushort*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -45215,7 +46844,7 @@ static int tolua_function_Pointer_const_unsigned___int8___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const unsigned __int8* returnVal = self->getValue(); + const unsigned __int8* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -45240,7 +46869,7 @@ static int tolua_function_Pointer_const_byte___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const byte* returnVal = self->getValue(); + const byte* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -45265,7 +46894,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long____getValue(lua_St { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList* returnVal = self->getValue(); + CTypedPtrList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -45274,7 +46903,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long____setValue(lua_St { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -45298,7 +46927,7 @@ static int tolua_function_Pointer_CGameAreaClairvoyanceEntry___getValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameAreaClairvoyanceEntry* returnVal = self->getValue(); + CGameAreaClairvoyanceEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameAreaClairvoyanceEntry"); return 1; } @@ -45307,7 +46936,7 @@ static int tolua_function_Pointer_CGameAreaClairvoyanceEntry___setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); + (self->setValue)((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); return 0; } @@ -45331,7 +46960,7 @@ static int tolua_function_Pointer_CAreaFileCharacterEntryPoint___getValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAreaFileCharacterEntryPoint* returnVal = self->getValue(); + CAreaFileCharacterEntryPoint* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAreaFileCharacterEntryPoint"); return 1; } @@ -45340,7 +46969,7 @@ static int tolua_function_Pointer_CAreaFileCharacterEntryPoint___setValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint")); + (self->setValue)((CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint")); return 0; } @@ -45364,7 +46993,7 @@ static int tolua_function_Pointer_CInfGame___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CInfGame* returnVal = self->getValue(); + CInfGame* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CInfGame"); return 1; } @@ -45373,7 +47002,7 @@ static int tolua_function_Pointer_CInfGame___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CInfGame*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfGame")); + (self->setValue)((CInfGame*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfGame")); return 0; } @@ -45397,7 +47026,7 @@ static int tolua_function_Pointer_CVidBitmap___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVidBitmap* returnVal = self->getValue(); + CVidBitmap* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVidBitmap"); return 1; } @@ -45406,7 +47035,7 @@ static int tolua_function_Pointer_CVidBitmap___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVidBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CVidBitmap")); + (self->setValue)((CVidBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CVidBitmap")); return 0; } @@ -45430,7 +47059,7 @@ static int tolua_function_Pointer_CObjectMarker___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CObjectMarker* returnVal = self->getValue(); + CObjectMarker* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CObjectMarker"); return 1; } @@ -45439,7 +47068,7 @@ static int tolua_function_Pointer_CObjectMarker___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CObjectMarker*)tolua_tousertype_dynamic(L, 2, 0, "CObjectMarker")); + (self->setValue)((CObjectMarker*)tolua_tousertype_dynamic(L, 2, 0, "CObjectMarker")); return 0; } @@ -45463,7 +47092,7 @@ static int tolua_function_Pointer_CTiledObject___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTiledObject* returnVal = self->getValue(); + CTiledObject* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTiledObject"); return 1; } @@ -45472,7 +47101,7 @@ static int tolua_function_Pointer_CTiledObject___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject")); + (self->setValue)((CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject")); return 0; } @@ -45496,7 +47125,7 @@ static int tolua_function_Pointer_CSpawnFile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawnFile* returnVal = self->getValue(); + CSpawnFile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpawnFile"); return 1; } @@ -45505,7 +47134,7 @@ static int tolua_function_Pointer_CSpawnFile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawnFile*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnFile")); + (self->setValue)((CSpawnFile*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnFile")); return 0; } @@ -45529,7 +47158,7 @@ static int tolua_function_Pointer_CSearchBitmap___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSearchBitmap* returnVal = self->getValue(); + CSearchBitmap* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSearchBitmap"); return 1; } @@ -45538,7 +47167,7 @@ static int tolua_function_Pointer_CSearchBitmap___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); + (self->setValue)((CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); return 0; } @@ -45562,7 +47191,7 @@ static int tolua_function_Pointer_const_CAIAction___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CAIAction* returnVal = self->getValue(); + const CAIAction* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIAction"); return 1; } @@ -45587,7 +47216,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAITrigger_____getValue { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList* returnVal = self->getValue(); + CTypedPtrList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -45596,7 +47225,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAITrigger_____setValue { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -45620,7 +47249,7 @@ static int tolua_function_Pointer_CVidCell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVidCell* returnVal = self->getValue(); + CVidCell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVidCell"); return 1; } @@ -45629,7 +47258,7 @@ static int tolua_function_Pointer_CVidCell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell")); + (self->setValue)((CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell")); return 0; } @@ -45653,7 +47282,7 @@ static int tolua_function_Pointer_SDL_Cursor___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Cursor* returnVal = self->getValue(); + SDL_Cursor* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Cursor"); return 1; } @@ -45662,7 +47291,7 @@ static int tolua_function_Pointer_SDL_Cursor___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Cursor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Cursor")); + (self->setValue)((SDL_Cursor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Cursor")); return 0; } @@ -45686,7 +47315,7 @@ static int tolua_function_Pointer_SDL_Surface___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Surface* returnVal = self->getValue(); + SDL_Surface* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Surface"); return 1; } @@ -45695,7 +47324,7 @@ static int tolua_function_Pointer_SDL_Surface___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Surface*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Surface")); + (self->setValue)((SDL_Surface*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Surface")); return 0; } @@ -45719,7 +47348,7 @@ static int tolua_function_Pointer_CVIDPALETTE_COLOR___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVIDPALETTE_COLOR* returnVal = self->getValue(); + CVIDPALETTE_COLOR* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVIDPALETTE_COLOR"); return 1; } @@ -45728,7 +47357,7 @@ static int tolua_function_Pointer_CVIDPALETTE_COLOR___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR")); + (self->setValue)((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR")); return 0; } @@ -45752,7 +47381,7 @@ static int tolua_function_Pointer_CVIDIMG_PALETTEAFFECT___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVIDIMG_PALETTEAFFECT* returnVal = self->getValue(); + CVIDIMG_PALETTEAFFECT* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVIDIMG_PALETTEAFFECT"); return 1; } @@ -45761,7 +47390,7 @@ static int tolua_function_Pointer_CVIDIMG_PALETTEAFFECT___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 2, 0, "CVIDIMG_PALETTEAFFECT")); + (self->setValue)((CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 2, 0, "CVIDIMG_PALETTEAFFECT")); return 0; } @@ -45785,7 +47414,7 @@ static int tolua_function_Pointer_tagRGBQUAD___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - tagRGBQUAD* returnVal = self->getValue(); + tagRGBQUAD* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "tagRGBQUAD"); return 1; } @@ -45794,7 +47423,7 @@ static int tolua_function_Pointer_tagRGBQUAD___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((tagRGBQUAD*)tolua_tousertype_dynamic(L, 2, 0, "tagRGBQUAD")); + (self->setValue)((tagRGBQUAD*)tolua_tousertype_dynamic(L, 2, 0, "tagRGBQUAD")); return 0; } @@ -45818,7 +47447,7 @@ static int tolua_function_Pointer_CVEFEvent___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVEFEvent* returnVal = self->getValue(); + CVEFEvent* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVEFEvent"); return 1; } @@ -45827,7 +47456,7 @@ static int tolua_function_Pointer_CVEFEvent___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent")); + (self->setValue)((CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent")); return 0; } @@ -45851,7 +47480,7 @@ static int tolua_function_Pointer_CStringList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CStringList* returnVal = self->getValue(); + CStringList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CStringList"); return 1; } @@ -45860,7 +47489,7 @@ static int tolua_function_Pointer_CStringList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CStringList*)tolua_tousertype_dynamic(L, 2, 0, "CStringList")); + (self->setValue)((CStringList*)tolua_tousertype_dynamic(L, 2, 0, "CStringList")); return 0; } @@ -45884,7 +47513,7 @@ static int tolua_function_Pointer_CVisibilityMapTreeNode____getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVisibilityMapTreeNode** returnVal = self->getValue(); + CVisibilityMapTreeNode** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -45893,7 +47522,7 @@ static int tolua_function_Pointer_CVisibilityMapTreeNode____setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVisibilityMapTreeNode**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CVisibilityMapTreeNode**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -45917,7 +47546,7 @@ static int tolua_function_Pointer_CVisibilityMapEllipse___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVisibilityMapEllipse* returnVal = self->getValue(); + CVisibilityMapEllipse* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVisibilityMapEllipse"); return 1; } @@ -45926,7 +47555,7 @@ static int tolua_function_Pointer_CVisibilityMapEllipse___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVisibilityMapEllipse*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMapEllipse")); + (self->setValue)((CVisibilityMapEllipse*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMapEllipse")); return 0; } @@ -45950,7 +47579,7 @@ static int tolua_function_Pointer_CWarp___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWarp* returnVal = self->getValue(); + CWarp* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CWarp"); return 1; } @@ -45959,7 +47588,7 @@ static int tolua_function_Pointer_CWarp___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); + (self->setValue)((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); return 0; } @@ -45983,7 +47612,7 @@ static int tolua_function_Pointer_CSoundMixer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSoundMixer* returnVal = self->getValue(); + CSoundMixer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CSoundMixer"); return 1; } @@ -45992,7 +47621,7 @@ static int tolua_function_Pointer_CSoundMixer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSoundMixer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CSoundMixer")); + (self->setValue)((CSoundMixer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CSoundMixer")); return 0; } @@ -46016,7 +47645,7 @@ static int tolua_function_Pointer_CVariable___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVariable* returnVal = self->getValue(); + CVariable* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVariable"); return 1; } @@ -46025,7 +47654,7 @@ static int tolua_function_Pointer_CVariable___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVariable*)tolua_tousertype_dynamic(L, 2, 0, "CVariable")); + (self->setValue)((CVariable*)tolua_tousertype_dynamic(L, 2, 0, "CVariable")); return 0; } @@ -46049,7 +47678,7 @@ static int tolua_function_Pointer_CAIResponseSet___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIResponseSet* returnVal = self->getValue(); + CAIResponseSet* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIResponseSet"); return 1; } @@ -46058,7 +47687,7 @@ static int tolua_function_Pointer_CAIResponseSet___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIResponseSet*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponseSet")); + (self->setValue)((CAIResponseSet*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponseSet")); return 0; } @@ -46082,7 +47711,7 @@ static int tolua_function_Pointer_CAICondition___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAICondition* returnVal = self->getValue(); + CAICondition* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAICondition"); return 1; } @@ -46091,7 +47720,7 @@ static int tolua_function_Pointer_CAICondition___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAICondition*)tolua_tousertype_dynamic(L, 2, 0, "CAICondition")); + (self->setValue)((CAICondition*)tolua_tousertype_dynamic(L, 2, 0, "CAICondition")); return 0; } @@ -46115,7 +47744,7 @@ static int tolua_function_Pointer_CAIResponse___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIResponse* returnVal = self->getValue(); + CAIResponse* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIResponse"); return 1; } @@ -46124,7 +47753,7 @@ static int tolua_function_Pointer_CAIResponse___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse")); + (self->setValue)((CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse")); return 0; } @@ -46148,7 +47777,7 @@ static int tolua_function_Pointer_CAIConditionResponse___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIConditionResponse* returnVal = self->getValue(); + CAIConditionResponse* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIConditionResponse"); return 1; } @@ -46157,7 +47786,7 @@ static int tolua_function_Pointer_CAIConditionResponse___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse")); + (self->setValue)((CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse")); return 0; } @@ -46181,7 +47810,7 @@ static int tolua_function_Pointer_const_CAITrigger___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const CAITrigger* returnVal = self->getValue(); + const CAITrigger* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); return 1; } @@ -46206,7 +47835,7 @@ static int tolua_function_Pointer_CMessage___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMessage* returnVal = self->getValue(); + CMessage* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMessage"); return 1; } @@ -46215,7 +47844,7 @@ static int tolua_function_Pointer_CMessage___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage")); + (self->setValue)((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage")); return 0; } @@ -46239,7 +47868,7 @@ static int tolua_function_Pointer_C2DArray___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - C2DArray* returnVal = self->getValue(); + C2DArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "C2DArray"); return 1; } @@ -46248,7 +47877,7 @@ static int tolua_function_Pointer_C2DArray___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((C2DArray*)tolua_tousertype_dynamic(L, 2, 0, "C2DArray")); + (self->setValue)((C2DArray*)tolua_tousertype_dynamic(L, 2, 0, "C2DArray")); return 0; } @@ -46272,7 +47901,7 @@ static int tolua_function_Pointer_CSoundImp___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSoundImp* returnVal = self->getValue(); + CSoundImp* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSoundImp"); return 1; } @@ -46281,7 +47910,7 @@ static int tolua_function_Pointer_CSoundImp___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSoundImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundImp")); + (self->setValue)((CSoundImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundImp")); return 0; } @@ -46305,7 +47934,7 @@ static int tolua_function_Pointer_CSoundMixerImp___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSoundMixerImp* returnVal = self->getValue(); + CSoundMixerImp* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSoundMixerImp"); return 1; } @@ -46314,7 +47943,7 @@ static int tolua_function_Pointer_CSoundMixerImp___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSoundMixerImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundMixerImp")); + (self->setValue)((CSoundMixerImp*)tolua_tousertype_dynamic(L, 2, 0, "CSoundMixerImp")); return 0; } @@ -46338,7 +47967,7 @@ static int tolua_function_Pointer_CGameDialogSprite___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameDialogSprite* returnVal = self->getValue(); + CGameDialogSprite* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameDialogSprite"); return 1; } @@ -46347,7 +47976,7 @@ static int tolua_function_Pointer_CGameDialogSprite___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameDialogSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogSprite")); + (self->setValue)((CGameDialogSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogSprite")); return 0; } @@ -46371,7 +48000,7 @@ static int tolua_function_Pointer_CDeathSound___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CDeathSound* returnVal = self->getValue(); + CDeathSound* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CDeathSound"); return 1; } @@ -46380,7 +48009,7 @@ static int tolua_function_Pointer_CDeathSound___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound")); + (self->setValue)((CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound")); return 0; } @@ -46404,7 +48033,7 @@ static int tolua_function_Pointer_CFileView___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CFileView* returnVal = self->getValue(); + CFileView* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CFileView"); return 1; } @@ -46413,7 +48042,7 @@ static int tolua_function_Pointer_CFileView___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CFileView*)tolua_tousertype_dynamic(L, 2, 0, "CFileView")); + (self->setValue)((CFileView*)tolua_tousertype_dynamic(L, 2, 0, "CFileView")); return 0; } @@ -46437,7 +48066,7 @@ static int tolua_function_Pointer_unsigned_int___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned int* returnVal = self->getValue(); + unsigned int* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -46446,7 +48075,7 @@ static int tolua_function_Pointer_unsigned_int___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((unsigned int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -46470,7 +48099,7 @@ static int tolua_function_Pointer_CContingency___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CContingency* returnVal = self->getValue(); + CContingency* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CContingency"); return 1; } @@ -46479,7 +48108,7 @@ static int tolua_function_Pointer_CContingency___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency")); + (self->setValue)((CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency")); return 0; } @@ -46503,7 +48132,7 @@ static int tolua_function_Pointer_CScreenMap__vtbl___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenMap::vtbl* returnVal = self->getValue(); + CScreenMap::vtbl* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CScreenMap::vtbl"); return 1; } @@ -46512,7 +48141,7 @@ static int tolua_function_Pointer_CScreenMap__vtbl___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenMap::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CScreenMap::vtbl")); + (self->setValue)((CScreenMap::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CScreenMap::vtbl")); return 0; } @@ -46536,7 +48165,7 @@ static int tolua_function_Pointer_CRect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CRect* returnVal = self->getValue(); + CRect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CRect"); return 1; } @@ -46545,7 +48174,7 @@ static int tolua_function_Pointer_CRect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); + (self->setValue)((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); return 0; } @@ -46569,7 +48198,7 @@ static int tolua_function_Pointer_CVidCellFont___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVidCellFont* returnVal = self->getValue(); + CVidCellFont* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVidCellFont"); return 1; } @@ -46578,7 +48207,7 @@ static int tolua_function_Pointer_CVidCellFont___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVidCellFont*)tolua_tousertype_dynamic(L, 2, 0, "CVidCellFont")); + (self->setValue)((CVidCellFont*)tolua_tousertype_dynamic(L, 2, 0, "CVidCellFont")); return 0; } @@ -46602,7 +48231,7 @@ static int tolua_function_Pointer_uiItem___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uiItem* returnVal = self->getValue(); + uiItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "uiItem"); return 1; } @@ -46611,7 +48240,73 @@ static int tolua_function_Pointer_uiItem___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uiItem*)tolua_tousertype_dynamic(L, 2, 0, "uiItem")); + (self->setValue)((uiItem*)tolua_tousertype_dynamic(L, 2, 0, "uiItem")); + return 0; +} + +static int tolua_get_Pointer_SDL_DisplayMode___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_DisplayMode___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_DisplayMode**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_DisplayMode___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_DisplayMode* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_DisplayMode"); + return 1; +} + +static int tolua_function_Pointer_SDL_DisplayMode___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_DisplayMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DisplayMode")); + return 0; +} + +static int tolua_get_Pointer_SDL_VideoDevice___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_VideoDevice___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_VideoDevice**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_VideoDevice___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_VideoDevice* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_VideoDevice"); + return 1; +} + +static int tolua_function_Pointer_SDL_VideoDevice___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); return 0; } @@ -46635,7 +48330,7 @@ static int tolua_function_Pointer_wchar_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - wchar_t* returnVal = self->getValue(); + wchar_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -46644,7 +48339,7 @@ static int tolua_function_Pointer_wchar_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((wchar_t*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((wchar_t*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -46668,7 +48363,7 @@ static int tolua_function_Pointer_SDL_WindowShaper___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_WindowShaper* returnVal = self->getValue(); + SDL_WindowShaper* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_WindowShaper"); return 1; } @@ -46677,7 +48372,7 @@ static int tolua_function_Pointer_SDL_WindowShaper___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_WindowShaper*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShaper")); + (self->setValue)((SDL_WindowShaper*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShaper")); return 0; } @@ -46701,7 +48396,7 @@ static int tolua_function_Pointer_const_SDL_Point___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const SDL_Point* returnVal = self->getValue(); + const SDL_Point* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Point"); return 1; } @@ -46726,7 +48421,7 @@ static int tolua_function_Pointer_SDL_WindowUserData___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_WindowUserData* returnVal = self->getValue(); + SDL_WindowUserData* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_WindowUserData"); return 1; } @@ -46735,7 +48430,7 @@ static int tolua_function_Pointer_SDL_WindowUserData___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_WindowUserData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowUserData")); + (self->setValue)((SDL_WindowUserData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowUserData")); return 0; } @@ -46759,7 +48454,7 @@ static int tolua_function_Pointer_lua_TValue___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - lua_TValue* returnVal = self->getValue(); + lua_TValue* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "lua_TValue"); return 1; } @@ -46768,7 +48463,7 @@ static int tolua_function_Pointer_lua_TValue___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((lua_TValue*)tolua_tousertype_dynamic(L, 2, 0, "lua_TValue")); + (self->setValue)((lua_TValue*)tolua_tousertype_dynamic(L, 2, 0, "lua_TValue")); return 0; } @@ -46792,7 +48487,7 @@ static int tolua_function_Pointer_global_State___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - global_State* returnVal = self->getValue(); + global_State* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "global_State"); return 1; } @@ -46801,7 +48496,7 @@ static int tolua_function_Pointer_global_State___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((global_State*)tolua_tousertype_dynamic(L, 2, 0, "global_State")); + (self->setValue)((global_State*)tolua_tousertype_dynamic(L, 2, 0, "global_State")); return 0; } @@ -46825,7 +48520,7 @@ static int tolua_function_Pointer_CallInfo___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CallInfo* returnVal = self->getValue(); + CallInfo* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CallInfo"); return 1; } @@ -46834,7 +48529,7 @@ static int tolua_function_Pointer_CallInfo___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CallInfo*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo")); + (self->setValue)((CallInfo*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo")); return 0; } @@ -46858,7 +48553,7 @@ static int tolua_function_Pointer_const_unsigned_int___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const unsigned int* returnVal = self->getValue(); + const unsigned int* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -46883,7 +48578,7 @@ static int tolua_function_Pointer_lua_Debug___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - lua_Debug* returnVal = self->getValue(); + lua_Debug* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "lua_Debug"); return 1; } @@ -46892,7 +48587,7 @@ static int tolua_function_Pointer_lua_Debug___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((lua_Debug*)tolua_tousertype_dynamic(L, 2, 0, "lua_Debug")); + (self->setValue)((lua_Debug*)tolua_tousertype_dynamic(L, 2, 0, "lua_Debug")); return 0; } @@ -46916,7 +48611,7 @@ static int tolua_function_Pointer_lua_longjmp___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - lua_longjmp* returnVal = self->getValue(); + lua_longjmp* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "lua_longjmp"); return 1; } @@ -46925,7 +48620,7 @@ static int tolua_function_Pointer_lua_longjmp___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((lua_longjmp*)tolua_tousertype_dynamic(L, 2, 0, "lua_longjmp")); + (self->setValue)((lua_longjmp*)tolua_tousertype_dynamic(L, 2, 0, "lua_longjmp")); return 0; } @@ -46949,7 +48644,7 @@ static int tolua_function_Pointer_sheet___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - sheet* returnVal = self->getValue(); + sheet* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "sheet"); return 1; } @@ -46958,7 +48653,7 @@ static int tolua_function_Pointer_sheet___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((sheet*)tolua_tousertype_dynamic(L, 2, 0, "sheet")); + (self->setValue)((sheet*)tolua_tousertype_dynamic(L, 2, 0, "sheet")); return 0; } @@ -46982,7 +48677,7 @@ static int tolua_function_Pointer_stbrp_context___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - stbrp_context* returnVal = self->getValue(); + stbrp_context* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "stbrp_context"); return 1; } @@ -46991,7 +48686,7 @@ static int tolua_function_Pointer_stbrp_context___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((stbrp_context*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_context")); + (self->setValue)((stbrp_context*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_context")); return 0; } @@ -47015,7 +48710,7 @@ static int tolua_function_Pointer_stbrp_node___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - stbrp_node* returnVal = self->getValue(); + stbrp_node* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "stbrp_node"); return 1; } @@ -47024,7 +48719,7 @@ static int tolua_function_Pointer_stbrp_node___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((stbrp_node*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_node")); + (self->setValue)((stbrp_node*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_node")); return 0; } @@ -47048,7 +48743,7 @@ static int tolua_function_Pointer_glyphmap_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - glyphmap_t* returnVal = self->getValue(); + glyphmap_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "glyphmap_t"); return 1; } @@ -47057,7 +48752,7 @@ static int tolua_function_Pointer_glyphmap_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((glyphmap_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphmap_t")); + (self->setValue)((glyphmap_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphmap_t")); return 0; } @@ -47081,7 +48776,7 @@ static int tolua_function_Pointer_line_metric___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - line_metric* returnVal = self->getValue(); + line_metric* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "line_metric"); return 1; } @@ -47090,7 +48785,7 @@ static int tolua_function_Pointer_line_metric___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((line_metric*)tolua_tousertype_dynamic(L, 2, 0, "line_metric")); + (self->setValue)((line_metric*)tolua_tousertype_dynamic(L, 2, 0, "line_metric")); return 0; } @@ -47114,7 +48809,7 @@ static int tolua_function_Pointer_glyphAdvance_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - glyphAdvance_t* returnVal = self->getValue(); + glyphAdvance_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "glyphAdvance_t"); return 1; } @@ -47123,7 +48818,7 @@ static int tolua_function_Pointer_glyphAdvance_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((glyphAdvance_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphAdvance_t")); + (self->setValue)((glyphAdvance_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphAdvance_t")); return 0; } @@ -47147,7 +48842,7 @@ static int tolua_function_Pointer_CInfCursor___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CInfCursor* returnVal = self->getValue(); + CInfCursor* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CInfCursor"); return 1; } @@ -47156,7 +48851,7 @@ static int tolua_function_Pointer_CInfCursor___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CInfCursor*)tolua_tousertype_dynamic(L, 2, 0, "CInfCursor")); + (self->setValue)((CInfCursor*)tolua_tousertype_dynamic(L, 2, 0, "CInfCursor")); return 0; } @@ -47180,7 +48875,7 @@ static int tolua_function_Pointer_CDungeonMaster___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CDungeonMaster* returnVal = self->getValue(); + CDungeonMaster* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CDungeonMaster"); return 1; } @@ -47189,7 +48884,7 @@ static int tolua_function_Pointer_CDungeonMaster___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CDungeonMaster*)tolua_tousertype_dynamic(L, 2, 0, "CDungeonMaster")); + (self->setValue)((CDungeonMaster*)tolua_tousertype_dynamic(L, 2, 0, "CDungeonMaster")); return 0; } @@ -47213,7 +48908,7 @@ static int tolua_function_Pointer_CBaldurProjector___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CBaldurProjector* returnVal = self->getValue(); + CBaldurProjector* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CBaldurProjector"); return 1; } @@ -47222,7 +48917,7 @@ static int tolua_function_Pointer_CBaldurProjector___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CBaldurProjector*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurProjector")); + (self->setValue)((CBaldurProjector*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurProjector")); return 0; } @@ -47246,7 +48941,7 @@ static int tolua_function_Pointer_CScreenAI___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenAI* returnVal = self->getValue(); + CScreenAI* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CScreenAI"); return 1; } @@ -47255,7 +48950,7 @@ static int tolua_function_Pointer_CScreenAI___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenAI*)tolua_tousertype_dynamic(L, 2, 0, "CScreenAI")); + (self->setValue)((CScreenAI*)tolua_tousertype_dynamic(L, 2, 0, "CScreenAI")); return 0; } @@ -47279,7 +48974,7 @@ static int tolua_function_Pointer_CScreenCharacter___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenCharacter* returnVal = self->getValue(); + CScreenCharacter* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenCharacter"); return 1; } @@ -47288,7 +48983,7 @@ static int tolua_function_Pointer_CScreenCharacter___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenCharacter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCharacter")); + (self->setValue)((CScreenCharacter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCharacter")); return 0; } @@ -47312,7 +49007,7 @@ static int tolua_function_Pointer_CScreenCreateChar___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenCreateChar* returnVal = self->getValue(); + CScreenCreateChar* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenCreateChar"); return 1; } @@ -47321,7 +49016,7 @@ static int tolua_function_Pointer_CScreenCreateChar___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenCreateChar*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateChar")); + (self->setValue)((CScreenCreateChar*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateChar")); return 0; } @@ -47345,7 +49040,7 @@ static int tolua_function_Pointer_CScreenCreateParty___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenCreateParty* returnVal = self->getValue(); + CScreenCreateParty* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenCreateParty"); return 1; } @@ -47354,7 +49049,7 @@ static int tolua_function_Pointer_CScreenCreateParty___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenCreateParty*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateParty")); + (self->setValue)((CScreenCreateParty*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenCreateParty")); return 0; } @@ -47378,7 +49073,7 @@ static int tolua_function_Pointer_CScreenInventory___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenInventory* returnVal = self->getValue(); + CScreenInventory* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenInventory"); return 1; } @@ -47387,7 +49082,7 @@ static int tolua_function_Pointer_CScreenInventory___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenInventory*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenInventory")); + (self->setValue)((CScreenInventory*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenInventory")); return 0; } @@ -47411,7 +49106,7 @@ static int tolua_function_Pointer_CScreenJournal___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenJournal* returnVal = self->getValue(); + CScreenJournal* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenJournal"); return 1; } @@ -47420,7 +49115,7 @@ static int tolua_function_Pointer_CScreenJournal___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenJournal*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenJournal")); + (self->setValue)((CScreenJournal*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenJournal")); return 0; } @@ -47444,7 +49139,7 @@ static int tolua_function_Pointer_CScreenLoad___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenLoad* returnVal = self->getValue(); + CScreenLoad* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenLoad"); return 1; } @@ -47453,7 +49148,7 @@ static int tolua_function_Pointer_CScreenLoad___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenLoad*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenLoad")); + (self->setValue)((CScreenLoad*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenLoad")); return 0; } @@ -47477,7 +49172,7 @@ static int tolua_function_Pointer_CScreenMap___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenMap* returnVal = self->getValue(); + CScreenMap* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenMap"); return 1; } @@ -47486,7 +49181,7 @@ static int tolua_function_Pointer_CScreenMap___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMap")); + (self->setValue)((CScreenMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMap")); return 0; } @@ -47510,7 +49205,7 @@ static int tolua_function_Pointer_CScreenOptions___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenOptions* returnVal = self->getValue(); + CScreenOptions* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenOptions"); return 1; } @@ -47519,7 +49214,7 @@ static int tolua_function_Pointer_CScreenOptions___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenOptions")); + (self->setValue)((CScreenOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenOptions")); return 0; } @@ -47543,7 +49238,7 @@ static int tolua_function_Pointer_CScreenPriestSpell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenPriestSpell* returnVal = self->getValue(); + CScreenPriestSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenPriestSpell"); return 1; } @@ -47552,7 +49247,7 @@ static int tolua_function_Pointer_CScreenPriestSpell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenPriestSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenPriestSpell")); + (self->setValue)((CScreenPriestSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenPriestSpell")); return 0; } @@ -47576,7 +49271,7 @@ static int tolua_function_Pointer_CScreenSave___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenSave* returnVal = self->getValue(); + CScreenSave* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenSave"); return 1; } @@ -47585,7 +49280,7 @@ static int tolua_function_Pointer_CScreenSave___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenSave*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenSave")); + (self->setValue)((CScreenSave*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenSave")); return 0; } @@ -47609,7 +49304,7 @@ static int tolua_function_Pointer_CScreenStart___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenStart* returnVal = self->getValue(); + CScreenStart* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenStart"); return 1; } @@ -47618,7 +49313,7 @@ static int tolua_function_Pointer_CScreenStart___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenStart*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStart")); + (self->setValue)((CScreenStart*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStart")); return 0; } @@ -47642,7 +49337,7 @@ static int tolua_function_Pointer_CScreenWizSpell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenWizSpell* returnVal = self->getValue(); + CScreenWizSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenWizSpell"); return 1; } @@ -47651,7 +49346,7 @@ static int tolua_function_Pointer_CScreenWizSpell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenWizSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWizSpell")); + (self->setValue)((CScreenWizSpell*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWizSpell")); return 0; } @@ -47675,7 +49370,7 @@ static int tolua_function_Pointer_CScreenWorld___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenWorld* returnVal = self->getValue(); + CScreenWorld* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenWorld"); return 1; } @@ -47684,7 +49379,7 @@ static int tolua_function_Pointer_CScreenWorld___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenWorld*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorld")); + (self->setValue)((CScreenWorld*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorld")); return 0; } @@ -47708,7 +49403,7 @@ static int tolua_function_Pointer_CScreenStore___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenStore* returnVal = self->getValue(); + CScreenStore* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenStore"); return 1; } @@ -47717,7 +49412,7 @@ static int tolua_function_Pointer_CScreenStore___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenStore*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStore")); + (self->setValue)((CScreenStore*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenStore")); return 0; } @@ -47741,7 +49436,7 @@ static int tolua_function_Pointer_CScreenMultiPlayer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenMultiPlayer* returnVal = self->getValue(); + CScreenMultiPlayer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenMultiPlayer"); return 1; } @@ -47750,7 +49445,7 @@ static int tolua_function_Pointer_CScreenMultiPlayer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenMultiPlayer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMultiPlayer")); + (self->setValue)((CScreenMultiPlayer*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMultiPlayer")); return 0; } @@ -47774,7 +49469,7 @@ static int tolua_function_Pointer_CScreenConnection___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenConnection* returnVal = self->getValue(); + CScreenConnection* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenConnection"); return 1; } @@ -47783,7 +49478,7 @@ static int tolua_function_Pointer_CScreenConnection___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenConnection*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenConnection")); + (self->setValue)((CScreenConnection*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenConnection")); return 0; } @@ -47807,7 +49502,7 @@ static int tolua_function_Pointer_CScreenWorldMap___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenWorldMap* returnVal = self->getValue(); + CScreenWorldMap* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenWorldMap"); return 1; } @@ -47816,7 +49511,7 @@ static int tolua_function_Pointer_CScreenWorldMap___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorldMap")); + (self->setValue)((CScreenWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenWorldMap")); return 0; } @@ -47840,7 +49535,7 @@ static int tolua_function_Pointer_CScreenChapter___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenChapter* returnVal = self->getValue(); + CScreenChapter* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenChapter"); return 1; } @@ -47849,7 +49544,7 @@ static int tolua_function_Pointer_CScreenChapter___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenChapter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenChapter")); + (self->setValue)((CScreenChapter*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenChapter")); return 0; } @@ -47873,7 +49568,7 @@ static int tolua_function_Pointer_CScreenMovies___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenMovies* returnVal = self->getValue(); + CScreenMovies* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenMovies"); return 1; } @@ -47882,7 +49577,7 @@ static int tolua_function_Pointer_CScreenMovies___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenMovies*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMovies")); + (self->setValue)((CScreenMovies*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenMovies")); return 0; } @@ -47906,7 +49601,7 @@ static int tolua_function_Pointer_CScreenDLC___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenDLC* returnVal = self->getValue(); + CScreenDLC* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CScreenDLC"); return 1; } @@ -47915,7 +49610,7 @@ static int tolua_function_Pointer_CScreenDLC___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenDLC*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenDLC")); + (self->setValue)((CScreenDLC*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CScreenDLC")); return 0; } @@ -47939,7 +49634,7 @@ static int tolua_function_Pointer_IDirect3D9___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDirect3D9* returnVal = self->getValue(); + IDirect3D9* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDirect3D9"); return 1; } @@ -47948,7 +49643,7 @@ static int tolua_function_Pointer_IDirect3D9___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDirect3D9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3D9")); + (self->setValue)((IDirect3D9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3D9")); return 0; } @@ -47972,7 +49667,7 @@ static int tolua_function_Pointer_HRESULT___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - HRESULT* returnVal = self->getValue(); + HRESULT* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -47981,7 +49676,7 @@ static int tolua_function_Pointer_HRESULT___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((HRESULT*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((HRESULT*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -48005,7 +49700,7 @@ static int tolua_function_Pointer_IDirect3DDevice9___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDirect3DDevice9* returnVal = self->getValue(); + IDirect3DDevice9* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDirect3DDevice9"); return 1; } @@ -48014,7 +49709,7 @@ static int tolua_function_Pointer_IDirect3DDevice9___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDirect3DDevice9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DDevice9")); + (self->setValue)((IDirect3DDevice9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DDevice9")); return 0; } @@ -48038,7 +49733,7 @@ static int tolua_function_Pointer_const__D3DXMACRO___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const _D3DXMACRO* returnVal = self->getValue(); + const _D3DXMACRO* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "_D3DXMACRO"); return 1; } @@ -48063,7 +49758,7 @@ static int tolua_function_Pointer_ID3DXInclude___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ID3DXInclude* returnVal = self->getValue(); + ID3DXInclude* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ID3DXInclude"); return 1; } @@ -48072,7 +49767,7 @@ static int tolua_function_Pointer_ID3DXInclude___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ID3DXInclude*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXInclude")); + (self->setValue)((ID3DXInclude*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXInclude")); return 0; } @@ -48096,7 +49791,7 @@ static int tolua_function_Pointer_ID3DXEffectPool___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ID3DXEffectPool* returnVal = self->getValue(); + ID3DXEffectPool* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ID3DXEffectPool"); return 1; } @@ -48105,7 +49800,7 @@ static int tolua_function_Pointer_ID3DXEffectPool___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ID3DXEffectPool*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXEffectPool")); + (self->setValue)((ID3DXEffectPool*)tolua_tousertype_dynamic(L, 2, 0, "ID3DXEffectPool")); return 0; } @@ -48129,7 +49824,7 @@ static int tolua_function_Pointer_ID3DXEffect____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ID3DXEffect** returnVal = self->getValue(); + ID3DXEffect** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -48138,7 +49833,7 @@ static int tolua_function_Pointer_ID3DXEffect____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ID3DXEffect**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((ID3DXEffect**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -48162,7 +49857,7 @@ static int tolua_function_Pointer_ID3DXBuffer____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ID3DXBuffer** returnVal = self->getValue(); + ID3DXBuffer** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -48171,7 +49866,7 @@ static int tolua_function_Pointer_ID3DXBuffer____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ID3DXBuffer**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((ID3DXBuffer**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -48195,7 +49890,7 @@ static int tolua_function_Pointer_d3dvertex_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - d3dvertex_t* returnVal = self->getValue(); + d3dvertex_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "d3dvertex_t"); return 1; } @@ -48204,7 +49899,7 @@ static int tolua_function_Pointer_d3dvertex_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((d3dvertex_t*)tolua_tousertype_dynamic(L, 2, 0, "d3dvertex_t")); + (self->setValue)((d3dvertex_t*)tolua_tousertype_dynamic(L, 2, 0, "d3dvertex_t")); return 0; } @@ -48228,7 +49923,7 @@ static int tolua_function_Pointer_IDirect3DVertexBuffer9___getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDirect3DVertexBuffer9* returnVal = self->getValue(); + IDirect3DVertexBuffer9* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDirect3DVertexBuffer9"); return 1; } @@ -48237,7 +49932,7 @@ static int tolua_function_Pointer_IDirect3DVertexBuffer9___setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDirect3DVertexBuffer9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DVertexBuffer9")); + (self->setValue)((IDirect3DVertexBuffer9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DVertexBuffer9")); return 0; } @@ -48261,7 +49956,7 @@ static int tolua_function_Pointer_IDirect3DVertexDeclaration9___getValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDirect3DVertexDeclaration9* returnVal = self->getValue(); + IDirect3DVertexDeclaration9* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDirect3DVertexDeclaration9"); return 1; } @@ -48270,7 +49965,7 @@ static int tolua_function_Pointer_IDirect3DVertexDeclaration9___setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDirect3DVertexDeclaration9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DVertexDeclaration9")); + (self->setValue)((IDirect3DVertexDeclaration9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DVertexDeclaration9")); return 0; } @@ -48294,7 +49989,7 @@ static int tolua_function_Pointer_Table___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Table* returnVal = self->getValue(); + Table* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Table"); return 1; } @@ -48303,7 +49998,7 @@ static int tolua_function_Pointer_Table___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Table*)tolua_tousertype_dynamic(L, 2, 0, "Table")); + (self->setValue)((Table*)tolua_tousertype_dynamic(L, 2, 0, "Table")); return 0; } @@ -48327,7 +50022,7 @@ static int tolua_function_Pointer_UpVal___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - UpVal* returnVal = self->getValue(); + UpVal* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "UpVal"); return 1; } @@ -48336,7 +50031,7 @@ static int tolua_function_Pointer_UpVal___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((UpVal*)tolua_tousertype_dynamic(L, 2, 0, "UpVal")); + (self->setValue)((UpVal*)tolua_tousertype_dynamic(L, 2, 0, "UpVal")); return 0; } @@ -48360,7 +50055,7 @@ static int tolua_function_Pointer_Node___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Node* returnVal = self->getValue(); + Node* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Node"); return 1; } @@ -48369,7 +50064,7 @@ static int tolua_function_Pointer_Node___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Node*)tolua_tousertype_dynamic(L, 2, 0, "Node")); + (self->setValue)((Node*)tolua_tousertype_dynamic(L, 2, 0, "Node")); return 0; } @@ -48393,7 +50088,7 @@ static int tolua_function_Pointer_Proto____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Proto** returnVal = self->getValue(); + Proto** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -48402,7 +50097,7 @@ static int tolua_function_Pointer_Proto____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Proto**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((Proto**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -48426,7 +50121,7 @@ static int tolua_function_Pointer_LocVar___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - LocVar* returnVal = self->getValue(); + LocVar* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "LocVar"); return 1; } @@ -48435,7 +50130,7 @@ static int tolua_function_Pointer_LocVar___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((LocVar*)tolua_tousertype_dynamic(L, 2, 0, "LocVar")); + (self->setValue)((LocVar*)tolua_tousertype_dynamic(L, 2, 0, "LocVar")); return 0; } @@ -48459,7 +50154,7 @@ static int tolua_function_Pointer_Upvaldesc___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Upvaldesc* returnVal = self->getValue(); + Upvaldesc* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Upvaldesc"); return 1; } @@ -48468,7 +50163,7 @@ static int tolua_function_Pointer_Upvaldesc___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Upvaldesc*)tolua_tousertype_dynamic(L, 2, 0, "Upvaldesc")); + (self->setValue)((Upvaldesc*)tolua_tousertype_dynamic(L, 2, 0, "Upvaldesc")); return 0; } @@ -48492,7 +50187,7 @@ static int tolua_function_Pointer_Closure___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Closure* returnVal = self->getValue(); + Closure* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Closure"); return 1; } @@ -48501,7 +50196,7 @@ static int tolua_function_Pointer_Closure___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Closure*)tolua_tousertype_dynamic(L, 2, 0, "Closure")); + (self->setValue)((Closure*)tolua_tousertype_dynamic(L, 2, 0, "Closure")); return 0; } @@ -48525,7 +50220,7 @@ static int tolua_function_Pointer_TString___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - TString* returnVal = self->getValue(); + TString* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "TString"); return 1; } @@ -48534,7 +50229,7 @@ static int tolua_function_Pointer_TString___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((TString*)tolua_tousertype_dynamic(L, 2, 0, "TString")); + (self->setValue)((TString*)tolua_tousertype_dynamic(L, 2, 0, "TString")); return 0; } @@ -48558,7 +50253,7 @@ static int tolua_function_Pointer_GCObject____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - GCObject** returnVal = self->getValue(); + GCObject** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -48567,7 +50262,7 @@ static int tolua_function_Pointer_GCObject____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((GCObject**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((GCObject**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -48591,7 +50286,7 @@ static int tolua_function_Pointer_const_long_double___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const long double* returnVal = self->getValue(); + const long double* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -48616,7 +50311,7 @@ static int tolua_function_Pointer_CPtrList__CNode___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPtrList::CNode* returnVal = self->getValue(); + CPtrList::CNode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPtrList::CNode"); return 1; } @@ -48625,7 +50320,7 @@ static int tolua_function_Pointer_CPtrList__CNode___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CPtrList::CNode")); + (self->setValue)((CPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CPtrList::CNode")); return 0; } @@ -48649,7 +50344,7 @@ static int tolua_function_Pointer_DP_Player___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DP_Player* returnVal = self->getValue(); + DP_Player* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "DP_Player"); return 1; } @@ -48658,7 +50353,7 @@ static int tolua_function_Pointer_DP_Player___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DP_Player*)tolua_tousertype_dynamic(L, 2, 0, "DP_Player")); + (self->setValue)((DP_Player*)tolua_tousertype_dynamic(L, 2, 0, "DP_Player")); return 0; } @@ -48682,7 +50377,7 @@ static int tolua_function_Pointer_DP_Packet___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DP_Packet* returnVal = self->getValue(); + DP_Packet* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "DP_Packet"); return 1; } @@ -48691,7 +50386,7 @@ static int tolua_function_Pointer_DP_Packet___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DP_Packet*)tolua_tousertype_dynamic(L, 2, 0, "DP_Packet")); + (self->setValue)((DP_Packet*)tolua_tousertype_dynamic(L, 2, 0, "DP_Packet")); return 0; } @@ -48715,7 +50410,7 @@ static int tolua_function_Pointer_IDPProvider___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDPProvider* returnVal = self->getValue(); + IDPProvider* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDPProvider"); return 1; } @@ -48724,7 +50419,7 @@ static int tolua_function_Pointer_IDPProvider___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDPProvider*)tolua_tousertype_dynamic(L, 2, 0, "IDPProvider")); + (self->setValue)((IDPProvider*)tolua_tousertype_dynamic(L, 2, 0, "IDPProvider")); return 0; } @@ -48748,7 +50443,7 @@ static int tolua_function_Pointer_IDPPeer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - IDPPeer* returnVal = self->getValue(); + IDPPeer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "IDPPeer"); return 1; } @@ -48757,7 +50452,7 @@ static int tolua_function_Pointer_IDPPeer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((IDPPeer*)tolua_tousertype_dynamic(L, 2, 0, "IDPPeer")); + (self->setValue)((IDPPeer*)tolua_tousertype_dynamic(L, 2, 0, "IDPPeer")); return 0; } @@ -48781,7 +50476,7 @@ static int tolua_function_Pointer_cnetworkwindow_queueentry_st___getValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - cnetworkwindow_queueentry_st* returnVal = self->getValue(); + cnetworkwindow_queueentry_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "cnetworkwindow_queueentry_st"); return 1; } @@ -48790,7 +50485,7 @@ static int tolua_function_Pointer_cnetworkwindow_queueentry_st___setValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st")); + (self->setValue)((cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st")); return 0; } @@ -48814,7 +50509,7 @@ static int tolua_function_Pointer_ISteamRemoteStorage___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ISteamRemoteStorage* returnVal = self->getValue(); + ISteamRemoteStorage* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ISteamRemoteStorage"); return 1; } @@ -48823,7 +50518,7 @@ static int tolua_function_Pointer_ISteamRemoteStorage___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 2, 0, "ISteamRemoteStorage")); + (self->setValue)((ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 2, 0, "ISteamRemoteStorage")); return 0; } @@ -48847,7 +50542,7 @@ static int tolua_function_Pointer_ISteamUGC___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ISteamUGC* returnVal = self->getValue(); + ISteamUGC* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ISteamUGC"); return 1; } @@ -48856,7 +50551,7 @@ static int tolua_function_Pointer_ISteamUGC___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ISteamUGC*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUGC")); + (self->setValue)((ISteamUGC*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUGC")); return 0; } @@ -48880,7 +50575,7 @@ static int tolua_function_Pointer_ISteamUserStats___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ISteamUserStats* returnVal = self->getValue(); + ISteamUserStats* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ISteamUserStats"); return 1; } @@ -48889,7 +50584,7 @@ static int tolua_function_Pointer_ISteamUserStats___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ISteamUserStats*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUserStats")); + (self->setValue)((ISteamUserStats*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUserStats")); return 0; } @@ -48913,7 +50608,7 @@ static int tolua_function_Pointer_CChitin___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CChitin* returnVal = self->getValue(); + CChitin* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CChitin"); return 1; } @@ -48922,7 +50617,7 @@ static int tolua_function_Pointer_CChitin___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CChitin")); + (self->setValue)((CChitin*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CChitin")); return 0; } @@ -48946,7 +50641,7 @@ static int tolua_function_Pointer_unsigned___int8____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int8** returnVal = self->getValue(); + unsigned __int8** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -48955,7 +50650,7 @@ static int tolua_function_Pointer_unsigned___int8____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned __int8**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((unsigned __int8**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -48979,7 +50674,7 @@ static int tolua_function_Pointer_float___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - float* returnVal = self->getValue(); + float* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -48988,7 +50683,7 @@ static int tolua_function_Pointer_float___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((float*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((float*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -49012,7 +50707,7 @@ static int tolua_function_Pointer_CCallbackBase___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCallbackBase* returnVal = self->getValue(); + CCallbackBase* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCallbackBase"); return 1; } @@ -49021,7 +50716,7 @@ static int tolua_function_Pointer_CCallbackBase___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCallbackBase*)tolua_tousertype_dynamic(L, 2, 0, "CCallbackBase")); + (self->setValue)((CCallbackBase*)tolua_tousertype_dynamic(L, 2, 0, "CCallbackBase")); return 0; } @@ -49045,7 +50740,7 @@ static int tolua_function_Pointer_ALCcontext_struct___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ALCcontext_struct* returnVal = self->getValue(); + ALCcontext_struct* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ALCcontext_struct"); return 1; } @@ -49054,7 +50749,7 @@ static int tolua_function_Pointer_ALCcontext_struct___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ALCcontext_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCcontext_struct")); + (self->setValue)((ALCcontext_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCcontext_struct")); return 0; } @@ -49078,7 +50773,7 @@ static int tolua_function_Pointer_ALCdevice_struct___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ALCdevice_struct* returnVal = self->getValue(); + ALCdevice_struct* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ALCdevice_struct"); return 1; } @@ -49087,7 +50782,7 @@ static int tolua_function_Pointer_ALCdevice_struct___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ALCdevice_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCdevice_struct")); + (self->setValue)((ALCdevice_struct*)tolua_tousertype_dynamic(L, 2, 0, "ALCdevice_struct")); return 0; } @@ -49111,7 +50806,7 @@ static int tolua_function_Pointer_CMusicPosition___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMusicPosition* returnVal = self->getValue(); + CMusicPosition* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMusicPosition"); return 1; } @@ -49120,7 +50815,7 @@ static int tolua_function_Pointer_CMusicPosition___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition")); + (self->setValue)((CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition")); return 0; } @@ -49144,7 +50839,7 @@ static int tolua_function_Pointer_tagBITMAPFILEHEADER___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - tagBITMAPFILEHEADER* returnVal = self->getValue(); + tagBITMAPFILEHEADER* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "tagBITMAPFILEHEADER"); return 1; } @@ -49153,7 +50848,7 @@ static int tolua_function_Pointer_tagBITMAPFILEHEADER___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((tagBITMAPFILEHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPFILEHEADER")); + (self->setValue)((tagBITMAPFILEHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPFILEHEADER")); return 0; } @@ -49177,7 +50872,7 @@ static int tolua_function_Pointer_tagBITMAPINFOHEADER___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - tagBITMAPINFOHEADER* returnVal = self->getValue(); + tagBITMAPINFOHEADER* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "tagBITMAPINFOHEADER"); return 1; } @@ -49186,7 +50881,7 @@ static int tolua_function_Pointer_tagBITMAPINFOHEADER___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((tagBITMAPINFOHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPINFOHEADER")); + (self->setValue)((tagBITMAPINFOHEADER*)tolua_tousertype_dynamic(L, 2, 0, "tagBITMAPINFOHEADER")); return 0; } @@ -49210,7 +50905,7 @@ static int tolua_function_Pointer_frameTableEntry_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - frameTableEntry_st* returnVal = self->getValue(); + frameTableEntry_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "frameTableEntry_st"); return 1; } @@ -49219,7 +50914,7 @@ static int tolua_function_Pointer_frameTableEntry_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((frameTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st")); + (self->setValue)((frameTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st")); return 0; } @@ -49243,7 +50938,7 @@ static int tolua_function_Pointer_SDL_PixelFormat___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_PixelFormat* returnVal = self->getValue(); + SDL_PixelFormat* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_PixelFormat"); return 1; } @@ -49252,7 +50947,7 @@ static int tolua_function_Pointer_SDL_PixelFormat___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_PixelFormat*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PixelFormat")); + (self->setValue)((SDL_PixelFormat*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PixelFormat")); return 0; } @@ -49276,7 +50971,7 @@ static int tolua_function_Pointer_SDL_BlitMap___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_BlitMap* returnVal = self->getValue(); + SDL_BlitMap* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_BlitMap"); return 1; } @@ -49285,7 +50980,7 @@ static int tolua_function_Pointer_SDL_BlitMap___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_BlitMap*)tolua_tousertype_dynamic(L, 2, 0, "SDL_BlitMap")); + (self->setValue)((SDL_BlitMap*)tolua_tousertype_dynamic(L, 2, 0, "SDL_BlitMap")); return 0; } @@ -49309,7 +51004,7 @@ static int tolua_function_Pointer_DP_Event___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DP_Event* returnVal = self->getValue(); + DP_Event* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "DP_Event"); return 1; } @@ -49318,7 +51013,7 @@ static int tolua_function_Pointer_DP_Event___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DP_Event*)tolua_tousertype_dynamic(L, 2, 0, "DP_Event")); + (self->setValue)((DP_Event*)tolua_tousertype_dynamic(L, 2, 0, "DP_Event")); return 0; } @@ -49342,7 +51037,7 @@ static int tolua_function_Pointer_unsigned___int64___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int64* returnVal = self->getValue(); + unsigned __int64* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int64>"); return 1; } @@ -49351,7 +51046,7 @@ static int tolua_function_Pointer_unsigned___int64___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + (self->setValue)((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); return 0; } @@ -49375,7 +51070,7 @@ static int tolua_function_Pointer_CSteamID___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSteamID* returnVal = self->getValue(); + CSteamID* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSteamID"); return 1; } @@ -49384,7 +51079,7 @@ static int tolua_function_Pointer_CSteamID___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID")); + (self->setValue)((CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID")); return 0; } @@ -49408,7 +51103,7 @@ static int tolua_function_Pointer_SteamParamStringArray_t___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SteamParamStringArray_t* returnVal = self->getValue(); + SteamParamStringArray_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SteamParamStringArray_t"); return 1; } @@ -49417,7 +51112,7 @@ static int tolua_function_Pointer_SteamParamStringArray_t___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamParamStringArray_t")); + (self->setValue)((SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamParamStringArray_t")); return 0; } @@ -49441,7 +51136,7 @@ static int tolua_function_Pointer_SteamUGCDetails_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SteamUGCDetails_t* returnVal = self->getValue(); + SteamUGCDetails_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SteamUGCDetails_t"); return 1; } @@ -49450,7 +51145,7 @@ static int tolua_function_Pointer_SteamUGCDetails_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCDetails_t")); + (self->setValue)((SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCDetails_t")); return 0; } @@ -49474,7 +51169,7 @@ static int tolua_function_Pointer_EItemPreviewType___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EItemPreviewType* returnVal = self->getValue(); + EItemPreviewType* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -49483,7 +51178,7 @@ static int tolua_function_Pointer_EItemPreviewType___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EItemPreviewType*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((EItemPreviewType*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -49507,7 +51202,7 @@ static int tolua_function_Pointer_const_SteamParamStringArray_t___getValue(lua_S { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const SteamParamStringArray_t* returnVal = self->getValue(); + const SteamParamStringArray_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SteamParamStringArray_t"); return 1; } @@ -49532,7 +51227,7 @@ static int tolua_function_Pointer_bool___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - bool* returnVal = self->getValue(); + bool* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -49541,7 +51236,7 @@ static int tolua_function_Pointer_bool___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((bool*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((bool*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -49565,7 +51260,7 @@ static int tolua_function_Pointer_LeaderboardEntry_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - LeaderboardEntry_t* returnVal = self->getValue(); + LeaderboardEntry_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "LeaderboardEntry_t"); return 1; } @@ -49574,7 +51269,7 @@ static int tolua_function_Pointer_LeaderboardEntry_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "LeaderboardEntry_t")); + (self->setValue)((LeaderboardEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "LeaderboardEntry_t")); return 0; } @@ -49598,7 +51293,7 @@ static int tolua_function_Pointer_const_int___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const int* returnVal = self->getValue(); + const int* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -49623,7 +51318,7 @@ static int tolua_function_Pointer_long_double___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - long double* returnVal = self->getValue(); + long double* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -49632,7 +51327,7 @@ static int tolua_function_Pointer_long_double___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((long double*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((long double*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -49656,7 +51351,7 @@ static int tolua_function_Pointer___int64___getValue(lua_State* L) { Pointer<__int64*>* self = (Pointer<__int64*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int64*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int64* returnVal = self->getValue(); + __int64* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int64>"); return 1; } @@ -49665,7 +51360,7 @@ static int tolua_function_Pointer___int64___setValue(lua_State* L) { Pointer<__int64*>* self = (Pointer<__int64*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int64*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((__int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + (self->setValue)((__int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); return 0; } @@ -49689,7 +51384,7 @@ static int tolua_function_Pointer_CVidPoly___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVidPoly* returnVal = self->getValue(); + CVidPoly* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVidPoly"); return 1; } @@ -49698,7 +51393,7 @@ static int tolua_function_Pointer_CVidPoly___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVidPoly*)tolua_tousertype_dynamic(L, 2, 0, "CVidPoly")); + (self->setValue)((CVidPoly*)tolua_tousertype_dynamic(L, 2, 0, "CVidPoly")); return 0; } @@ -49722,7 +51417,7 @@ static int tolua_function_Pointer_bamHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - bamHeader_st* returnVal = self->getValue(); + bamHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "bamHeader_st"); return 1; } @@ -49731,7 +51426,7 @@ static int tolua_function_Pointer_bamHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((bamHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "bamHeader_st")); + (self->setValue)((bamHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "bamHeader_st")); return 0; } @@ -49755,7 +51450,7 @@ static int tolua_function_Pointer_BAMHEADERV2___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - BAMHEADERV2* returnVal = self->getValue(); + BAMHEADERV2* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "BAMHEADERV2"); return 1; } @@ -49764,7 +51459,7 @@ static int tolua_function_Pointer_BAMHEADERV2___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((BAMHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "BAMHEADERV2")); + (self->setValue)((BAMHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "BAMHEADERV2")); return 0; } @@ -49788,7 +51483,7 @@ static int tolua_function_Pointer_MOSAICQUAD___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - MOSAICQUAD* returnVal = self->getValue(); + MOSAICQUAD* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "MOSAICQUAD"); return 1; } @@ -49797,7 +51492,7 @@ static int tolua_function_Pointer_MOSAICQUAD___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((MOSAICQUAD*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICQUAD")); + (self->setValue)((MOSAICQUAD*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICQUAD")); return 0; } @@ -49821,7 +51516,7 @@ static int tolua_function_Pointer_sequenceTableEntry_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - sequenceTableEntry_st* returnVal = self->getValue(); + sequenceTableEntry_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "sequenceTableEntry_st"); return 1; } @@ -49830,7 +51525,7 @@ static int tolua_function_Pointer_sequenceTableEntry_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((sequenceTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "sequenceTableEntry_st")); + (self->setValue)((sequenceTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "sequenceTableEntry_st")); return 0; } @@ -49854,7 +51549,7 @@ static int tolua_function_Pointer_SDL_Palette___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Palette* returnVal = self->getValue(); + SDL_Palette* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Palette"); return 1; } @@ -49863,7 +51558,7 @@ static int tolua_function_Pointer_SDL_Palette___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Palette*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Palette")); + (self->setValue)((SDL_Palette*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Palette")); return 0; } @@ -49887,7 +51582,7 @@ static int tolua_function_Pointer_CVIDPOLY_VERTEX___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVIDPOLY_VERTEX* returnVal = self->getValue(); + CVIDPOLY_VERTEX* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVIDPOLY_VERTEX"); return 1; } @@ -49896,7 +51591,7 @@ static int tolua_function_Pointer_CVIDPOLY_VERTEX___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVIDPOLY_VERTEX*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPOLY_VERTEX")); + (self->setValue)((CVIDPOLY_VERTEX*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPOLY_VERTEX")); return 0; } @@ -49920,7 +51615,7 @@ static int tolua_function_Pointer__EdgeDescription___getValue(lua_State* L) { Pointer<_EdgeDescription*>* self = (Pointer<_EdgeDescription*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_EdgeDescription*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _EdgeDescription* returnVal = self->getValue(); + _EdgeDescription* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "_EdgeDescription"); return 1; } @@ -49929,7 +51624,7 @@ static int tolua_function_Pointer__EdgeDescription___setValue(lua_State* L) { Pointer<_EdgeDescription*>* self = (Pointer<_EdgeDescription*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_EdgeDescription*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_EdgeDescription*)tolua_tousertype_dynamic(L, 2, 0, "_EdgeDescription")); + (self->setValue)((_EdgeDescription*)tolua_tousertype_dynamic(L, 2, 0, "_EdgeDescription")); return 0; } @@ -49953,7 +51648,7 @@ static int tolua_function_Pointer_SDL_Color___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Color* returnVal = self->getValue(); + SDL_Color* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_Color"); return 1; } @@ -49962,7 +51657,7 @@ static int tolua_function_Pointer_SDL_Color___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Color*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Color")); + (self->setValue)((SDL_Color*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Color")); return 0; } @@ -49986,7 +51681,7 @@ static int tolua_function_Pointer_HWND_____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - HWND__* returnVal = self->getValue(); + HWND__* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "HWND__"); return 1; } @@ -49995,7 +51690,7 @@ static int tolua_function_Pointer_HWND_____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((HWND__*)tolua_tousertype_dynamic(L, 2, 0, "HWND__")); + (self->setValue)((HWND__*)tolua_tousertype_dynamic(L, 2, 0, "HWND__")); return 0; } @@ -50019,7 +51714,7 @@ static int tolua_function_Pointer_SDL_SysWMmsg___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_SysWMmsg* returnVal = self->getValue(); + SDL_SysWMmsg* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SDL_SysWMmsg"); return 1; } @@ -50028,7 +51723,7 @@ static int tolua_function_Pointer_SDL_SysWMmsg___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_SysWMmsg*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg")); + (self->setValue)((SDL_SysWMmsg*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg")); return 0; } @@ -50052,7 +51747,7 @@ static int tolua_function_Pointer_CKeyInfo___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CKeyInfo* returnVal = self->getValue(); + CKeyInfo* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CKeyInfo"); return 1; } @@ -50061,7 +51756,7 @@ static int tolua_function_Pointer_CKeyInfo___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CKeyInfo*)tolua_tousertype_dynamic(L, 2, 0, "CKeyInfo")); + (self->setValue)((CKeyInfo*)tolua_tousertype_dynamic(L, 2, 0, "CKeyInfo")); return 0; } @@ -50085,7 +51780,7 @@ static int tolua_function_Pointer_WAV_Header___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WAV_Header* returnVal = self->getValue(); + WAV_Header* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WAV_Header"); return 1; } @@ -50094,7 +51789,7 @@ static int tolua_function_Pointer_WAV_Header___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WAV_Header*)tolua_tousertype_dynamic(L, 2, 0, "WAV_Header")); + (self->setValue)((WAV_Header*)tolua_tousertype_dynamic(L, 2, 0, "WAV_Header")); return 0; } @@ -50118,7 +51813,7 @@ static int tolua_function_Pointer_CSound___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSound* returnVal = self->getValue(); + CSound* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSound"); return 1; } @@ -50127,7 +51822,7 @@ static int tolua_function_Pointer_CSound___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound")); + (self->setValue)((CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound")); return 0; } @@ -50151,7 +51846,7 @@ static int tolua_function_Pointer_CAIIdList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIIdList* returnVal = self->getValue(); + CAIIdList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAIIdList"); return 1; } @@ -50160,7 +51855,7 @@ static int tolua_function_Pointer_CAIIdList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIIdList*)tolua_tousertype_dynamic(L, 2, 0, "CAIIdList")); + (self->setValue)((CAIIdList*)tolua_tousertype_dynamic(L, 2, 0, "CAIIdList")); return 0; } @@ -50184,7 +51879,7 @@ static int tolua_function_Pointer_ResFixedHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ResFixedHeader_st* returnVal = self->getValue(); + ResFixedHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ResFixedHeader_st"); return 1; } @@ -50193,7 +51888,7 @@ static int tolua_function_Pointer_ResFixedHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ResFixedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "ResFixedHeader_st")); + (self->setValue)((ResFixedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "ResFixedHeader_st")); return 0; } @@ -50217,7 +51912,7 @@ static int tolua_function_Pointer_CResTileSet___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResTileSet* returnVal = self->getValue(); + CResTileSet* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResTileSet"); return 1; } @@ -50226,7 +51921,7 @@ static int tolua_function_Pointer_CResTileSet___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CResTileSet")); + (self->setValue)((CResTileSet*)tolua_tousertype_dynamic(L, 2, 0, "CResTileSet")); return 0; } @@ -50250,7 +51945,7 @@ static int tolua_function_Pointer_CResPVR___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResPVR* returnVal = self->getValue(); + CResPVR* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResPVR"); return 1; } @@ -50259,7 +51954,7 @@ static int tolua_function_Pointer_CResPVR___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResPVR*)tolua_tousertype_dynamic(L, 2, 0, "CResPVR")); + (self->setValue)((CResPVR*)tolua_tousertype_dynamic(L, 2, 0, "CResPVR")); return 0; } @@ -50283,7 +51978,7 @@ static int tolua_function_Pointer_CResTile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResTile* returnVal = self->getValue(); + CResTile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResTile"); return 1; } @@ -50292,7 +51987,7 @@ static int tolua_function_Pointer_CResTile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResTile*)tolua_tousertype_dynamic(L, 2, 0, "CResTile")); + (self->setValue)((CResTile*)tolua_tousertype_dynamic(L, 2, 0, "CResTile")); return 0; } @@ -50316,7 +52011,7 @@ static int tolua_function_Pointer_st_tiledef___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - st_tiledef* returnVal = self->getValue(); + st_tiledef* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "st_tiledef"); return 1; } @@ -50325,7 +52020,7 @@ static int tolua_function_Pointer_st_tiledef___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((st_tiledef*)tolua_tousertype_dynamic(L, 2, 0, "st_tiledef")); + (self->setValue)((st_tiledef*)tolua_tousertype_dynamic(L, 2, 0, "st_tiledef")); return 0; } @@ -50349,7 +52044,7 @@ static int tolua_function_Pointer_CResInfTile____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResInfTile** returnVal = self->getValue(); + CResInfTile** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -50358,7 +52053,7 @@ static int tolua_function_Pointer_CResInfTile____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResInfTile**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CResInfTile**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -50382,7 +52077,7 @@ static int tolua_function_Pointer_CGameRemoteObjectControlChange___getValue(lua_ { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameRemoteObjectControlChange* returnVal = self->getValue(); + CGameRemoteObjectControlChange* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameRemoteObjectControlChange"); return 1; } @@ -50391,7 +52086,7 @@ static int tolua_function_Pointer_CGameRemoteObjectControlChange___setValue(lua_ { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameRemoteObjectControlChange*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectControlChange")); + (self->setValue)((CGameRemoteObjectControlChange*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectControlChange")); return 0; } @@ -50415,7 +52110,7 @@ static int tolua_function_Pointer_CGameRemoteObjectDeletion___getValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameRemoteObjectDeletion* returnVal = self->getValue(); + CGameRemoteObjectDeletion* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameRemoteObjectDeletion"); return 1; } @@ -50424,7 +52119,7 @@ static int tolua_function_Pointer_CGameRemoteObjectDeletion___setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameRemoteObjectDeletion*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectDeletion")); + (self->setValue)((CGameRemoteObjectDeletion*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectDeletion")); return 0; } @@ -50448,7 +52143,7 @@ static int tolua_function_Pointer_CGameRemoteObjectListEntry____getValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameRemoteObjectListEntry** returnVal = self->getValue(); + CGameRemoteObjectListEntry** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -50457,7 +52152,7 @@ static int tolua_function_Pointer_CGameRemoteObjectListEntry____setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameRemoteObjectListEntry**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CGameRemoteObjectListEntry**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -50481,7 +52176,7 @@ static int tolua_function_Pointer_WED_WedHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WED_WedHeader_st* returnVal = self->getValue(); + WED_WedHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WED_WedHeader_st"); return 1; } @@ -50490,7 +52185,7 @@ static int tolua_function_Pointer_WED_WedHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WED_WedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_WedHeader_st")); + (self->setValue)((WED_WedHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_WedHeader_st")); return 0; } @@ -50514,7 +52209,7 @@ static int tolua_function_Pointer_WED_LayerHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WED_LayerHeader_st* returnVal = self->getValue(); + WED_LayerHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WED_LayerHeader_st"); return 1; } @@ -50523,7 +52218,7 @@ static int tolua_function_Pointer_WED_LayerHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WED_LayerHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_LayerHeader_st")); + (self->setValue)((WED_LayerHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_LayerHeader_st")); return 0; } @@ -50547,7 +52242,7 @@ static int tolua_function_Pointer_WED_PolyHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WED_PolyHeader_st* returnVal = self->getValue(); + WED_PolyHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WED_PolyHeader_st"); return 1; } @@ -50556,7 +52251,7 @@ static int tolua_function_Pointer_WED_PolyHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WED_PolyHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyHeader_st")); + (self->setValue)((WED_PolyHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyHeader_st")); return 0; } @@ -50580,7 +52275,7 @@ static int tolua_function_Pointer_WED_ScreenSectionList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WED_ScreenSectionList* returnVal = self->getValue(); + WED_ScreenSectionList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WED_ScreenSectionList"); return 1; } @@ -50589,7 +52284,7 @@ static int tolua_function_Pointer_WED_ScreenSectionList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WED_ScreenSectionList*)tolua_tousertype_dynamic(L, 2, 0, "WED_ScreenSectionList")); + (self->setValue)((WED_ScreenSectionList*)tolua_tousertype_dynamic(L, 2, 0, "WED_ScreenSectionList")); return 0; } @@ -50613,7 +52308,7 @@ static int tolua_function_Pointer_WED_PolyList_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WED_PolyList_st* returnVal = self->getValue(); + WED_PolyList_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WED_PolyList_st"); return 1; } @@ -50622,7 +52317,7 @@ static int tolua_function_Pointer_WED_PolyList_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WED_PolyList_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyList_st")); + (self->setValue)((WED_PolyList_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyList_st")); return 0; } @@ -50646,7 +52341,7 @@ static int tolua_function_Pointer_WED_PolyPoint_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WED_PolyPoint_st* returnVal = self->getValue(); + WED_PolyPoint_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "WED_PolyPoint_st"); return 1; } @@ -50655,7 +52350,7 @@ static int tolua_function_Pointer_WED_PolyPoint_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WED_PolyPoint_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyPoint_st")); + (self->setValue)((WED_PolyPoint_st*)tolua_tousertype_dynamic(L, 2, 0, "WED_PolyPoint_st")); return 0; } @@ -50679,7 +52374,7 @@ static int tolua_function_Pointer_CGameJournalEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameJournalEntry* returnVal = self->getValue(); + CGameJournalEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameJournalEntry"); return 1; } @@ -50688,7 +52383,7 @@ static int tolua_function_Pointer_CGameJournalEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry")); + (self->setValue)((CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry")); return 0; } @@ -50712,7 +52407,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameJournalEntry_____g { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList* returnVal = self->getValue(); + CTypedPtrList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -50721,7 +52416,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameJournalEntry_____s { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -50745,7 +52440,7 @@ static int tolua_function_Pointer_CWorldMapData___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWorldMapData* returnVal = self->getValue(); + CWorldMapData* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CWorldMapData"); return 1; } @@ -50754,7 +52449,7 @@ static int tolua_function_Pointer_CWorldMapData___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWorldMapData*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapData")); + (self->setValue)((CWorldMapData*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapData")); return 0; } @@ -50778,7 +52473,7 @@ static int tolua_function_Pointer_CWorldMapArea____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWorldMapArea** returnVal = self->getValue(); + CWorldMapArea** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -50787,7 +52482,7 @@ static int tolua_function_Pointer_CWorldMapArea____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWorldMapArea**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CWorldMapArea**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -50811,7 +52506,7 @@ static int tolua_function_Pointer_CWorldMapLinks____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWorldMapLinks** returnVal = self->getValue(); + CWorldMapLinks** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -50820,7 +52515,7 @@ static int tolua_function_Pointer_CWorldMapLinks____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWorldMapLinks**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CWorldMapLinks**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -50844,7 +52539,7 @@ static int tolua_function_Pointer_CMoveListEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMoveListEntry* returnVal = self->getValue(); + CMoveListEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMoveListEntry"); return 1; } @@ -50853,7 +52548,7 @@ static int tolua_function_Pointer_CMoveListEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry")); + (self->setValue)((CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry")); return 0; } @@ -50877,7 +52572,7 @@ static int tolua_function_Pointer_CVVCHashEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVVCHashEntry* returnVal = self->getValue(); + CVVCHashEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVVCHashEntry"); return 1; } @@ -50886,7 +52581,7 @@ static int tolua_function_Pointer_CVVCHashEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVVCHashEntry*)tolua_tousertype_dynamic(L, 2, 0, "CVVCHashEntry")); + (self->setValue)((CVVCHashEntry*)tolua_tousertype_dynamic(L, 2, 0, "CVVCHashEntry")); return 0; } @@ -50910,7 +52605,7 @@ static int tolua_function_Pointer_CMemINISection___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMemINISection* returnVal = self->getValue(); + CMemINISection* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMemINISection"); return 1; } @@ -50919,7 +52614,7 @@ static int tolua_function_Pointer_CMemINISection___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMemINISection*)tolua_tousertype_dynamic(L, 2, 0, "CMemINISection")); + (self->setValue)((CMemINISection*)tolua_tousertype_dynamic(L, 2, 0, "CMemINISection")); return 0; } @@ -50943,7 +52638,7 @@ static int tolua_function_Pointer_CGameEffectUsability___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameEffectUsability* returnVal = self->getValue(); + CGameEffectUsability* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffectUsability"); return 1; } @@ -50952,7 +52647,7 @@ static int tolua_function_Pointer_CGameEffectUsability___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability")); + (self->setValue)((CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability")); return 0; } @@ -50976,7 +52671,7 @@ static int tolua_function_Pointer_CStoreFileItem___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CStoreFileItem* returnVal = self->getValue(); + CStoreFileItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CStoreFileItem"); return 1; } @@ -50985,7 +52680,7 @@ static int tolua_function_Pointer_CStoreFileItem___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem")); + (self->setValue)((CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem")); return 0; } @@ -51009,7 +52704,7 @@ static int tolua_function_Pointer_CStoreFileDrinks___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CStoreFileDrinks* returnVal = self->getValue(); + CStoreFileDrinks* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CStoreFileDrinks"); return 1; } @@ -51018,7 +52713,7 @@ static int tolua_function_Pointer_CStoreFileDrinks___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CStoreFileDrinks*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileDrinks")); + (self->setValue)((CStoreFileDrinks*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileDrinks")); return 0; } @@ -51042,7 +52737,7 @@ static int tolua_function_Pointer_CStoreFileSpell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CStoreFileSpell* returnVal = self->getValue(); + CStoreFileSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CStoreFileSpell"); return 1; } @@ -51051,7 +52746,7 @@ static int tolua_function_Pointer_CStoreFileSpell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CStoreFileSpell*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileSpell")); + (self->setValue)((CStoreFileSpell*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileSpell")); return 0; } @@ -51075,7 +52770,7 @@ static int tolua_function_Pointer_CMemINIValue___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMemINIValue* returnVal = self->getValue(); + CMemINIValue* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMemINIValue"); return 1; } @@ -51084,7 +52779,7 @@ static int tolua_function_Pointer_CMemINIValue___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue")); + (self->setValue)((CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue")); return 0; } @@ -51108,7 +52803,7 @@ static int tolua_function_Pointer_CSpawnList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawnList* returnVal = self->getValue(); + CSpawnList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpawnList"); return 1; } @@ -51117,7 +52812,7 @@ static int tolua_function_Pointer_CSpawnList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawnList*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnList")); + (self->setValue)((CSpawnList*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnList")); return 0; } @@ -51141,7 +52836,7 @@ static int tolua_function_Pointer_Item_Header_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Item_Header_st* returnVal = self->getValue(); + Item_Header_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Item_Header_st"); return 1; } @@ -51150,7 +52845,7 @@ static int tolua_function_Pointer_Item_Header_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Item_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_Header_st")); + (self->setValue)((Item_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_Header_st")); return 0; } @@ -51174,7 +52869,7 @@ static int tolua_function_Pointer_CSpawn___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawn* returnVal = self->getValue(); + CSpawn* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpawn"); return 1; } @@ -51183,7 +52878,7 @@ static int tolua_function_Pointer_CSpawn___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn")); + (self->setValue)((CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn")); return 0; } @@ -51207,7 +52902,7 @@ static int tolua_function_Pointer_CSpawnVar___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawnVar* returnVal = self->getValue(); + CSpawnVar* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpawnVar"); return 1; } @@ -51216,7 +52911,7 @@ static int tolua_function_Pointer_CSpawnVar___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawnVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnVar")); + (self->setValue)((CSpawnVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnVar")); return 0; } @@ -51240,7 +52935,7 @@ static int tolua_function_Pointer_CException___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CException* returnVal = self->getValue(); + CException* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CException"); return 1; } @@ -51249,7 +52944,7 @@ static int tolua_function_Pointer_CException___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CException*)tolua_tousertype_dynamic(L, 2, 0, "CException")); + (self->setValue)((CException*)tolua_tousertype_dynamic(L, 2, 0, "CException")); return 0; } @@ -51273,7 +52968,7 @@ static int tolua_function_Pointer_CFile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CFile* returnVal = self->getValue(); + CFile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CFile"); return 1; } @@ -51282,7 +52977,7 @@ static int tolua_function_Pointer_CFile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CFile*)tolua_tousertype_dynamic(L, 2, 0, "CFile")); + (self->setValue)((CFile*)tolua_tousertype_dynamic(L, 2, 0, "CFile")); return 0; } @@ -51306,7 +53001,7 @@ static int tolua_function_Pointer_CFileException___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CFileException* returnVal = self->getValue(); + CFileException* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CFileException"); return 1; } @@ -51315,7 +53010,7 @@ static int tolua_function_Pointer_CFileException___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CFileException*)tolua_tousertype_dynamic(L, 2, 0, "CFileException")); + (self->setValue)((CFileException*)tolua_tousertype_dynamic(L, 2, 0, "CFileException")); return 0; } @@ -51339,7 +53034,7 @@ static int tolua_function_Pointer_CBaldurEngine___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CBaldurEngine* returnVal = self->getValue(); + CBaldurEngine* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CBaldurEngine"); return 1; } @@ -51348,7 +53043,7 @@ static int tolua_function_Pointer_CBaldurEngine___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CBaldurEngine*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurEngine")); + (self->setValue)((CBaldurEngine*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CBaldurEngine")); return 0; } @@ -51372,7 +53067,7 @@ static int tolua_function_Pointer_CResWebm___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResWebm* returnVal = self->getValue(); + CResWebm* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResWebm"); return 1; } @@ -51381,7 +53076,7 @@ static int tolua_function_Pointer_CResWebm___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResWebm*)tolua_tousertype_dynamic(L, 2, 0, "CResWebm")); + (self->setValue)((CResWebm*)tolua_tousertype_dynamic(L, 2, 0, "CResWebm")); return 0; } @@ -51405,7 +53100,7 @@ static int tolua_function_Pointer_CStringList__CNode___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CStringList::CNode* returnVal = self->getValue(); + CStringList::CNode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CStringList::CNode"); return 1; } @@ -51414,7 +53109,7 @@ static int tolua_function_Pointer_CStringList__CNode___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CStringList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CStringList::CNode")); + (self->setValue)((CStringList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CStringList::CNode")); return 0; } @@ -51438,7 +53133,7 @@ static int tolua_function_Pointer_CWeaponIdentification___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CWeaponIdentification* returnVal = self->getValue(); + CWeaponIdentification* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CWeaponIdentification"); return 1; } @@ -51447,7 +53142,7 @@ static int tolua_function_Pointer_CWeaponIdentification___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification")); + (self->setValue)((CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification")); return 0; } @@ -51471,7 +53166,7 @@ static int tolua_function_Pointer_CSelectiveBonus___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSelectiveBonus* returnVal = self->getValue(); + CSelectiveBonus* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSelectiveBonus"); return 1; } @@ -51480,7 +53175,7 @@ static int tolua_function_Pointer_CSelectiveBonus___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus")); + (self->setValue)((CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus")); return 0; } @@ -51504,7 +53199,7 @@ static int tolua_function_Pointer_CImmunitiesItemEquip___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CImmunitiesItemEquip* returnVal = self->getValue(); + CImmunitiesItemEquip* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemEquip"); return 1; } @@ -51513,7 +53208,7 @@ static int tolua_function_Pointer_CImmunitiesItemEquip___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip")); + (self->setValue)((CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip")); return 0; } @@ -51537,7 +53232,7 @@ static int tolua_function_Pointer_CImmunitiesItemTypeEquip___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CImmunitiesItemTypeEquip* returnVal = self->getValue(); + CImmunitiesItemTypeEquip* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemTypeEquip"); return 1; } @@ -51546,7 +53241,7 @@ static int tolua_function_Pointer_CImmunitiesItemTypeEquip___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip")); + (self->setValue)((CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip")); return 0; } @@ -51570,7 +53265,7 @@ static int tolua_function_Pointer_CImmunitySpell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CImmunitySpell* returnVal = self->getValue(); + CImmunitySpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CImmunitySpell"); return 1; } @@ -51579,7 +53274,7 @@ static int tolua_function_Pointer_CImmunitySpell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell")); + (self->setValue)((CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell")); return 0; } @@ -51603,7 +53298,7 @@ static int tolua_function_Pointer_CSchoolAndSecondaryDecrementing___getValue(lua { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSchoolAndSecondaryDecrementing* returnVal = self->getValue(); + CSchoolAndSecondaryDecrementing* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSchoolAndSecondaryDecrementing"); return 1; } @@ -51612,7 +53307,7 @@ static int tolua_function_Pointer_CSchoolAndSecondaryDecrementing___setValue(lua { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing")); + (self->setValue)((CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing")); return 0; } @@ -51636,7 +53331,7 @@ static int tolua_function_Pointer_CPersistantEffect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CPersistantEffect* returnVal = self->getValue(); + CPersistantEffect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CPersistantEffect"); return 1; } @@ -51645,7 +53340,7 @@ static int tolua_function_Pointer_CPersistantEffect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect")); + (self->setValue)((CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect")); return 0; } @@ -51669,7 +53364,7 @@ static int tolua_function_Pointer_CColorRange___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CColorRange* returnVal = self->getValue(); + CColorRange* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CColorRange"); return 1; } @@ -51678,7 +53373,7 @@ static int tolua_function_Pointer_CColorRange___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange")); + (self->setValue)((CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange")); return 0; } @@ -51702,7 +53397,7 @@ static int tolua_function_Pointer_CColorEffect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CColorEffect* returnVal = self->getValue(); + CColorEffect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CColorEffect"); return 1; } @@ -51711,7 +53406,7 @@ static int tolua_function_Pointer_CColorEffect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect")); + (self->setValue)((CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect")); return 0; } @@ -51735,7 +53430,7 @@ static int tolua_function_Pointer_CSelectiveWeaponType___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSelectiveWeaponType* returnVal = self->getValue(); + CSelectiveWeaponType* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSelectiveWeaponType"); return 1; } @@ -51744,7 +53439,7 @@ static int tolua_function_Pointer_CSelectiveWeaponType___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType")); + (self->setValue)((CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType")); return 0; } @@ -51768,7 +53463,7 @@ static int tolua_function_Pointer_CCriticalEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCriticalEntry* returnVal = self->getValue(); + CCriticalEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCriticalEntry"); return 1; } @@ -51777,7 +53472,7 @@ static int tolua_function_Pointer_CCriticalEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry")); + (self->setValue)((CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry")); return 0; } @@ -51801,7 +53496,7 @@ static int tolua_function_Pointer_CCreatureFileHeader___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCreatureFileHeader* returnVal = self->getValue(); + CCreatureFileHeader* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileHeader"); return 1; } @@ -51810,7 +53505,7 @@ static int tolua_function_Pointer_CCreatureFileHeader___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCreatureFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileHeader")); + (self->setValue)((CCreatureFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileHeader")); return 0; } @@ -51834,7 +53529,7 @@ static int tolua_function_Pointer_CGameFile___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameFile* returnVal = self->getValue(); + CGameFile* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameFile"); return 1; } @@ -51843,7 +53538,7 @@ static int tolua_function_Pointer_CGameFile___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameFile*)tolua_tousertype_dynamic(L, 2, 0, "CGameFile")); + (self->setValue)((CGameFile*)tolua_tousertype_dynamic(L, 2, 0, "CGameFile")); return 0; } @@ -51867,7 +53562,7 @@ static int tolua_function_Pointer_CSavedGamePartyCreature___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSavedGamePartyCreature* returnVal = self->getValue(); + CSavedGamePartyCreature* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSavedGamePartyCreature"); return 1; } @@ -51876,7 +53571,7 @@ static int tolua_function_Pointer_CSavedGamePartyCreature___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGamePartyCreature")); + (self->setValue)((CSavedGamePartyCreature*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGamePartyCreature")); return 0; } @@ -51900,7 +53595,7 @@ static int tolua_function_Pointer_CAbilityData___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAbilityData* returnVal = self->getValue(); + CAbilityData* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAbilityData"); return 1; } @@ -51909,7 +53604,7 @@ static int tolua_function_Pointer_CAbilityData___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAbilityData*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityData")); + (self->setValue)((CAbilityData*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityData")); return 0; } @@ -51933,7 +53628,7 @@ static int tolua_function_Pointer_CGameAbilityList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameAbilityList* returnVal = self->getValue(); + CGameAbilityList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameAbilityList"); return 1; } @@ -51942,7 +53637,7 @@ static int tolua_function_Pointer_CGameAbilityList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameAbilityList*)tolua_tousertype_dynamic(L, 2, 0, "CGameAbilityList")); + (self->setValue)((CGameAbilityList*)tolua_tousertype_dynamic(L, 2, 0, "CGameAbilityList")); return 0; } @@ -51966,7 +53661,7 @@ static int tolua_function_Pointer_CSaveGameSlot___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSaveGameSlot* returnVal = self->getValue(); + CSaveGameSlot* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSaveGameSlot"); return 1; } @@ -51975,7 +53670,7 @@ static int tolua_function_Pointer_CSaveGameSlot___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSaveGameSlot*)tolua_tousertype_dynamic(L, 2, 0, "CSaveGameSlot")); + (self->setValue)((CSaveGameSlot*)tolua_tousertype_dynamic(L, 2, 0, "CSaveGameSlot")); return 0; } @@ -51999,7 +53694,7 @@ static int tolua_function_Pointer_MOSAICHEADERV2___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - MOSAICHEADERV2* returnVal = self->getValue(); + MOSAICHEADERV2* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "MOSAICHEADERV2"); return 1; } @@ -52008,7 +53703,7 @@ static int tolua_function_Pointer_MOSAICHEADERV2___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((MOSAICHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICHEADERV2")); + (self->setValue)((MOSAICHEADERV2*)tolua_tousertype_dynamic(L, 2, 0, "MOSAICHEADERV2")); return 0; } @@ -52032,7 +53727,7 @@ static int tolua_function_Pointer_mosHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - mosHeader_st* returnVal = self->getValue(); + mosHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "mosHeader_st"); return 1; } @@ -52041,7 +53736,7 @@ static int tolua_function_Pointer_mosHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((mosHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "mosHeader_st")); + (self->setValue)((mosHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "mosHeader_st")); return 0; } @@ -52065,7 +53760,7 @@ static int tolua_function_Pointer_CGameOptions___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameOptions* returnVal = self->getValue(); + CGameOptions* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CGameOptions"); return 1; } @@ -52074,7 +53769,7 @@ static int tolua_function_Pointer_CGameOptions___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions")); + (self->setValue)((CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions")); return 0; } @@ -52098,7 +53793,7 @@ static int tolua_function_Pointer_CSnowFlake___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSnowFlake* returnVal = self->getValue(); + CSnowFlake* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSnowFlake"); return 1; } @@ -52107,7 +53802,7 @@ static int tolua_function_Pointer_CSnowFlake___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSnowFlake*)tolua_tousertype_dynamic(L, 2, 0, "CSnowFlake")); + (self->setValue)((CSnowFlake*)tolua_tousertype_dynamic(L, 2, 0, "CSnowFlake")); return 0; } @@ -52131,7 +53826,7 @@ static int tolua_function_Pointer_CRainDrop___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CRainDrop* returnVal = self->getValue(); + CRainDrop* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CRainDrop"); return 1; } @@ -52140,7 +53835,7 @@ static int tolua_function_Pointer_CRainDrop___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CRainDrop*)tolua_tousertype_dynamic(L, 2, 0, "CRainDrop")); + (self->setValue)((CRainDrop*)tolua_tousertype_dynamic(L, 2, 0, "CRainDrop")); return 0; } @@ -52164,7 +53859,7 @@ static int tolua_function_Pointer_unsigned_long___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned long* returnVal = self->getValue(); + unsigned long* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -52173,7 +53868,7 @@ static int tolua_function_Pointer_unsigned_long___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((unsigned long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -52197,7 +53892,7 @@ static int tolua_function_Pointer_CList_unsigned_long_unsigned_long_____getValue { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CList* returnVal = self->getValue(); + CList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CList"); return 1; } @@ -52206,7 +53901,7 @@ static int tolua_function_Pointer_CList_unsigned_long_unsigned_long_____setValue { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CList*)tolua_tousertype_dynamic(L, 2, 0, "CList")); + (self->setValue)((CList*)tolua_tousertype_dynamic(L, 2, 0, "CList")); return 0; } @@ -52230,7 +53925,7 @@ static int tolua_function_Pointer_CUIControlTextDisplay___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CUIControlTextDisplay* returnVal = self->getValue(); + CUIControlTextDisplay* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CUIControlTextDisplay"); return 1; } @@ -52239,7 +53934,7 @@ static int tolua_function_Pointer_CUIControlTextDisplay___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CUIControlTextDisplay*)tolua_tousertype_dynamic(L, 2, 0, "CUIControlTextDisplay")); + (self->setValue)((CUIControlTextDisplay*)tolua_tousertype_dynamic(L, 2, 0, "CUIControlTextDisplay")); return 0; } @@ -52263,7 +53958,7 @@ static int tolua_function_Pointer_CMapStringToString__CAssoc____getValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMapStringToString::CAssoc** returnVal = self->getValue(); + CMapStringToString::CAssoc** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -52272,7 +53967,7 @@ static int tolua_function_Pointer_CMapStringToString__CAssoc____setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMapStringToString::CAssoc**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CMapStringToString::CAssoc**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -52296,7 +53991,7 @@ static int tolua_function_Pointer_CAIScript____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAIScript** returnVal = self->getValue(); + CAIScript** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -52305,7 +54000,7 @@ static int tolua_function_Pointer_CAIScript____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAIScript**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CAIScript**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -52329,7 +54024,7 @@ static int tolua_function_Pointer_CSpawnPoint___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawnPoint* returnVal = self->getValue(); + CSpawnPoint* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpawnPoint"); return 1; } @@ -52338,7 +54033,7 @@ static int tolua_function_Pointer_CSpawnPoint___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawnPoint*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPoint")); + (self->setValue)((CSpawnPoint*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPoint")); return 0; } @@ -52362,7 +54057,7 @@ static int tolua_function_Pointer_CSpawnPointVar___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawnPointVar* returnVal = self->getValue(); + CSpawnPointVar* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpawnPointVar"); return 1; } @@ -52371,7 +54066,7 @@ static int tolua_function_Pointer_CSpawnPointVar___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawnPointVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPointVar")); + (self->setValue)((CSpawnPointVar*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPointVar")); return 0; } @@ -52395,7 +54090,7 @@ static int tolua_function_Pointer_CGameAnimationType___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameAnimationType* returnVal = self->getValue(); + CGameAnimationType* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameAnimationType"); return 1; } @@ -52404,7 +54099,7 @@ static int tolua_function_Pointer_CGameAnimationType___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameAnimationType*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimationType")); + (self->setValue)((CGameAnimationType*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimationType")); return 0; } @@ -52428,7 +54123,7 @@ static int tolua_function_Pointer_CBounceEntry___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CBounceEntry* returnVal = self->getValue(); + CBounceEntry* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CBounceEntry"); return 1; } @@ -52437,7 +54132,7 @@ static int tolua_function_Pointer_CBounceEntry___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry")); + (self->setValue)((CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry")); return 0; } @@ -52461,7 +54156,7 @@ static int tolua_function_Pointer_CSequenceSound___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSequenceSound* returnVal = self->getValue(); + CSequenceSound* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSequenceSound"); return 1; } @@ -52470,7 +54165,7 @@ static int tolua_function_Pointer_CSequenceSound___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound")); + (self->setValue)((CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound")); return 0; } @@ -52494,7 +54189,7 @@ static int tolua_function_Pointer_const_unsigned___int16___getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const unsigned __int16* returnVal = self->getValue(); + const unsigned __int16* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -52519,7 +54214,7 @@ static int tolua_function_Pointer_CVidPalette___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVidPalette* returnVal = self->getValue(); + CVidPalette* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVidPalette"); return 1; } @@ -52528,7 +54223,7 @@ static int tolua_function_Pointer_CVidPalette___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVidPalette*)tolua_tousertype_dynamic(L, 2, 0, "CVidPalette")); + (self->setValue)((CVidPalette*)tolua_tousertype_dynamic(L, 2, 0, "CVidPalette")); return 0; } @@ -52552,7 +54247,7 @@ static int tolua_function_Pointer_CInfinity___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CInfinity* returnVal = self->getValue(); + CInfinity* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CInfinity"); return 1; } @@ -52561,7 +54256,7 @@ static int tolua_function_Pointer_CInfinity___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CInfinity*)tolua_tousertype_dynamic(L, 2, 0, "CInfinity")); + (self->setValue)((CInfinity*)tolua_tousertype_dynamic(L, 2, 0, "CInfinity")); return 0; } @@ -52585,7 +54280,7 @@ static int tolua_function_Pointer___int16___getValue(lua_State* L) { Pointer<__int16*>* self = (Pointer<__int16*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int16*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int16* returnVal = self->getValue(); + __int16* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -52594,7 +54289,7 @@ static int tolua_function_Pointer___int16___setValue(lua_State* L) { Pointer<__int16*>* self = (Pointer<__int16*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int16*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((__int16*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); + (self->setValue)((__int16*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); return 0; } @@ -52618,7 +54313,7 @@ static int tolua_function_Pointer_Spell_ability_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Spell_ability_st* returnVal = self->getValue(); + Spell_ability_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Spell_ability_st"); return 1; } @@ -52627,7 +54322,7 @@ static int tolua_function_Pointer_Spell_ability_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Spell_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_ability_st")); + (self->setValue)((Spell_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_ability_st")); return 0; } @@ -52651,7 +54346,7 @@ static int tolua_function_Pointer_Spell_Header_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - Spell_Header_st* returnVal = self->getValue(); + Spell_Header_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Spell_Header_st"); return 1; } @@ -52660,7 +54355,7 @@ static int tolua_function_Pointer_Spell_Header_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((Spell_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_Header_st")); + (self->setValue)((Spell_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "Spell_Header_st")); return 0; } @@ -52684,7 +54379,7 @@ static int tolua_function_Pointer_CGameSprite____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameSprite** returnVal = self->getValue(); + CGameSprite** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -52693,7 +54388,7 @@ static int tolua_function_Pointer_CGameSprite____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameSprite**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CGameSprite**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -52717,7 +54412,7 @@ static int tolua_function_Pointer_CAreaFileProjectileObject___getValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAreaFileProjectileObject* returnVal = self->getValue(); + CAreaFileProjectileObject* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAreaFileProjectileObject"); return 1; } @@ -52726,7 +54421,7 @@ static int tolua_function_Pointer_CAreaFileProjectileObject___setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAreaFileProjectileObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileProjectileObject")); + (self->setValue)((CAreaFileProjectileObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileProjectileObject")); return 0; } @@ -52750,7 +54445,7 @@ static int tolua_function_Pointer_SProjectileWrapper___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SProjectileWrapper* returnVal = self->getValue(); + SProjectileWrapper* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SProjectileWrapper"); return 1; } @@ -52759,7 +54454,7 @@ static int tolua_function_Pointer_SProjectileWrapper___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SProjectileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SProjectileWrapper")); + (self->setValue)((SProjectileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SProjectileWrapper")); return 0; } @@ -52783,7 +54478,7 @@ static int tolua_function_Pointer_CItem____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CItem** returnVal = self->getValue(); + CItem** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -52792,7 +54487,7 @@ static int tolua_function_Pointer_CItem____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CItem**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); + (self->setValue)((CItem**)tolua_tousertype_dynamic(L, 2, 0, "Pointer")); return 0; } @@ -52816,7 +54511,7 @@ static int tolua_function_Pointer_CGameContainer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameContainer* returnVal = self->getValue(); + CGameContainer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameContainer"); return 1; } @@ -52825,7 +54520,7 @@ static int tolua_function_Pointer_CGameContainer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameContainer*)tolua_tousertype_dynamic(L, 2, 0, "CGameContainer")); + (self->setValue)((CGameContainer*)tolua_tousertype_dynamic(L, 2, 0, "CGameContainer")); return 0; } @@ -52849,7 +54544,7 @@ static int tolua_function_Pointer_CParticle___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CParticle* returnVal = self->getValue(); + CParticle* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CParticle"); return 1; } @@ -52858,7 +54553,7 @@ static int tolua_function_Pointer_CParticle___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle")); + (self->setValue)((CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle")); return 0; } @@ -52882,7 +54577,7 @@ static int tolua_function_Pointer_CProjectileBAM___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CProjectileBAM* returnVal = self->getValue(); + CProjectileBAM* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CProjectileBAM"); return 1; } @@ -52891,7 +54586,7 @@ static int tolua_function_Pointer_CProjectileBAM___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CProjectileBAM*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAM")); + (self->setValue)((CProjectileBAM*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAM")); return 0; } @@ -52915,7 +54610,7 @@ static int tolua_function_Pointer_CGameDialogReply___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameDialogReply* returnVal = self->getValue(); + CGameDialogReply* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameDialogReply"); return 1; } @@ -52924,7 +54619,7 @@ static int tolua_function_Pointer_CGameDialogReply___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameDialogReply*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogReply")); + (self->setValue)((CGameDialogReply*)tolua_tousertype_dynamic(L, 2, 0, "CGameDialogReply")); return 0; } @@ -52948,7 +54643,7 @@ static int tolua_function_Pointer_CGameTrigger___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameTrigger* returnVal = self->getValue(); + CGameTrigger* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameTrigger"); return 1; } @@ -52957,7 +54652,7 @@ static int tolua_function_Pointer_CGameTrigger___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameTrigger*)tolua_tousertype_dynamic(L, 2, 0, "CGameTrigger")); + (self->setValue)((CGameTrigger*)tolua_tousertype_dynamic(L, 2, 0, "CGameTrigger")); return 0; } @@ -52981,7 +54676,7 @@ static int tolua_function_Pointer_CAreaFileContainer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAreaFileContainer* returnVal = self->getValue(); + CAreaFileContainer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAreaFileContainer"); return 1; } @@ -52990,7 +54685,7 @@ static int tolua_function_Pointer_CAreaFileContainer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAreaFileContainer*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileContainer")); + (self->setValue)((CAreaFileContainer*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileContainer")); return 0; } @@ -53014,7 +54709,7 @@ static int tolua_function_Pointer_CCreatureFileItem___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CCreatureFileItem* returnVal = self->getValue(); + CCreatureFileItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileItem"); return 1; } @@ -53023,7 +54718,7 @@ static int tolua_function_Pointer_CCreatureFileItem___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CCreatureFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileItem")); + (self->setValue)((CCreatureFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileItem")); return 0; } @@ -53047,7 +54742,7 @@ static int tolua_function_Pointer_CAreaPoint___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAreaPoint* returnVal = self->getValue(); + CAreaPoint* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CAreaPoint"); return 1; } @@ -53056,7 +54751,7 @@ static int tolua_function_Pointer_CAreaPoint___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAreaPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaPoint")); + (self->setValue)((CAreaPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaPoint")); return 0; } @@ -53080,7 +54775,7 @@ static int tolua_function_Pointer_uiColumn___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uiColumn* returnVal = self->getValue(); + uiColumn* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "uiColumn"); return 1; } @@ -53089,7 +54784,7 @@ static int tolua_function_Pointer_uiColumn___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uiColumn*)tolua_tousertype_dynamic(L, 2, 0, "uiColumn")); + (self->setValue)((uiColumn*)tolua_tousertype_dynamic(L, 2, 0, "uiColumn")); return 0; } @@ -53113,7 +54808,7 @@ static int tolua_function_Pointer_CProjectileSegment___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CProjectileSegment* returnVal = self->getValue(); + CProjectileSegment* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CProjectileSegment"); return 1; } @@ -53122,7 +54817,7 @@ static int tolua_function_Pointer_CProjectileSegment___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CProjectileSegment*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSegment")); + (self->setValue)((CProjectileSegment*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSegment")); return 0; } @@ -53146,7 +54841,7 @@ static int tolua_function_Pointer_CProjectileNewScorcher___getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CProjectileNewScorcher* returnVal = self->getValue(); + CProjectileNewScorcher* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CProjectileNewScorcher"); return 1; } @@ -53155,7 +54850,7 @@ static int tolua_function_Pointer_CProjectileNewScorcher___setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileNewScorcher")); + (self->setValue)((CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileNewScorcher")); return 0; } @@ -53179,7 +54874,7 @@ static int tolua_function_Pointer_UI_Header_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - UI_Header_st* returnVal = self->getValue(); + UI_Header_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "UI_Header_st"); return 1; } @@ -53188,7 +54883,7 @@ static int tolua_function_Pointer_UI_Header_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((UI_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_Header_st")); + (self->setValue)((UI_Header_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_Header_st")); return 0; } @@ -53212,7 +54907,7 @@ static int tolua_function_Pointer_UI_PanelHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - UI_PanelHeader_st* returnVal = self->getValue(); + UI_PanelHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "UI_PanelHeader_st"); return 1; } @@ -53221,7 +54916,7 @@ static int tolua_function_Pointer_UI_PanelHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((UI_PanelHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_PanelHeader_st")); + (self->setValue)((UI_PanelHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_PanelHeader_st")); return 0; } @@ -53245,7 +54940,7 @@ static int tolua_function_Pointer_UI_ControlTableEntry_st___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - UI_ControlTableEntry_st* returnVal = self->getValue(); + UI_ControlTableEntry_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "UI_ControlTableEntry_st"); return 1; } @@ -53254,7 +54949,7 @@ static int tolua_function_Pointer_UI_ControlTableEntry_st___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((UI_ControlTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_ControlTableEntry_st")); + (self->setValue)((UI_ControlTableEntry_st*)tolua_tousertype_dynamic(L, 2, 0, "UI_ControlTableEntry_st")); return 0; } @@ -53278,7 +54973,7 @@ static int tolua_function_Pointer_PLTHeader_st___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - PLTHeader_st* returnVal = self->getValue(); + PLTHeader_st* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "PLTHeader_st"); return 1; } @@ -53287,10 +54982,60 @@ static int tolua_function_Pointer_PLTHeader_st___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((PLTHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "PLTHeader_st")); + (self->setValue)((PLTHeader_st*)tolua_tousertype_dynamic(L, 2, 0, "PLTHeader_st")); return 0; } +static int tolua_get_Pointer_const_SDL_MessageBoxButtonData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_const_SDL_MessageBoxButtonData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const SDL_MessageBoxButtonData**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_const_SDL_MessageBoxButtonData___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + const SDL_MessageBoxButtonData* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxButtonData"); + return 1; +} + +static int tolua_get_Pointer_const_SDL_MessageBoxColorScheme___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_const_SDL_MessageBoxColorScheme___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const SDL_MessageBoxColorScheme**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_const_SDL_MessageBoxColorScheme___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + const SDL_MessageBoxColorScheme* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxColorScheme"); + return 1; +} + static int tolua_get_Pointer_CTimer___reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -53311,7 +55056,7 @@ static int tolua_function_Pointer_CTimer___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTimer* returnVal = self->getValue(); + CTimer* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTimer"); return 1; } @@ -53320,7 +55065,7 @@ static int tolua_function_Pointer_CTimer___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer")); + (self->setValue)((CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer")); return 0; } @@ -53344,7 +55089,7 @@ static int tolua_function_Pointer_CProjectileMushroom___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CProjectileMushroom* returnVal = self->getValue(); + CProjectileMushroom* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CProjectileMushroom"); return 1; } @@ -53353,10 +55098,291 @@ static int tolua_function_Pointer_CProjectileMushroom___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CProjectileMushroom*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMushroom")); + (self->setValue)((CProjectileMushroom*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMushroom")); return 0; } +static int tolua_get_Pointer_HDC_____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_HDC_____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (HDC__**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_HDC_____getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + HDC__* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "HDC__"); + return 1; +} + +static int tolua_function_Pointer_HDC_____setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((HDC__*)tolua_tousertype_dynamic(L, 2, 0, "HDC__")); + return 0; +} + +static int tolua_get_Pointer_SDL_WindowShapeMode___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_WindowShapeMode___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_WindowShapeMode**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_WindowShapeMode___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_WindowShapeMode* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_WindowShapeMode"); + return 1; +} + +static int tolua_function_Pointer_SDL_WindowShapeMode___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeMode")); + return 0; +} + +static int tolua_get_Pointer_SDL_SysWMinfo___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_SysWMinfo___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_SysWMinfo**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_SysWMinfo___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_SysWMinfo* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_SysWMinfo"); + return 1; +} + +static int tolua_function_Pointer_SDL_SysWMinfo___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo")); + return 0; +} + +static int tolua_get_Pointer_const_SDL_MessageBoxData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_const_SDL_MessageBoxData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const SDL_MessageBoxData**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_const_SDL_MessageBoxData___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + const SDL_MessageBoxData* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxData"); + return 1; +} + +static int tolua_get_Pointer_SDL_GLDriverData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_GLDriverData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_GLDriverData**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_GLDriverData___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_GLDriverData* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_GLDriverData"); + return 1; +} + +static int tolua_function_Pointer_SDL_GLDriverData___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_GLDriverData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_GLDriverData")); + return 0; +} + +static int tolua_get_Pointer_SDL_EGL_VideoData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_EGL_VideoData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_EGL_VideoData**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_EGL_VideoData___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_EGL_VideoData* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_EGL_VideoData"); + return 1; +} + +static int tolua_function_Pointer_SDL_EGL_VideoData___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_EGL_VideoData")); + return 0; +} + +static int tolua_get_Pointer_SDL_PrivateGLESData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_SDL_PrivateGLESData___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_PrivateGLESData**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_SDL_PrivateGLESData___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_PrivateGLESData* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_PrivateGLESData"); + return 1; +} + +static int tolua_function_Pointer_SDL_PrivateGLESData___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((SDL_PrivateGLESData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PrivateGLESData")); + return 0; +} + +static int tolua_get_Pointer_HGLRC_____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_HGLRC_____reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (HGLRC__**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_HGLRC_____getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + HGLRC__* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "HGLRC__"); + return 1; +} + +static int tolua_function_Pointer_HGLRC_____setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((HGLRC__*)tolua_tousertype_dynamic(L, 2, 0, "HGLRC__")); + return 0; +} + +static int tolua_get_Pointer_const_float___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); + return 1; +} + +static int tolua_set_Pointer_const_float___reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (const float**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); + return 0; +} + +static int tolua_function_Pointer_const_float___getValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + const float* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "Primitive"); + return 1; +} + static int tolua_get_Pointer_VariableArray_CString____reference(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); @@ -53377,7 +55403,7 @@ static int tolua_function_Pointer_VariableArray_CString____getValue(lua_State* L { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -53386,7 +55412,7 @@ static int tolua_function_Pointer_VariableArray_CString____setValue(lua_State* L { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -53410,7 +55436,7 @@ static int tolua_function_Pointer_VariableArray_CAIId_____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -53419,7 +55445,7 @@ static int tolua_function_Pointer_VariableArray_CAIId_____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -53443,7 +55469,7 @@ static int tolua_function_Pointer_VariableArray_int____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -53452,7 +55478,7 @@ static int tolua_function_Pointer_VariableArray_int____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -53476,7 +55502,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long___CNode___getValue { Pointer::CNode*>* self = (Pointer::CNode*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::CNode*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList::CNode* returnVal = self->getValue(); + CTypedPtrList::CNode* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -53485,7 +55511,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long___CNode___setValue { Pointer::CNode*>* self = (Pointer::CNode*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::CNode*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->setValue)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -53509,7 +55535,7 @@ static int tolua_function_Pointer_VariableArray_void_____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -53518,7 +55544,7 @@ static int tolua_function_Pointer_VariableArray_void_____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -53542,7 +55568,7 @@ static int tolua_function_Pointer_CScreenStoreItem___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenStoreItem* returnVal = self->getValue(); + CScreenStoreItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CScreenStoreItem"); return 1; } @@ -53551,7 +55577,7 @@ static int tolua_function_Pointer_CScreenStoreItem___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem")); + (self->setValue)((CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem")); return 0; } @@ -53575,7 +55601,7 @@ static int tolua_function_Pointer_CSoundChannel___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSoundChannel* returnVal = self->getValue(); + CSoundChannel* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSoundChannel"); return 1; } @@ -53584,7 +55610,7 @@ static int tolua_function_Pointer_CSoundChannel___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSoundChannel*)tolua_tousertype_dynamic(L, 2, 0, "CSoundChannel")); + (self->setValue)((CSoundChannel*)tolua_tousertype_dynamic(L, 2, 0, "CSoundChannel")); return 0; } @@ -53608,7 +55634,7 @@ static int tolua_function_Pointer_CVoice___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CVoice* returnVal = self->getValue(); + CVoice* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CVoice"); return 1; } @@ -53617,7 +55643,7 @@ static int tolua_function_Pointer_CVoice___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice")); + (self->setValue)((CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice")); return 0; } @@ -53641,7 +55667,7 @@ static int tolua_function_Pointer_CVideo__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVideo*)tolua_tousertype_dynamic(L, 2, 0, "CVideo")); + (self->setValue)(*(CVideo*)tolua_tousertype_dynamic(L, 2, 0, "CVideo")); return 0; } @@ -53665,7 +55691,7 @@ static int tolua_function_Pointer_CallInfo__u_t__l_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CallInfo::u_t::l_t*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo::u_t::l_t")); + (self->setValue)(*(CallInfo::u_t::l_t*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo::u_t::l_t")); return 0; } @@ -53721,7 +55747,7 @@ static int tolua_function_Pointer_size_t__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - size_t returnVal = self->getValue(); + size_t returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53730,7 +55756,7 @@ static int tolua_function_Pointer_size_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -53754,7 +55780,7 @@ static int tolua_function_Pointer_uint__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uint returnVal = self->getValue(); + uint returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53763,7 +55789,7 @@ static int tolua_function_Pointer_uint__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -53787,7 +55813,7 @@ static int tolua_function_Pointer_uintptr_t__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uintptr_t returnVal = self->getValue(); + uintptr_t returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53796,7 +55822,7 @@ static int tolua_function_Pointer_uintptr_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -53820,7 +55846,7 @@ static int tolua_function_Pointer___int8__getValue(lua_State* L) { Pointer<__int8>* self = (Pointer<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int8 returnVal = self->getValue(); + __int8 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53829,7 +55855,7 @@ static int tolua_function_Pointer___int8__setValue(lua_State* L) { Pointer<__int8>* self = (Pointer<__int8>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger<__int8>(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger<__int8>(L, 2, "setValue")); return 0; } @@ -53853,7 +55879,7 @@ static int tolua_function_Pointer___int32__getValue(lua_State* L) { Pointer<__int32>* self = (Pointer<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int32>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int32 returnVal = self->getValue(); + __int32 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53862,7 +55888,7 @@ static int tolua_function_Pointer___int32__setValue(lua_State* L) { Pointer<__int32>* self = (Pointer<__int32>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int32>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -53886,7 +55912,7 @@ static int tolua_function_Pointer_DrawFilter__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DrawFilter returnVal = self->getValue(); + DrawFilter returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53895,7 +55921,7 @@ static int tolua_function_Pointer_DrawFilter__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DrawFilter)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DrawFilter)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -53919,7 +55945,7 @@ static int tolua_function_Pointer__D3DFORMAT__getValue(lua_State* L) { Pointer<_D3DFORMAT>* self = (Pointer<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _D3DFORMAT returnVal = self->getValue(); + _D3DFORMAT returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53928,7 +55954,7 @@ static int tolua_function_Pointer__D3DFORMAT__setValue(lua_State* L) { Pointer<_D3DFORMAT>* self = (Pointer<_D3DFORMAT>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DFORMAT>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_D3DFORMAT)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((_D3DFORMAT)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -53952,7 +55978,7 @@ static int tolua_function_Pointer_CGameObjectType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameObjectType returnVal = self->getValue(); + CGameObjectType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53961,7 +55987,7 @@ static int tolua_function_Pointer_CGameObjectType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameObjectType)tolua_function_tointeger<__int8>(L, 2, "setValue")); + (self->setValue)((CGameObjectType)tolua_function_tointeger<__int8>(L, 2, "setValue")); return 0; } @@ -53985,7 +56011,7 @@ static int tolua_function_Pointer_CChitin__EngineMode__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CChitin::EngineMode returnVal = self->getValue(); + CChitin::EngineMode returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -53994,7 +56020,7 @@ static int tolua_function_Pointer_CChitin__EngineMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CChitin::EngineMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((CChitin::EngineMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54018,7 +56044,7 @@ static int tolua_function_Pointer_DP_ProviderID__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DP_ProviderID returnVal = self->getValue(); + DP_ProviderID returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54027,7 +56053,7 @@ static int tolua_function_Pointer_DP_ProviderID__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DP_ProviderID)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DP_ProviderID)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54051,7 +56077,7 @@ static int tolua_function_Pointer_SDL_bool__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_bool returnVal = self->getValue(); + SDL_bool returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54060,7 +56086,7 @@ static int tolua_function_Pointer_SDL_bool__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_bool)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_bool)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54084,7 +56110,7 @@ static int tolua_function_Pointer_SDL_HitTestResult__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_HitTestResult returnVal = self->getValue(); + SDL_HitTestResult returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54093,7 +56119,7 @@ static int tolua_function_Pointer_SDL_HitTestResult__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_HitTestResult)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_HitTestResult)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54117,7 +56143,7 @@ static int tolua_function_Pointer_uiVariantType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uiVariantType returnVal = self->getValue(); + uiVariantType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54126,7 +56152,7 @@ static int tolua_function_Pointer_uiVariantType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uiVariantType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((uiVariantType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54150,7 +56176,7 @@ static int tolua_function_Pointer_DepthLockState__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DepthLockState returnVal = self->getValue(); + DepthLockState returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54159,7 +56185,7 @@ static int tolua_function_Pointer_DepthLockState__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DepthLockState)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DepthLockState)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54183,7 +56209,7 @@ static int tolua_function_Pointer_volatile_int__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - volatile int returnVal = self->getValue(); + volatile int returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54192,7 +56218,7 @@ static int tolua_function_Pointer_volatile_int__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -54216,7 +56242,7 @@ static int tolua_function_Pointer_DPWrapper__PEER_STATE_t__getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DPWrapper::PEER_STATE_t returnVal = self->getValue(); + DPWrapper::PEER_STATE_t returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54225,7 +56251,7 @@ static int tolua_function_Pointer_DPWrapper__PEER_STATE_t__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DPWrapper::PEER_STATE_t)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DPWrapper::PEER_STATE_t)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54249,7 +56275,7 @@ static int tolua_function_Pointer_unsigned___int32__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned __int32 returnVal = self->getValue(); + unsigned __int32 returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54258,7 +56284,7 @@ static int tolua_function_Pointer_unsigned___int32__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tointeger(L, 2, "setValue")); + (self->setValue)(tolua_function_tointeger(L, 2, "setValue")); return 0; } @@ -54282,7 +56308,7 @@ static int tolua_function_Pointer_EResult__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EResult returnVal = self->getValue(); + EResult returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54291,7 +56317,7 @@ static int tolua_function_Pointer_EResult__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EResult)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EResult)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54315,7 +56341,7 @@ static int tolua_function_Pointer_EWorkshopFileType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EWorkshopFileType returnVal = self->getValue(); + EWorkshopFileType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54324,7 +56350,7 @@ static int tolua_function_Pointer_EWorkshopFileType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EWorkshopFileType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EWorkshopFileType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54348,7 +56374,7 @@ static int tolua_function_Pointer_ERemoteStoragePublishedFileVisibility__getValu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ERemoteStoragePublishedFileVisibility returnVal = self->getValue(); + ERemoteStoragePublishedFileVisibility returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54357,7 +56383,7 @@ static int tolua_function_Pointer_ERemoteStoragePublishedFileVisibility__setValu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54381,7 +56407,7 @@ static int tolua_function_Pointer_ERemoteStoragePlatform__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ERemoteStoragePlatform returnVal = self->getValue(); + ERemoteStoragePlatform returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54390,7 +56416,7 @@ static int tolua_function_Pointer_ERemoteStoragePlatform__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ERemoteStoragePlatform)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((ERemoteStoragePlatform)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54414,7 +56440,7 @@ static int tolua_function_Pointer_EUGCReadAction__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EUGCReadAction returnVal = self->getValue(); + EUGCReadAction returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54423,7 +56449,7 @@ static int tolua_function_Pointer_EUGCReadAction__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EUGCReadAction)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EUGCReadAction)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54447,7 +56473,7 @@ static int tolua_function_Pointer_EWorkshopVideoProvider__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EWorkshopVideoProvider returnVal = self->getValue(); + EWorkshopVideoProvider returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54456,7 +56482,7 @@ static int tolua_function_Pointer_EWorkshopVideoProvider__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EWorkshopVideoProvider)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EWorkshopVideoProvider)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54480,7 +56506,7 @@ static int tolua_function_Pointer_EWorkshopFileAction__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EWorkshopFileAction returnVal = self->getValue(); + EWorkshopFileAction returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54489,7 +56515,7 @@ static int tolua_function_Pointer_EWorkshopFileAction__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EWorkshopFileAction)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EWorkshopFileAction)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54513,7 +56539,7 @@ static int tolua_function_Pointer_EWorkshopEnumerationType__getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EWorkshopEnumerationType returnVal = self->getValue(); + EWorkshopEnumerationType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54522,7 +56548,7 @@ static int tolua_function_Pointer_EWorkshopEnumerationType__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EWorkshopEnumerationType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EWorkshopEnumerationType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54546,7 +56572,7 @@ static int tolua_function_Pointer_EUserUGCList__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EUserUGCList returnVal = self->getValue(); + EUserUGCList returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54555,7 +56581,7 @@ static int tolua_function_Pointer_EUserUGCList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EUserUGCList)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EUserUGCList)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54579,7 +56605,7 @@ static int tolua_function_Pointer_EUGCMatchingUGCType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EUGCMatchingUGCType returnVal = self->getValue(); + EUGCMatchingUGCType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54588,7 +56614,7 @@ static int tolua_function_Pointer_EUGCMatchingUGCType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54612,7 +56638,7 @@ static int tolua_function_Pointer_EUserUGCListSortOrder__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EUserUGCListSortOrder returnVal = self->getValue(); + EUserUGCListSortOrder returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54621,7 +56647,7 @@ static int tolua_function_Pointer_EUserUGCListSortOrder__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EUserUGCListSortOrder)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EUserUGCListSortOrder)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54645,7 +56671,7 @@ static int tolua_function_Pointer_EUGCQuery__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EUGCQuery returnVal = self->getValue(); + EUGCQuery returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54654,7 +56680,7 @@ static int tolua_function_Pointer_EUGCQuery__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EUGCQuery)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EUGCQuery)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54678,7 +56704,7 @@ static int tolua_function_Pointer_EItemStatistic__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EItemStatistic returnVal = self->getValue(); + EItemStatistic returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54687,7 +56713,7 @@ static int tolua_function_Pointer_EItemStatistic__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EItemStatistic)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EItemStatistic)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54711,7 +56737,7 @@ static int tolua_function_Pointer_EItemUpdateStatus__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - EItemUpdateStatus returnVal = self->getValue(); + EItemUpdateStatus returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54720,7 +56746,7 @@ static int tolua_function_Pointer_EItemUpdateStatus__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((EItemUpdateStatus)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((EItemUpdateStatus)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54744,7 +56770,7 @@ static int tolua_function_Pointer_ELeaderboardSortMethod__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ELeaderboardSortMethod returnVal = self->getValue(); + ELeaderboardSortMethod returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54753,7 +56779,7 @@ static int tolua_function_Pointer_ELeaderboardSortMethod__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ELeaderboardSortMethod)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((ELeaderboardSortMethod)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54777,7 +56803,7 @@ static int tolua_function_Pointer_ELeaderboardDisplayType__getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ELeaderboardDisplayType returnVal = self->getValue(); + ELeaderboardDisplayType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54786,7 +56812,7 @@ static int tolua_function_Pointer_ELeaderboardDisplayType__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ELeaderboardDisplayType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((ELeaderboardDisplayType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54810,7 +56836,7 @@ static int tolua_function_Pointer_ELeaderboardDataRequest__getValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ELeaderboardDataRequest returnVal = self->getValue(); + ELeaderboardDataRequest returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54819,7 +56845,7 @@ static int tolua_function_Pointer_ELeaderboardDataRequest__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ELeaderboardDataRequest)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((ELeaderboardDataRequest)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54843,7 +56869,7 @@ static int tolua_function_Pointer_ELeaderboardUploadScoreMethod__getValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - ELeaderboardUploadScoreMethod returnVal = self->getValue(); + ELeaderboardUploadScoreMethod returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54852,7 +56878,7 @@ static int tolua_function_Pointer_ELeaderboardUploadScoreMethod__setValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((ELeaderboardUploadScoreMethod)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((ELeaderboardUploadScoreMethod)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54876,7 +56902,7 @@ static int tolua_function_Pointer_WindowShapeMode__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - WindowShapeMode returnVal = self->getValue(); + WindowShapeMode returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54885,7 +56911,7 @@ static int tolua_function_Pointer_WindowShapeMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((WindowShapeMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((WindowShapeMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54909,7 +56935,7 @@ static int tolua_function_Pointer_DP_EventType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DP_EventType returnVal = self->getValue(); + DP_EventType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54918,7 +56944,7 @@ static int tolua_function_Pointer_DP_EventType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DP_EventType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DP_EventType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54942,7 +56968,7 @@ static int tolua_function_Pointer_SDL_Scancode__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Scancode returnVal = self->getValue(); + SDL_Scancode returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54951,7 +56977,7 @@ static int tolua_function_Pointer_SDL_Scancode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Scancode)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_Scancode)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -54975,7 +57001,7 @@ static int tolua_function_Pointer_SDL_SYSWM_TYPE__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_SYSWM_TYPE returnVal = self->getValue(); + SDL_SYSWM_TYPE returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -54984,7 +57010,7 @@ static int tolua_function_Pointer_SDL_SYSWM_TYPE__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_SYSWM_TYPE)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_SYSWM_TYPE)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55008,7 +57034,7 @@ static int tolua_function_Pointer_CScreenCreateCharStep__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CScreenCreateCharStep returnVal = self->getValue(); + CScreenCreateCharStep returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55017,7 +57043,7 @@ static int tolua_function_Pointer_CScreenCreateCharStep__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CScreenCreateCharStep)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((CScreenCreateCharStep)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55041,7 +57067,7 @@ static int tolua_function_Pointer_importStateType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - importStateType returnVal = self->getValue(); + importStateType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55050,7 +57076,7 @@ static int tolua_function_Pointer_importStateType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((importStateType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((importStateType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55074,7 +57100,7 @@ static int tolua_function_Pointer_CSpawn__ePMode__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpawn::ePMode returnVal = self->getValue(); + CSpawn::ePMode returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55083,7 +57109,7 @@ static int tolua_function_Pointer_CSpawn__ePMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpawn::ePMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((CSpawn::ePMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55107,7 +57133,7 @@ static int tolua_function_Pointer_CAOEEntry__AOEType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CAOEEntry::AOEType returnVal = self->getValue(); + CAOEEntry::AOEType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55116,7 +57142,7 @@ static int tolua_function_Pointer_CAOEEntry__AOEType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CAOEEntry::AOEType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((CAOEEntry::AOEType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55140,7 +57166,7 @@ static int tolua_function_Pointer_CGameJournalEntryFlag__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameJournalEntryFlag returnVal = self->getValue(); + CGameJournalEntryFlag returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55149,7 +57175,7 @@ static int tolua_function_Pointer_CGameJournalEntryFlag__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameJournalEntryFlag)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((CGameJournalEntryFlag)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55173,7 +57199,7 @@ static int tolua_function_Pointer_uiItemType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uiItemType returnVal = self->getValue(); + uiItemType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55182,7 +57208,7 @@ static int tolua_function_Pointer_uiItemType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uiItemType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((uiItemType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55206,7 +57232,7 @@ static int tolua_function_Pointer__D3DMULTISAMPLE_TYPE__getValue(lua_State* L) { Pointer<_D3DMULTISAMPLE_TYPE>* self = (Pointer<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _D3DMULTISAMPLE_TYPE returnVal = self->getValue(); + _D3DMULTISAMPLE_TYPE returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55215,7 +57241,7 @@ static int tolua_function_Pointer__D3DMULTISAMPLE_TYPE__setValue(lua_State* L) { Pointer<_D3DMULTISAMPLE_TYPE>* self = (Pointer<_D3DMULTISAMPLE_TYPE>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DMULTISAMPLE_TYPE>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_D3DMULTISAMPLE_TYPE)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((_D3DMULTISAMPLE_TYPE)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55239,7 +57265,7 @@ static int tolua_function_Pointer__D3DSWAPEFFECT__getValue(lua_State* L) { Pointer<_D3DSWAPEFFECT>* self = (Pointer<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _D3DSWAPEFFECT returnVal = self->getValue(); + _D3DSWAPEFFECT returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55248,7 +57274,7 @@ static int tolua_function_Pointer__D3DSWAPEFFECT__setValue(lua_State* L) { Pointer<_D3DSWAPEFFECT>* self = (Pointer<_D3DSWAPEFFECT>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DSWAPEFFECT>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_D3DSWAPEFFECT)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((_D3DSWAPEFFECT)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55272,7 +57298,7 @@ static int tolua_function_Pointer_VertListType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VertListType returnVal = self->getValue(); + VertListType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55281,7 +57307,7 @@ static int tolua_function_Pointer_VertListType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VertListType)tolua_function_tointeger<__int8>(L, 2, "setValue")); + (self->setValue)((VertListType)tolua_function_tointeger<__int8>(L, 2, "setValue")); return 0; } @@ -55305,7 +57331,7 @@ static int tolua_function_Pointer_CButtonType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CButtonType returnVal = self->getValue(); + CButtonType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55314,7 +57340,7 @@ static int tolua_function_Pointer_CButtonType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CButtonType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((CButtonType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55338,7 +57364,7 @@ static int tolua_function_Pointer_SDL_EventType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_EventType returnVal = self->getValue(); + SDL_EventType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55347,7 +57373,7 @@ static int tolua_function_Pointer_SDL_EventType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_EventType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_EventType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -55371,7 +57397,7 @@ static int tolua_function_Pointer_SDL_Keycode__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Keycode returnVal = self->getValue(); + SDL_Keycode returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -55380,199 +57406,223 @@ static int tolua_function_Pointer_SDL_Keycode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Keycode)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_Keycode)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } -static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + return 0; +} + +static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); + return 1; +} + +static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + return 0; +} + +static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -55596,655 +57646,655 @@ static int tolua_function_Pointer_Primitive_uint32_t___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int8___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int8>"); return 1; } -static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int8___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"); return 0; } -static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int8___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); return 0; } -static int tolua_get_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_size_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_size_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_BOOL___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_BOOL___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int8_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int8_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_int32_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_int32_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_INT___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_INT___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_double___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_double___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_DWORD___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_float___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_DWORD___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_float___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_long_double___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long_double___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long_double___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_bool___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_bool___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int64>"); return 1; } -static int tolua_set_Pointer_Primitive_intptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int64___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"); return 0; } -static int tolua_function_Pointer_Primitive_intptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int64___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive<__int64>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>")); return 0; } -static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_const_char____reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_const_char____setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_HRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int8_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_HRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int8_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_short___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_int64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_short___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_int64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_char___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_char___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_char___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LRESULT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LRESULT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_ushort___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint64_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_ushort___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint64_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); return 1; } -static int tolua_set_Pointer_Primitive_UINT___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); return 0; } -static int tolua_function_Pointer_Primitive_UINT___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); return 0; } -static int tolua_get_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_long___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uintptr_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_long___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uintptr_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_int16_t___reference(lua_State* L) +static int tolua_get_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive<__int32>"); return 1; } -static int tolua_set_Pointer_Primitive_int16_t___reference(lua_State* L) +static int tolua_set_Pointer_Primitive___int32___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>"); return 0; } -static int tolua_function_Pointer_Primitive_int16_t___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive___int32___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive<__int32>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int32>")); return 0; } -static int tolua_get_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_uint___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_byte___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_uint___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_byte___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive___int16___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive<__int16>"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive___int16___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_lua_Integer___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive___int16___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_lua_Integer___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive<__int16>*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_get_Pointer_Primitive_uint16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "Primitive"); return 1; } -static int tolua_set_Pointer_Primitive_LONG___reference(lua_State* L) +static int tolua_set_Pointer_Primitive_uint16_t___reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); return 0; } -static int tolua_function_Pointer_Primitive_LONG___setValue(lua_State* L) +static int tolua_function_Pointer_Primitive_uint16_t___setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } -static int tolua_get_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_get_Pointer_SDL_SysWMinfo__info_t__win_t__reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Primitive"); + tolua_pushusertype(L, (void*)self->reference, "SDL_SysWMinfo::info_t::win_t"); return 1; } -static int tolua_set_Pointer_Primitive_ptrdiff_t___reference(lua_State* L) +static int tolua_set_Pointer_SDL_SysWMinfo__info_t__win_t__reference(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"); + self->reference = (SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo::info_t::win_t"); return 0; } -static int tolua_function_Pointer_Primitive_ptrdiff_t___setValue(lua_State* L) +static int tolua_function_Pointer_SDL_SysWMinfo__info_t__win_t__setValue(lua_State* L) { - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Primitive*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)(*(SDL_SysWMinfo::info_t::win_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo::info_t::win_t")); return 0; } @@ -56268,7 +58318,7 @@ static int tolua_function_Pointer_const_void___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const void* returnVal = self->getValue(); + const void* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -56293,7 +58343,7 @@ static int tolua_function_Pointer_UnmappedUserType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UnmappedUserType*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + (self->setValue)(*(UnmappedUserType*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); return 0; } @@ -56317,7 +58367,7 @@ static int tolua_function_Pointer_UpVal__u_t__l_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UpVal::u_t::l_t*)tolua_tousertype_dynamic(L, 2, 0, "UpVal::u_t::l_t")); + (self->setValue)(*(UpVal::u_t::l_t*)tolua_tousertype_dynamic(L, 2, 0, "UpVal::u_t::l_t")); return 0; } @@ -56341,7 +58391,7 @@ static int tolua_function_Pointer_NECK_POINTS__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(NECK_POINTS*)tolua_tousertype_dynamic(L, 2, 0, "NECK_POINTS")); + (self->setValue)(*(NECK_POINTS*)tolua_tousertype_dynamic(L, 2, 0, "NECK_POINTS")); return 0; } @@ -56365,7 +58415,7 @@ static int tolua_function_Pointer_NECK_POINTS___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - NECK_POINTS* returnVal = self->getValue(); + NECK_POINTS* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "NECK_POINTS"); return 1; } @@ -56374,7 +58424,7 @@ static int tolua_function_Pointer_NECK_POINTS___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((NECK_POINTS*)tolua_tousertype_dynamic(L, 2, 0, "NECK_POINTS")); + (self->setValue)((NECK_POINTS*)tolua_tousertype_dynamic(L, 2, 0, "NECK_POINTS")); return 0; } @@ -56398,7 +58448,7 @@ static int tolua_function_Pointer_SDL_WindowFlags__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_WindowFlags returnVal = self->getValue(); + SDL_WindowFlags returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56407,7 +58457,7 @@ static int tolua_function_Pointer_SDL_WindowFlags__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_WindowFlags)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_WindowFlags)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56431,7 +58481,7 @@ static int tolua_function_Pointer_SDL_Keymod__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SDL_Keymod returnVal = self->getValue(); + SDL_Keymod returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56440,7 +58490,7 @@ static int tolua_function_Pointer_SDL_Keymod__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SDL_Keymod)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((SDL_Keymod)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56464,7 +58514,7 @@ static int tolua_function_Pointer_RendererType__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - RendererType returnVal = self->getValue(); + RendererType returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56473,7 +58523,7 @@ static int tolua_function_Pointer_RendererType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((RendererType)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((RendererType)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56497,7 +58547,7 @@ static int tolua_function_Pointer_DrawTone__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DrawTone returnVal = self->getValue(); + DrawTone returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56506,7 +58556,7 @@ static int tolua_function_Pointer_DrawTone__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DrawTone)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DrawTone)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56530,7 +58580,7 @@ static int tolua_function_Pointer_DrawMode__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DrawMode returnVal = self->getValue(); + DrawMode returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56539,7 +58589,7 @@ static int tolua_function_Pointer_DrawMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DrawMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DrawMode)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56563,7 +58613,7 @@ static int tolua_function_Pointer_DrawFeature__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DrawFeature returnVal = self->getValue(); + DrawFeature returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56572,7 +58622,7 @@ static int tolua_function_Pointer_DrawFeature__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DrawFeature)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DrawFeature)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56596,7 +58646,7 @@ static int tolua_function_Pointer_DrawBlend__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DrawBlend returnVal = self->getValue(); + DrawBlend returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -56605,7 +58655,7 @@ static int tolua_function_Pointer_DrawBlend__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DrawBlend)tolua_function_tointeger<__int32>(L, 2, "setValue")); + (self->setValue)((DrawBlend)tolua_function_tointeger<__int32>(L, 2, "setValue")); return 0; } @@ -56629,7 +58679,7 @@ static int tolua_function_Pointer_DP_ProviderID___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - DP_ProviderID* returnVal = self->getValue(); + DP_ProviderID* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -56638,7 +58688,7 @@ static int tolua_function_Pointer_DP_ProviderID___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((DP_ProviderID*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((DP_ProviderID*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -56662,7 +58712,7 @@ static int tolua_function_Pointer_CSteamID__SteamID_t__SteamIDComponent_t__setVa { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSteamID::SteamID_t::SteamIDComponent_t*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID::SteamID_t::SteamIDComponent_t")); + (self->setValue)(*(CSteamID::SteamID_t::SteamIDComponent_t*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID::SteamID_t::SteamIDComponent_t")); return 0; } @@ -56686,7 +58736,7 @@ static int tolua_function_Pointer__730FDA81411627D18117760CFDFC5D48__setValue(lu { Pointer<_730FDA81411627D18117760CFDFC5D48>* self = (Pointer<_730FDA81411627D18117760CFDFC5D48>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_730FDA81411627D18117760CFDFC5D48>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_730FDA81411627D18117760CFDFC5D48*)tolua_tousertype_dynamic(L, 2, 0, "_730FDA81411627D18117760CFDFC5D48")); + (self->setValue)(*(_730FDA81411627D18117760CFDFC5D48*)tolua_tousertype_dynamic(L, 2, 0, "_730FDA81411627D18117760CFDFC5D48")); return 0; } @@ -56710,7 +58760,7 @@ static int tolua_function_Pointer__6B279AA1C7A281E7C97E085DB9F2DFBB__setValue(lu { Pointer<_6B279AA1C7A281E7C97E085DB9F2DFBB>* self = (Pointer<_6B279AA1C7A281E7C97E085DB9F2DFBB>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_6B279AA1C7A281E7C97E085DB9F2DFBB>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_6B279AA1C7A281E7C97E085DB9F2DFBB*)tolua_tousertype_dynamic(L, 2, 0, "_6B279AA1C7A281E7C97E085DB9F2DFBB")); + (self->setValue)(*(_6B279AA1C7A281E7C97E085DB9F2DFBB*)tolua_tousertype_dynamic(L, 2, 0, "_6B279AA1C7A281E7C97E085DB9F2DFBB")); return 0; } @@ -56734,7 +58784,7 @@ static int tolua_function_Pointer_Mbuffer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Mbuffer*)tolua_tousertype_dynamic(L, 2, 0, "Mbuffer")); + (self->setValue)(*(Mbuffer*)tolua_tousertype_dynamic(L, 2, 0, "Mbuffer")); return 0; } @@ -56758,7 +58808,7 @@ static int tolua_function_Pointer_CSteamID__SteamID_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSteamID::SteamID_t*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID::SteamID_t")); + (self->setValue)(*(CSteamID::SteamID_t*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID::SteamID_t")); return 0; } @@ -56782,7 +58832,7 @@ static int tolua_function_Pointer___int8___getValue(lua_State* L) { Pointer<__int8*>* self = (Pointer<__int8*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int8*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - __int8* returnVal = self->getValue(); + __int8* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -56791,7 +58841,7 @@ static int tolua_function_Pointer___int8___setValue(lua_State* L) { Pointer<__int8*>* self = (Pointer<__int8*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<__int8*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((__int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); + (self->setValue)((__int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>")); return 0; } @@ -56815,7 +58865,7 @@ static int tolua_function_Pointer_VRAM_FLAGS__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VRAM_FLAGS*)tolua_tousertype_dynamic(L, 2, 0, "VRAM_FLAGS")); + (self->setValue)(*(VRAM_FLAGS*)tolua_tousertype_dynamic(L, 2, 0, "VRAM_FLAGS")); return 0; } @@ -56839,7 +58889,7 @@ static int tolua_function_Pointer_Udata__uv_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Udata::uv_t*)tolua_tousertype_dynamic(L, 2, 0, "Udata::uv_t")); + (self->setValue)(*(Udata::uv_t*)tolua_tousertype_dynamic(L, 2, 0, "Udata::uv_t")); return 0; } @@ -56863,7 +58913,7 @@ static int tolua_function_Pointer_TILE_CODE__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(TILE_CODE*)tolua_tousertype_dynamic(L, 2, 0, "TILE_CODE")); + (self->setValue)(*(TILE_CODE*)tolua_tousertype_dynamic(L, 2, 0, "TILE_CODE")); return 0; } @@ -56887,55 +58937,88 @@ static int tolua_function_Pointer_SDL_version__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_version*)tolua_tousertype_dynamic(L, 2, 0, "SDL_version")); + (self->setValue)(*(SDL_version*)tolua_tousertype_dynamic(L, 2, 0, "SDL_version")); return 0; } -static int tolua_get_Pointer_SDL_WindowShapeParams__reference(lua_State* L) +static int tolua_get_Pointer_SDL_MessageBoxColor__reference(lua_State* L) { - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "SDL_WindowShapeParams"); + tolua_pushusertype(L, (void*)self->reference, "SDL_MessageBoxColor"); return 1; } -static int tolua_set_Pointer_SDL_WindowShapeParams__reference(lua_State* L) +static int tolua_set_Pointer_SDL_MessageBoxColor__reference(lua_State* L) { - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (SDL_WindowShapeParams*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeParams"); + self->reference = (SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxColor"); return 0; } -static int tolua_function_Pointer_SDL_WindowShapeParams__setValue(lua_State* L) +static int tolua_function_Pointer_SDL_MessageBoxColor__setValue(lua_State* L) { - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_WindowShapeParams*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeParams")); + (self->setValue)(*(SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxColor")); return 0; } -static int tolua_get_Pointer_SDL_WindowShapeMode__reference(lua_State* L) +static int tolua_get_Pointer_SDL_MessageBoxColor___reference(lua_State* L) { - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "SDL_WindowShapeMode"); + tolua_pushusertype(L, (void*)self->reference, "Pointer"); return 1; } -static int tolua_set_Pointer_SDL_WindowShapeMode__reference(lua_State* L) +static int tolua_set_Pointer_SDL_MessageBoxColor___reference(lua_State* L) { - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeMode"); + self->reference = (SDL_MessageBoxColor**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"); return 0; } -static int tolua_function_Pointer_SDL_WindowShapeMode__setValue(lua_State* L) +static int tolua_function_Pointer_SDL_MessageBoxColor___getValue(lua_State* L) { - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + SDL_MessageBoxColor* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxColor"); + return 1; +} + +static int tolua_function_Pointer_SDL_MessageBoxColor___setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_WindowShapeMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeMode")); + (self->setValue)((SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MessageBoxColor")); + return 0; +} + +static int tolua_get_Pointer_SDL_WindowShapeParams__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_WindowShapeParams"); + return 1; +} + +static int tolua_set_Pointer_SDL_WindowShapeParams__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_WindowShapeParams*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeParams"); + return 0; +} + +static int tolua_function_Pointer_SDL_WindowShapeParams__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_WindowShapeParams*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowShapeParams")); return 0; } @@ -56959,7 +59042,7 @@ static int tolua_function_Pointer_GCheader__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(GCheader*)tolua_tousertype_dynamic(L, 2, 0, "GCheader")); + (self->setValue)(*(GCheader*)tolua_tousertype_dynamic(L, 2, 0, "GCheader")); return 0; } @@ -56983,7 +59066,7 @@ static int tolua_function_Pointer_SubmitItemUpdateResult_t__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SubmitItemUpdateResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SubmitItemUpdateResult_t")); + (self->setValue)(*(SubmitItemUpdateResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SubmitItemUpdateResult_t")); return 0; } @@ -57007,7 +59090,7 @@ static int tolua_function_Pointer_SubmitItemUpdateResult_t___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SubmitItemUpdateResult_t* returnVal = self->getValue(); + SubmitItemUpdateResult_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SubmitItemUpdateResult_t"); return 1; } @@ -57016,7 +59099,7 @@ static int tolua_function_Pointer_SubmitItemUpdateResult_t___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SubmitItemUpdateResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SubmitItemUpdateResult_t")); + (self->setValue)((SubmitItemUpdateResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SubmitItemUpdateResult_t")); return 0; } @@ -57040,7 +59123,7 @@ static int tolua_function_Pointer_CreateItemResult_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CreateItemResult_t*)tolua_tousertype_dynamic(L, 2, 0, "CreateItemResult_t")); + (self->setValue)(*(CreateItemResult_t*)tolua_tousertype_dynamic(L, 2, 0, "CreateItemResult_t")); return 0; } @@ -57064,7 +59147,7 @@ static int tolua_function_Pointer_CreateItemResult_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CreateItemResult_t* returnVal = self->getValue(); + CreateItemResult_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CreateItemResult_t"); return 1; } @@ -57073,7 +59156,7 @@ static int tolua_function_Pointer_CreateItemResult_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CreateItemResult_t*)tolua_tousertype_dynamic(L, 2, 0, "CreateItemResult_t")); + (self->setValue)((CreateItemResult_t*)tolua_tousertype_dynamic(L, 2, 0, "CreateItemResult_t")); return 0; } @@ -57097,40 +59180,7 @@ static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB__setValue(lu { Pointer<_D98D369160A0DDA2B95F5D0F301081BB>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); - return 0; -} - -static int tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 1; -} - -static int tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (_D98D369160A0DDA2B95F5D0F301081BB**)tolua_tousertype_dynamic(L, 2, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - return 0; -} - -static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getValue(); - tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); - return 1; -} - -static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) -{ - Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + (self->setValue)(*(_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); return 0; } @@ -57170,11 +59220,44 @@ static int tolua_function_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB___getV { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const _D98D369160A0DDA2B95F5D0F301081BB* returnVal = self->getValue(); + const _D98D369160A0DDA2B95F5D0F301081BB* returnVal = (self->getValue)(); + tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); + return 1; +} + +static int tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 1; +} + +static int tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (_D98D369160A0DDA2B95F5D0F301081BB**)tolua_tousertype_dynamic(L, 2, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); + return 0; +} + +static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); + _D98D369160A0DDA2B95F5D0F301081BB* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "_D98D369160A0DDA2B95F5D0F301081BB"); return 1; } +static int tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue(lua_State* L) +{ + Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>* self = (Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)((_D98D369160A0DDA2B95F5D0F301081BB*)tolua_tousertype_dynamic(L, 2, 0, "_D98D369160A0DDA2B95F5D0F301081BB")); + return 0; +} + static int tolua_get_Pointer_const_char___reference(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); @@ -57211,7 +59294,7 @@ static int tolua_function_Pointer_char___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); + (self->setValue)(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); return 0; } @@ -57235,7 +59318,7 @@ static int tolua_function_Pointer_char____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - char** returnVal = self->getValue(); + char** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CharString"); return 1; } @@ -57244,7 +59327,7 @@ static int tolua_function_Pointer_char____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); + (self->setValue)((char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); return 0; } @@ -57260,7 +59343,7 @@ static int tolua_function_Pointer_char__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - char returnVal = self->getValue(); + char returnVal = (self->getValue)(); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -57269,7 +59352,7 @@ static int tolua_function_Pointer_char__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tochar(L, 2, "setValue")); + (self->setValue)(tolua_function_tochar(L, 2, "setValue")); return 0; } @@ -57293,7 +59376,7 @@ static int tolua_function_Pointer_const_char____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const char** returnVal = self->getValue(); + const char** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ConstCharString"); return 1; } @@ -57318,7 +59401,7 @@ static int tolua_function_Pointer_unsigned_char____getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - unsigned char** returnVal = self->getValue(); + unsigned char** returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CharString"); return 1; } @@ -57327,7 +59410,7 @@ static int tolua_function_Pointer_unsigned_char____setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((unsigned char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); + (self->setValue)((unsigned char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); return 0; } @@ -57351,7 +59434,7 @@ static int tolua_function_Pointer_double__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - double returnVal = self->getValue(); + double returnVal = (self->getValue)(); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -57360,7 +59443,7 @@ static int tolua_function_Pointer_double__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(tolua_function_tonumber(L, 2, "setValue")); + (self->setValue)(tolua_function_tonumber(L, 2, "setValue")); return 0; } @@ -57384,7 +59467,7 @@ static int tolua_function_Pointer__DEC82102868918D992B707FF755C8272__setValue(lu { Pointer<_DEC82102868918D992B707FF755C8272>* self = (Pointer<_DEC82102868918D992B707FF755C8272>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_DEC82102868918D992B707FF755C8272>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_DEC82102868918D992B707FF755C8272*)tolua_tousertype_dynamic(L, 2, 0, "_DEC82102868918D992B707FF755C8272")); + (self->setValue)(*(_DEC82102868918D992B707FF755C8272*)tolua_tousertype_dynamic(L, 2, 0, "_DEC82102868918D992B707FF755C8272")); return 0; } @@ -57408,7 +59491,7 @@ static int tolua_function_Pointer__DCA4A7CF5EA786B859D71FBD4D5071B1__setValue(lu { Pointer<_DCA4A7CF5EA786B859D71FBD4D5071B1>* self = (Pointer<_DCA4A7CF5EA786B859D71FBD4D5071B1>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_DCA4A7CF5EA786B859D71FBD4D5071B1>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_DCA4A7CF5EA786B859D71FBD4D5071B1*)tolua_tousertype_dynamic(L, 2, 0, "_DCA4A7CF5EA786B859D71FBD4D5071B1")); + (self->setValue)(*(_DCA4A7CF5EA786B859D71FBD4D5071B1*)tolua_tousertype_dynamic(L, 2, 0, "_DCA4A7CF5EA786B859D71FBD4D5071B1")); return 0; } @@ -57432,7 +59515,7 @@ static int tolua_function_Pointer__982F841FE54CFF99ACD9FF52992C4925__setValue(lu { Pointer<_982F841FE54CFF99ACD9FF52992C4925>* self = (Pointer<_982F841FE54CFF99ACD9FF52992C4925>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_982F841FE54CFF99ACD9FF52992C4925>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_982F841FE54CFF99ACD9FF52992C4925*)tolua_tousertype_dynamic(L, 2, 0, "_982F841FE54CFF99ACD9FF52992C4925")); + (self->setValue)(*(_982F841FE54CFF99ACD9FF52992C4925*)tolua_tousertype_dynamic(L, 2, 0, "_982F841FE54CFF99ACD9FF52992C4925")); return 0; } @@ -57456,7 +59539,7 @@ static int tolua_function_Pointer__872C6102D0359DAE2EF3C8EA2BA4F27D__setValue(lu { Pointer<_872C6102D0359DAE2EF3C8EA2BA4F27D>* self = (Pointer<_872C6102D0359DAE2EF3C8EA2BA4F27D>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_872C6102D0359DAE2EF3C8EA2BA4F27D>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_872C6102D0359DAE2EF3C8EA2BA4F27D*)tolua_tousertype_dynamic(L, 2, 0, "_872C6102D0359DAE2EF3C8EA2BA4F27D")); + (self->setValue)(*(_872C6102D0359DAE2EF3C8EA2BA4F27D*)tolua_tousertype_dynamic(L, 2, 0, "_872C6102D0359DAE2EF3C8EA2BA4F27D")); return 0; } @@ -57480,7 +59563,7 @@ static int tolua_function_Pointer_frameTableEntry_st___anonymous_tag___setValue( { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(frameTableEntry_st::_anonymous_tag_*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st::_anonymous_tag_")); + (self->setValue)(*(frameTableEntry_st::_anonymous_tag_*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st::_anonymous_tag_")); return 0; } @@ -57504,7 +59587,7 @@ static int tolua_function_Pointer_frameTableEntry_st___anonymous_tag___v2_t__set { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(frameTableEntry_st::_anonymous_tag_::v2_t*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st::_anonymous_tag_::v2_t")); + (self->setValue)(*(frameTableEntry_st::_anonymous_tag_::v2_t*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st::_anonymous_tag_::v2_t")); return 0; } @@ -57528,7 +59611,7 @@ static int tolua_function_Pointer_glyphHashEntry_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(glyphHashEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphHashEntry_t")); + (self->setValue)(*(glyphHashEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphHashEntry_t")); return 0; } @@ -57552,7 +59635,7 @@ static int tolua_function_Pointer_glyphHashEntry_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - glyphHashEntry_t* returnVal = self->getValue(); + glyphHashEntry_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "glyphHashEntry_t"); return 1; } @@ -57561,7 +59644,7 @@ static int tolua_function_Pointer_glyphHashEntry_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((glyphHashEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphHashEntry_t")); + (self->setValue)((glyphHashEntry_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphHashEntry_t")); return 0; } @@ -57585,7 +59668,7 @@ static int tolua_function_Pointer_frameTableEntry_st___C3D261E28D53B12983426B9B0 { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(frameTableEntry_st::_C3D261E28D53B12983426B9B0D118A61*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st::_C3D261E28D53B12983426B9B0D118A61")); + (self->setValue)(*(frameTableEntry_st::_C3D261E28D53B12983426B9B0D118A61*)tolua_tousertype_dynamic(L, 2, 0, "frameTableEntry_st::_C3D261E28D53B12983426B9B0D118A61")); return 0; } @@ -57609,7 +59692,7 @@ static int tolua_function_Pointer_file_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(file_t*)tolua_tousertype_dynamic(L, 2, 0, "file_t")); + (self->setValue)(*(file_t*)tolua_tousertype_dynamic(L, 2, 0, "file_t")); return 0; } @@ -57633,7 +59716,7 @@ static int tolua_function_Pointer_drawState_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(drawState_t*)tolua_tousertype_dynamic(L, 2, 0, "drawState_t")); + (self->setValue)(*(drawState_t*)tolua_tousertype_dynamic(L, 2, 0, "drawState_t")); return 0; } @@ -57657,7 +59740,7 @@ static int tolua_function_Pointer_drawState_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - drawState_t* returnVal = self->getValue(); + drawState_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "drawState_t"); return 1; } @@ -57666,7 +59749,7 @@ static int tolua_function_Pointer_drawState_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((drawState_t*)tolua_tousertype_dynamic(L, 2, 0, "drawState_t")); + (self->setValue)((drawState_t*)tolua_tousertype_dynamic(L, 2, 0, "drawState_t")); return 0; } @@ -57690,7 +59773,7 @@ static int tolua_function_Pointer_drawCmd_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(drawCmd_t*)tolua_tousertype_dynamic(L, 2, 0, "drawCmd_t")); + (self->setValue)(*(drawCmd_t*)tolua_tousertype_dynamic(L, 2, 0, "drawCmd_t")); return 0; } @@ -57714,7 +59797,7 @@ static int tolua_function_Pointer_drawCmd_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - drawCmd_t* returnVal = self->getValue(); + drawCmd_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "drawCmd_t"); return 1; } @@ -57723,7 +59806,7 @@ static int tolua_function_Pointer_drawCmd_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((drawCmd_t*)tolua_tousertype_dynamic(L, 2, 0, "drawCmd_t")); + (self->setValue)((drawCmd_t*)tolua_tousertype_dynamic(L, 2, 0, "drawCmd_t")); return 0; } @@ -57747,7 +59830,7 @@ static int tolua_function_Pointer__EAXPRESET__setValue(lua_State* L) { Pointer<_EAXPRESET>* self = (Pointer<_EAXPRESET>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_EAXPRESET>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_EAXPRESET*)tolua_tousertype_dynamic(L, 2, 0, "_EAXPRESET")); + (self->setValue)(*(_EAXPRESET*)tolua_tousertype_dynamic(L, 2, 0, "_EAXPRESET")); return 0; } @@ -57771,7 +59854,7 @@ static int tolua_function_Pointer_CSoundProperties__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSoundProperties*)tolua_tousertype_dynamic(L, 2, 0, "CSoundProperties")); + (self->setValue)(*(CSoundProperties*)tolua_tousertype_dynamic(L, 2, 0, "CSoundProperties")); return 0; } @@ -57795,7 +59878,7 @@ static int tolua_function_Pointer__D3DPRESENT_PARAMETERS___setValue(lua_State* L { Pointer<_D3DPRESENT_PARAMETERS_>* self = (Pointer<_D3DPRESENT_PARAMETERS_>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_D3DPRESENT_PARAMETERS_>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_D3DPRESENT_PARAMETERS_*)tolua_tousertype_dynamic(L, 2, 0, "_D3DPRESENT_PARAMETERS_")); + (self->setValue)(*(_D3DPRESENT_PARAMETERS_*)tolua_tousertype_dynamic(L, 2, 0, "_D3DPRESENT_PARAMETERS_")); return 0; } @@ -57819,7 +59902,7 @@ static int tolua_function_Pointer_Value__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Value*)tolua_tousertype_dynamic(L, 2, 0, "Value")); + (self->setValue)(*(Value*)tolua_tousertype_dynamic(L, 2, 0, "Value")); return 0; } @@ -57843,7 +59926,7 @@ static int tolua_function_Pointer_TString__tsv_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(TString::tsv_t*)tolua_tousertype_dynamic(L, 2, 0, "TString::tsv_t")); + (self->setValue)(*(TString::tsv_t*)tolua_tousertype_dynamic(L, 2, 0, "TString::tsv_t")); return 0; } @@ -57867,7 +59950,7 @@ static int tolua_function_Pointer_TKey__nk_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(TKey::nk_t*)tolua_tousertype_dynamic(L, 2, 0, "TKey::nk_t")); + (self->setValue)(*(TKey::nk_t*)tolua_tousertype_dynamic(L, 2, 0, "TKey::nk_t")); return 0; } @@ -57891,7 +59974,7 @@ static int tolua_function_Pointer_SDL_WindowEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_WindowEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowEvent")); + (self->setValue)(*(SDL_WindowEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_WindowEvent")); return 0; } @@ -57915,7 +59998,7 @@ static int tolua_function_Pointer_SDL_UserEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_UserEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_UserEvent")); + (self->setValue)(*(SDL_UserEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_UserEvent")); return 0; } @@ -57939,7 +60022,7 @@ static int tolua_function_Pointer_SDL_TouchFingerEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_TouchFingerEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_TouchFingerEvent")); + (self->setValue)(*(SDL_TouchFingerEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_TouchFingerEvent")); return 0; } @@ -57963,7 +60046,7 @@ static int tolua_function_Pointer_SDL_SysWMmsg__msg_t__win_t__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_SysWMmsg::msg_t::win_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg::msg_t::win_t")); + (self->setValue)(*(SDL_SysWMmsg::msg_t::win_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg::msg_t::win_t")); return 0; } @@ -57987,7 +60070,31 @@ static int tolua_function_Pointer_SDL_SysWMmsg__msg_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_SysWMmsg::msg_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg::msg_t")); + (self->setValue)(*(SDL_SysWMmsg::msg_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMmsg::msg_t")); + return 0; +} + +static int tolua_get_Pointer_SDL_SysWMinfo__info_t__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_SysWMinfo::info_t"); + return 1; +} + +static int tolua_set_Pointer_SDL_SysWMinfo__info_t__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_SysWMinfo::info_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo::info_t"); + return 0; +} + +static int tolua_function_Pointer_SDL_SysWMinfo__info_t__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_SysWMinfo::info_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMinfo::info_t")); return 0; } @@ -58011,7 +60118,31 @@ static int tolua_function_Pointer_SDL_SysWMEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_SysWMEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMEvent")); + (self->setValue)(*(SDL_SysWMEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_SysWMEvent")); + return 0; +} + +static int tolua_get_Pointer_SDL_ShapeDriver__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_ShapeDriver"); + return 1; +} + +static int tolua_set_Pointer_SDL_ShapeDriver__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_ShapeDriver*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ShapeDriver"); + return 0; +} + +static int tolua_function_Pointer_SDL_ShapeDriver__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_ShapeDriver*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ShapeDriver")); return 0; } @@ -58035,7 +60166,7 @@ static int tolua_function_Pointer_SDL_QuitEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_QuitEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_QuitEvent")); + (self->setValue)(*(SDL_QuitEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_QuitEvent")); return 0; } @@ -58059,7 +60190,7 @@ static int tolua_function_Pointer_SDL_MultiGestureEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_MultiGestureEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MultiGestureEvent")); + (self->setValue)(*(SDL_MultiGestureEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MultiGestureEvent")); return 0; } @@ -58083,7 +60214,7 @@ static int tolua_function_Pointer_SDL_MouseWheelEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_MouseWheelEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MouseWheelEvent")); + (self->setValue)(*(SDL_MouseWheelEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MouseWheelEvent")); return 0; } @@ -58107,7 +60238,7 @@ static int tolua_function_Pointer_SDL_MouseMotionEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_MouseMotionEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MouseMotionEvent")); + (self->setValue)(*(SDL_MouseMotionEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MouseMotionEvent")); return 0; } @@ -58131,7 +60262,7 @@ static int tolua_function_Pointer_SDL_MouseButtonEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_MouseButtonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MouseButtonEvent")); + (self->setValue)(*(SDL_MouseButtonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_MouseButtonEvent")); return 0; } @@ -58155,7 +60286,7 @@ static int tolua_function_Pointer_SDL_Keysym__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Keysym*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Keysym")); + (self->setValue)(*(SDL_Keysym*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Keysym")); return 0; } @@ -58179,7 +60310,7 @@ static int tolua_function_Pointer_SDL_KeyboardEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_KeyboardEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_KeyboardEvent")); + (self->setValue)(*(SDL_KeyboardEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_KeyboardEvent")); return 0; } @@ -58203,7 +60334,7 @@ static int tolua_function_Pointer_SDL_JoyHatEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_JoyHatEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyHatEvent")); + (self->setValue)(*(SDL_JoyHatEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyHatEvent")); return 0; } @@ -58227,7 +60358,7 @@ static int tolua_function_Pointer_SDL_JoyDeviceEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_JoyDeviceEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyDeviceEvent")); + (self->setValue)(*(SDL_JoyDeviceEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyDeviceEvent")); return 0; } @@ -58251,7 +60382,7 @@ static int tolua_function_Pointer_SDL_JoyButtonEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_JoyButtonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyButtonEvent")); + (self->setValue)(*(SDL_JoyButtonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyButtonEvent")); return 0; } @@ -58275,7 +60406,7 @@ static int tolua_function_Pointer_SDL_JoyBallEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_JoyBallEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyBallEvent")); + (self->setValue)(*(SDL_JoyBallEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyBallEvent")); return 0; } @@ -58299,7 +60430,7 @@ static int tolua_function_Pointer_SDL_JoyAxisEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_JoyAxisEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyAxisEvent")); + (self->setValue)(*(SDL_JoyAxisEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_JoyAxisEvent")); return 0; } @@ -58323,7 +60454,7 @@ static int tolua_function_Pointer_SDL_DropEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_DropEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DropEvent")); + (self->setValue)(*(SDL_DropEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DropEvent")); return 0; } @@ -58347,31 +60478,7 @@ static int tolua_function_Pointer_SDL_DollarGestureEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_DollarGestureEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DollarGestureEvent")); - return 0; -} - -static int tolua_get_Pointer_SDL_DisplayMode__reference(lua_State* L) -{ - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "SDL_DisplayMode"); - return 1; -} - -static int tolua_set_Pointer_SDL_DisplayMode__reference(lua_State* L) -{ - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (SDL_DisplayMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DisplayMode"); - return 0; -} - -static int tolua_function_Pointer_SDL_DisplayMode__setValue(lua_State* L) -{ - Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_DisplayMode*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DisplayMode")); + (self->setValue)(*(SDL_DollarGestureEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_DollarGestureEvent")); return 0; } @@ -58395,7 +60502,7 @@ static int tolua_function_Pointer_SDL_ControllerDeviceEvent__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_ControllerDeviceEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ControllerDeviceEvent")); + (self->setValue)(*(SDL_ControllerDeviceEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ControllerDeviceEvent")); return 0; } @@ -58419,7 +60526,7 @@ static int tolua_function_Pointer_SDL_ControllerButtonEvent__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_ControllerButtonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ControllerButtonEvent")); + (self->setValue)(*(SDL_ControllerButtonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ControllerButtonEvent")); return 0; } @@ -58443,7 +60550,7 @@ static int tolua_function_Pointer_SDL_ControllerAxisEvent__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_ControllerAxisEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ControllerAxisEvent")); + (self->setValue)(*(SDL_ControllerAxisEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_ControllerAxisEvent")); return 0; } @@ -58467,7 +60574,7 @@ static int tolua_function_Pointer_SDL_CommonEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_CommonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_CommonEvent")); + (self->setValue)(*(SDL_CommonEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_CommonEvent")); return 0; } @@ -58491,7 +60598,7 @@ static int tolua_function_Pointer_SDL_BlitInfo__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_BlitInfo*)tolua_tousertype_dynamic(L, 2, 0, "SDL_BlitInfo")); + (self->setValue)(*(SDL_BlitInfo*)tolua_tousertype_dynamic(L, 2, 0, "SDL_BlitInfo")); return 0; } @@ -58515,7 +60622,7 @@ static int tolua_function_Pointer_SDL_AudioDeviceEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_AudioDeviceEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_AudioDeviceEvent")); + (self->setValue)(*(SDL_AudioDeviceEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_AudioDeviceEvent")); return 0; } @@ -58539,7 +60646,7 @@ static int tolua_function_Pointer_Marker__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Marker*)tolua_tousertype_dynamic(L, 2, 0, "Marker")); + (self->setValue)(*(Marker*)tolua_tousertype_dynamic(L, 2, 0, "Marker")); return 0; } @@ -58563,7 +60670,7 @@ static int tolua_function_Pointer_L_Umaxalign__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(L_Umaxalign*)tolua_tousertype_dynamic(L, 2, 0, "L_Umaxalign")); + (self->setValue)(*(L_Umaxalign*)tolua_tousertype_dynamic(L, 2, 0, "L_Umaxalign")); return 0; } @@ -58587,7 +60694,7 @@ static int tolua_function_Pointer_Udata__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(Udata*)tolua_tousertype_dynamic(L, 2, 0, "Udata")); + (self->setValue)(*(Udata*)tolua_tousertype_dynamic(L, 2, 0, "Udata")); return 0; } @@ -58611,7 +60718,7 @@ static int tolua_function_Pointer_ISteamUserStats__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ISteamUserStats::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUserStats::vtbl")); + (self->setValue)(*(ISteamUserStats::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUserStats::vtbl")); return 0; } @@ -58635,7 +60742,7 @@ static int tolua_function_Pointer_DPWrapper__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(DPWrapper*)tolua_tousertype_dynamic(L, 2, 0, "DPWrapper")); + (self->setValue)(*(DPWrapper*)tolua_tousertype_dynamic(L, 2, 0, "DPWrapper")); return 0; } @@ -58659,7 +60766,7 @@ static int tolua_function_Pointer_CallInfo__u_t__c_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CallInfo::u_t::c_t*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo::u_t::c_t")); + (self->setValue)(*(CallInfo::u_t::c_t*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo::u_t::c_t")); return 0; } @@ -58683,7 +60790,7 @@ static int tolua_function_Pointer_CallInfo__u_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CallInfo::u_t*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo::u_t")); + (self->setValue)(*(CallInfo::u_t*)tolua_tousertype_dynamic(L, 2, 0, "CallInfo::u_t")); return 0; } @@ -58707,7 +60814,7 @@ static int tolua_function_Pointer_CWorldMapHeader__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWorldMapHeader*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapHeader")); + (self->setValue)(*(CWorldMapHeader*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMapHeader")); return 0; } @@ -58731,7 +60838,7 @@ static int tolua_function_Pointer_CVVCHash__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVVCHash*)tolua_tousertype_dynamic(L, 2, 0, "CVVCHash")); + (self->setValue)(*(CVVCHash*)tolua_tousertype_dynamic(L, 2, 0, "CVVCHash")); return 0; } @@ -58755,7 +60862,7 @@ static int tolua_function_Pointer_CTlkFileOverride__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTlkFileOverride*)tolua_tousertype_dynamic(L, 2, 0, "CTlkFileOverride")); + (self->setValue)(*(CTlkFileOverride*)tolua_tousertype_dynamic(L, 2, 0, "CTlkFileOverride")); return 0; } @@ -58779,7 +60886,7 @@ static int tolua_function_Pointer_CSpellLevelDecrementing__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSpellLevelDecrementing")); + (self->setValue)(*(CSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSpellLevelDecrementing")); return 0; } @@ -58803,7 +60910,7 @@ static int tolua_function_Pointer_CSpellLevelDecrementing___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSpellLevelDecrementing* returnVal = self->getValue(); + CSpellLevelDecrementing* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSpellLevelDecrementing"); return 1; } @@ -58812,7 +60919,7 @@ static int tolua_function_Pointer_CSpellLevelDecrementing___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSpellLevelDecrementing")); + (self->setValue)((CSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSpellLevelDecrementing")); return 0; } @@ -58836,7 +60943,7 @@ static int tolua_function_Pointer_CScriptCache__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CScriptCache*)tolua_tousertype_dynamic(L, 2, 0, "CScriptCache")); + (self->setValue)(*(CScriptCache*)tolua_tousertype_dynamic(L, 2, 0, "CScriptCache")); return 0; } @@ -58860,7 +60967,7 @@ static int tolua_function_Pointer_CPARTICLE_POINT__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPARTICLE_POINT*)tolua_tousertype_dynamic(L, 2, 0, "CPARTICLE_POINT")); + (self->setValue)(*(CPARTICLE_POINT*)tolua_tousertype_dynamic(L, 2, 0, "CPARTICLE_POINT")); return 0; } @@ -58884,7 +60991,7 @@ static int tolua_function_Pointer_CMachineState__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMachineState*)tolua_tousertype_dynamic(L, 2, 0, "CMachineState")); + (self->setValue)(*(CMachineState*)tolua_tousertype_dynamic(L, 2, 0, "CMachineState")); return 0; } @@ -58908,7 +61015,7 @@ static int tolua_function_Pointer_CMachineState___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CMachineState* returnVal = self->getValue(); + CMachineState* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CMachineState"); return 1; } @@ -58917,7 +61024,7 @@ static int tolua_function_Pointer_CMachineState___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CMachineState*)tolua_tousertype_dynamic(L, 2, 0, "CMachineState")); + (self->setValue)((CMachineState*)tolua_tousertype_dynamic(L, 2, 0, "CMachineState")); return 0; } @@ -58941,7 +61048,7 @@ static int tolua_function_Pointer_CGameObjectArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameObjectArray*)tolua_tousertype_dynamic(L, 2, 0, "CGameObjectArray")); + (self->setValue)(*(CGameObjectArray*)tolua_tousertype_dynamic(L, 2, 0, "CGameObjectArray")); return 0; } @@ -58965,7 +61072,7 @@ static int tolua_function_Pointer_CGameArea__m_cWalkableRenderCache_t__setValue( { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameArea::m_cWalkableRenderCache_t*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea::m_cWalkableRenderCache_t")); + (self->setValue)(*(CGameArea::m_cWalkableRenderCache_t*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea::m_cWalkableRenderCache_t")); return 0; } @@ -58989,7 +61096,7 @@ static int tolua_function_Pointer_CGameAnimation__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAnimation*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimation")); + (self->setValue)(*(CGameAnimation*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimation")); return 0; } @@ -59013,7 +61120,7 @@ static int tolua_function_Pointer__A92C2F5FC159A4FE55DD6CCAABD58E72__setValue(lu { Pointer<_A92C2F5FC159A4FE55DD6CCAABD58E72>* self = (Pointer<_A92C2F5FC159A4FE55DD6CCAABD58E72>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_A92C2F5FC159A4FE55DD6CCAABD58E72>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_A92C2F5FC159A4FE55DD6CCAABD58E72*)tolua_tousertype_dynamic(L, 2, 0, "_A92C2F5FC159A4FE55DD6CCAABD58E72")); + (self->setValue)(*(_A92C2F5FC159A4FE55DD6CCAABD58E72*)tolua_tousertype_dynamic(L, 2, 0, "_A92C2F5FC159A4FE55DD6CCAABD58E72")); return 0; } @@ -59037,7 +61144,7 @@ static int tolua_function_Pointer__9CC80BF4F2F1300360474CD60BF15E00__setValue(lu { Pointer<_9CC80BF4F2F1300360474CD60BF15E00>* self = (Pointer<_9CC80BF4F2F1300360474CD60BF15E00>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_9CC80BF4F2F1300360474CD60BF15E00>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_9CC80BF4F2F1300360474CD60BF15E00*)tolua_tousertype_dynamic(L, 2, 0, "_9CC80BF4F2F1300360474CD60BF15E00")); + (self->setValue)(*(_9CC80BF4F2F1300360474CD60BF15E00*)tolua_tousertype_dynamic(L, 2, 0, "_9CC80BF4F2F1300360474CD60BF15E00")); return 0; } @@ -59061,7 +61168,7 @@ static int tolua_function_Pointer__7A482BBA0D1D34ED5A2E6984BF7642B3__setValue(lu { Pointer<_7A482BBA0D1D34ED5A2E6984BF7642B3>* self = (Pointer<_7A482BBA0D1D34ED5A2E6984BF7642B3>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_7A482BBA0D1D34ED5A2E6984BF7642B3>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_7A482BBA0D1D34ED5A2E6984BF7642B3*)tolua_tousertype_dynamic(L, 2, 0, "_7A482BBA0D1D34ED5A2E6984BF7642B3")); + (self->setValue)(*(_7A482BBA0D1D34ED5A2E6984BF7642B3*)tolua_tousertype_dynamic(L, 2, 0, "_7A482BBA0D1D34ED5A2E6984BF7642B3")); return 0; } @@ -59085,7 +61192,7 @@ static int tolua_function_Pointer_keyword__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(keyword*)tolua_tousertype_dynamic(L, 2, 0, "keyword")); + (self->setValue)(*(keyword*)tolua_tousertype_dynamic(L, 2, 0, "keyword")); return 0; } @@ -59109,7 +61216,7 @@ static int tolua_function_Pointer_keyword___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - keyword* returnVal = self->getValue(); + keyword* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "keyword"); return 1; } @@ -59118,7 +61225,7 @@ static int tolua_function_Pointer_keyword___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((keyword*)tolua_tousertype_dynamic(L, 2, 0, "keyword")); + (self->setValue)((keyword*)tolua_tousertype_dynamic(L, 2, 0, "keyword")); return 0; } @@ -59142,7 +61249,7 @@ static int tolua_function_Pointer_UpVal__u_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(UpVal::u_t*)tolua_tousertype_dynamic(L, 2, 0, "UpVal::u_t")); + (self->setValue)(*(UpVal::u_t*)tolua_tousertype_dynamic(L, 2, 0, "UpVal::u_t")); return 0; } @@ -59166,7 +61273,7 @@ static int tolua_function_Pointer_TKey__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(TKey*)tolua_tousertype_dynamic(L, 2, 0, "TKey")); + (self->setValue)(*(TKey*)tolua_tousertype_dynamic(L, 2, 0, "TKey")); return 0; } @@ -59190,7 +61297,7 @@ static int tolua_function_Pointer_program_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(program_t*)tolua_tousertype_dynamic(L, 2, 0, "program_t")); + (self->setValue)(*(program_t*)tolua_tousertype_dynamic(L, 2, 0, "program_t")); return 0; } @@ -59214,7 +61321,7 @@ static int tolua_function_Pointer_program_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - program_t* returnVal = self->getValue(); + program_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "program_t"); return 1; } @@ -59223,7 +61330,7 @@ static int tolua_function_Pointer_program_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((program_t*)tolua_tousertype_dynamic(L, 2, 0, "program_t")); + (self->setValue)((program_t*)tolua_tousertype_dynamic(L, 2, 0, "program_t")); return 0; } @@ -59247,7 +61354,7 @@ static int tolua_function_Pointer_samplerState_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(samplerState_t*)tolua_tousertype_dynamic(L, 2, 0, "samplerState_t")); + (self->setValue)(*(samplerState_t*)tolua_tousertype_dynamic(L, 2, 0, "samplerState_t")); return 0; } @@ -59271,7 +61378,7 @@ static int tolua_function_Pointer_samplerState_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - samplerState_t* returnVal = self->getValue(); + samplerState_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "samplerState_t"); return 1; } @@ -59280,7 +61387,7 @@ static int tolua_function_Pointer_samplerState_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((samplerState_t*)tolua_tousertype_dynamic(L, 2, 0, "samplerState_t")); + (self->setValue)((samplerState_t*)tolua_tousertype_dynamic(L, 2, 0, "samplerState_t")); return 0; } @@ -59304,7 +61411,7 @@ static int tolua_function_Pointer_const_short__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const short returnVal = self->getValue(); + const short returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -59329,7 +61436,7 @@ static int tolua_function_Pointer_const_short___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const short* returnVal = self->getValue(); + const short* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -59354,7 +61461,7 @@ static int tolua_function_Pointer_stbrp_rect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(stbrp_rect*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_rect")); + (self->setValue)(*(stbrp_rect*)tolua_tousertype_dynamic(L, 2, 0, "stbrp_rect")); return 0; } @@ -59378,7 +61485,7 @@ static int tolua_function_Pointer_stbtt_fontinfo__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(stbtt_fontinfo*)tolua_tousertype_dynamic(L, 2, 0, "stbtt_fontinfo")); + (self->setValue)(*(stbtt_fontinfo*)tolua_tousertype_dynamic(L, 2, 0, "stbtt_fontinfo")); return 0; } @@ -59402,7 +61509,7 @@ static int tolua_function_Pointer_stringtable__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(stringtable*)tolua_tousertype_dynamic(L, 2, 0, "stringtable")); + (self->setValue)(*(stringtable*)tolua_tousertype_dynamic(L, 2, 0, "stringtable")); return 0; } @@ -59426,7 +61533,7 @@ static int tolua_function_Pointer_tagRECT__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(tagRECT*)tolua_tousertype_dynamic(L, 2, 0, "tagRECT")); + (self->setValue)(*(tagRECT*)tolua_tousertype_dynamic(L, 2, 0, "tagRECT")); return 0; } @@ -59450,7 +61557,7 @@ static int tolua_function_Pointer_tagSIZE__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(tagSIZE*)tolua_tousertype_dynamic(L, 2, 0, "tagSIZE")); + (self->setValue)(*(tagSIZE*)tolua_tousertype_dynamic(L, 2, 0, "tagSIZE")); return 0; } @@ -59474,7 +61581,7 @@ static int tolua_function_Pointer_CSize__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSize*)tolua_tousertype_dynamic(L, 2, 0, "CSize")); + (self->setValue)(*(CSize*)tolua_tousertype_dynamic(L, 2, 0, "CSize")); return 0; } @@ -59498,7 +61605,7 @@ static int tolua_function_Pointer_texture_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(texture_t*)tolua_tousertype_dynamic(L, 2, 0, "texture_t")); + (self->setValue)(*(texture_t*)tolua_tousertype_dynamic(L, 2, 0, "texture_t")); return 0; } @@ -59522,7 +61629,7 @@ static int tolua_function_Pointer_texture_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - texture_t* returnVal = self->getValue(); + texture_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "texture_t"); return 1; } @@ -59531,7 +61638,7 @@ static int tolua_function_Pointer_texture_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((texture_t*)tolua_tousertype_dynamic(L, 2, 0, "texture_t")); + (self->setValue)((texture_t*)tolua_tousertype_dynamic(L, 2, 0, "texture_t")); return 0; } @@ -59555,7 +61662,7 @@ static int tolua_function_Pointer_uiItem__bam_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::bam_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::bam_t")); + (self->setValue)(*(uiItem::bam_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::bam_t")); return 0; } @@ -59579,7 +61686,7 @@ static int tolua_function_Pointer_uiItem__button_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::button_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::button_t")); + (self->setValue)(*(uiItem::button_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::button_t")); return 0; } @@ -59603,7 +61710,7 @@ static int tolua_function_Pointer_uiItem__edit_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::edit_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::edit_t")); + (self->setValue)(*(uiItem::edit_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::edit_t")); return 0; } @@ -59627,7 +61734,7 @@ static int tolua_function_Pointer_uiItem__list_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::list_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::list_t")); + (self->setValue)(*(uiItem::list_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::list_t")); return 0; } @@ -59651,7 +61758,7 @@ static int tolua_function_Pointer_uiItem__map_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::map_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::map_t")); + (self->setValue)(*(uiItem::map_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::map_t")); return 0; } @@ -59675,7 +61782,7 @@ static int tolua_function_Pointer_uiItem__mosaic_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::mosaic_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::mosaic_t")); + (self->setValue)(*(uiItem::mosaic_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::mosaic_t")); return 0; } @@ -59699,7 +61806,7 @@ static int tolua_function_Pointer_uiItem__progressBar_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::progressBar_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::progressBar_t")); + (self->setValue)(*(uiItem::progressBar_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::progressBar_t")); return 0; } @@ -59723,7 +61830,7 @@ static int tolua_function_Pointer_uiItem__rectangle_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::rectangle_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::rectangle_t")); + (self->setValue)(*(uiItem::rectangle_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::rectangle_t")); return 0; } @@ -59747,7 +61854,7 @@ static int tolua_function_Pointer_uiItem__scrollbar_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::scrollbar_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::scrollbar_t")); + (self->setValue)(*(uiItem::scrollbar_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::scrollbar_t")); return 0; } @@ -59771,7 +61878,7 @@ static int tolua_function_Pointer_uiItem__slider_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::slider_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::slider_t")); + (self->setValue)(*(uiItem::slider_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::slider_t")); return 0; } @@ -59795,7 +61902,7 @@ static int tolua_function_Pointer_uiItem__slot_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::slot_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::slot_t")); + (self->setValue)(*(uiItem::slot_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::slot_t")); return 0; } @@ -59819,7 +61926,7 @@ static int tolua_function_Pointer_uiItem__text_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::text_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::text_t")); + (self->setValue)(*(uiItem::text_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::text_t")); return 0; } @@ -59843,7 +61950,7 @@ static int tolua_function_Pointer_uiItem__tooltip_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::tooltip_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::tooltip_t")); + (self->setValue)(*(uiItem::tooltip_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::tooltip_t")); return 0; } @@ -59867,7 +61974,7 @@ static int tolua_function_Pointer_uiItem__uiTemplate_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::uiTemplate_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::uiTemplate_t")); + (self->setValue)(*(uiItem::uiTemplate_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::uiTemplate_t")); return 0; } @@ -59891,7 +61998,7 @@ static int tolua_function_Pointer_uiVariant__value_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiVariant::value_t*)tolua_tousertype_dynamic(L, 2, 0, "uiVariant::value_t")); + (self->setValue)(*(uiVariant::value_t*)tolua_tousertype_dynamic(L, 2, 0, "uiVariant::value_t")); return 0; } @@ -59915,7 +62022,7 @@ static int tolua_function_Pointer_uint___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - uint* returnVal = self->getValue(); + uint* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -59924,7 +62031,7 @@ static int tolua_function_Pointer_uint___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((uint*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + (self->setValue)((uint*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); return 0; } @@ -59948,7 +62055,7 @@ static int tolua_function_Pointer_texture_t_DX__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(texture_t_DX*)tolua_tousertype_dynamic(L, 2, 0, "texture_t_DX")); + (self->setValue)(*(texture_t_DX*)tolua_tousertype_dynamic(L, 2, 0, "texture_t_DX")); return 0; } @@ -59972,7 +62079,7 @@ static int tolua_function_Pointer_texture_t_DX___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - texture_t_DX* returnVal = self->getValue(); + texture_t_DX* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "texture_t_DX"); return 1; } @@ -59981,7 +62088,7 @@ static int tolua_function_Pointer_texture_t_DX___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((texture_t_DX*)tolua_tousertype_dynamic(L, 2, 0, "texture_t_DX")); + (self->setValue)((texture_t_DX*)tolua_tousertype_dynamic(L, 2, 0, "texture_t_DX")); return 0; } @@ -60005,7 +62112,7 @@ static int tolua_function_Pointer_const_ushort__getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const ushort returnVal = self->getValue(); + const ushort returnVal = (self->getValue)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -60030,7 +62137,7 @@ static int tolua_function_Pointer_const_ushort___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const ushort* returnVal = self->getValue(); + const ushort* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -60055,7 +62162,7 @@ static int tolua_function_Pointer_vec4_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(vec4_t*)tolua_tousertype_dynamic(L, 2, 0, "vec4_t")); + (self->setValue)(*(vec4_t*)tolua_tousertype_dynamic(L, 2, 0, "vec4_t")); return 0; } @@ -60079,7 +62186,7 @@ static int tolua_function_Pointer_vec4_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - vec4_t* returnVal = self->getValue(); + vec4_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "vec4_t"); return 1; } @@ -60088,7 +62195,7 @@ static int tolua_function_Pointer_vec4_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((vec4_t*)tolua_tousertype_dynamic(L, 2, 0, "vec4_t")); + (self->setValue)((vec4_t*)tolua_tousertype_dynamic(L, 2, 0, "vec4_t")); return 0; } @@ -60112,7 +62219,7 @@ static int tolua_function_Pointer_vertex_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(vertex_t*)tolua_tousertype_dynamic(L, 2, 0, "vertex_t")); + (self->setValue)(*(vertex_t*)tolua_tousertype_dynamic(L, 2, 0, "vertex_t")); return 0; } @@ -60136,7 +62243,7 @@ static int tolua_function_Pointer_vertex_t___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - vertex_t* returnVal = self->getValue(); + vertex_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "vertex_t"); return 1; } @@ -60145,7 +62252,7 @@ static int tolua_function_Pointer_vertex_t___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((vertex_t*)tolua_tousertype_dynamic(L, 2, 0, "vertex_t")); + (self->setValue)((vertex_t*)tolua_tousertype_dynamic(L, 2, 0, "vertex_t")); return 0; } @@ -60169,7 +62276,7 @@ static int tolua_function_Pointer_view_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(view_t*)tolua_tousertype_dynamic(L, 2, 0, "view_t")); + (self->setValue)(*(view_t*)tolua_tousertype_dynamic(L, 2, 0, "view_t")); return 0; } @@ -60193,7 +62300,31 @@ static int tolua_function_Pointer_VariableArray__D98D369160A0DDA2B95F5D0F301081B { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); + (self->setValue)(*(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>")); + return 0; +} + +static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "VariableArray"); + return 1; +} + +static int tolua_set_Pointer_VariableArray_short___reference(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); + return 0; +} + +static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) +{ + Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60217,7 +62348,7 @@ static int tolua_function_Pointer_VariableArray_ushort___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60241,7 +62372,7 @@ static int tolua_function_Pointer_VariableArray_char___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60265,31 +62396,7 @@ static int tolua_function_Pointer_VariableArray_byte___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); - return 0; -} - -static int tolua_get_Pointer_VariableArray_short___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - tolua_pushusertype(L, (void*)self->reference, "VariableArray"); - return 1; -} - -static int tolua_set_Pointer_VariableArray_short___reference(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); - self->reference = (VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray"); - return 0; -} - -static int tolua_function_Pointer_VariableArray_short___setValue(lua_State* L) -{ - Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)(*(VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60313,7 +62420,7 @@ static int tolua_function_Pointer_VariableArray_CRect____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60322,7 +62429,7 @@ static int tolua_function_Pointer_VariableArray_CRect____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60346,7 +62453,7 @@ static int tolua_function_Pointer_VariableArray_CRes_____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60355,7 +62462,7 @@ static int tolua_function_Pointer_VariableArray_CRes_____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60379,7 +62486,7 @@ static int tolua_function_Pointer_VariableArray_CGameDialogEntry_____getValue(lu { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60388,7 +62495,7 @@ static int tolua_function_Pointer_VariableArray_CGameDialogEntry_____setValue(lu { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60412,7 +62519,7 @@ static int tolua_function_Pointer_VariableArray_CTypedPtrList_CPtrList_CGameJour { Pointer*>*>* self = (Pointer*>*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray*>* returnVal = self->getValue(); + VariableArray*>* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray*>"); return 1; } @@ -60421,7 +62528,7 @@ static int tolua_function_Pointer_VariableArray_CTypedPtrList_CPtrList_CGameJour { Pointer*>*>* self = (Pointer*>*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray*>")); + (self->setValue)((VariableArray*>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray*>")); return 0; } @@ -60445,7 +62552,7 @@ static int tolua_function_Pointer_VariableArray_CSavedGamePartyCreature_____getV { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60454,7 +62561,7 @@ static int tolua_function_Pointer_VariableArray_CSavedGamePartyCreature_____setV { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60478,7 +62585,7 @@ static int tolua_function_Pointer_VariableArray_unsigned_char_____getValue(lua_S { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60487,7 +62594,7 @@ static int tolua_function_Pointer_VariableArray_unsigned_char_____setValue(lua_S { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60511,7 +62618,7 @@ static int tolua_function_Pointer_VariableArray_CAbilityData_____getValue(lua_St { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60520,7 +62627,7 @@ static int tolua_function_Pointer_VariableArray_CAbilityData_____setValue(lua_St { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60544,7 +62651,7 @@ static int tolua_function_Pointer_VariableArray_CSaveGameSlot_____getValue(lua_S { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60553,7 +62660,7 @@ static int tolua_function_Pointer_VariableArray_CSaveGameSlot_____setValue(lua_S { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60577,7 +62684,7 @@ static int tolua_function_Pointer_VariableArray_CSpawnPoint_____getValue(lua_Sta { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60586,7 +62693,7 @@ static int tolua_function_Pointer_VariableArray_CSpawnPoint_____setValue(lua_Sta { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60610,7 +62717,7 @@ static int tolua_function_Pointer_VariableArray_CGameDialogReply_____getValue(lu { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60619,7 +62726,7 @@ static int tolua_function_Pointer_VariableArray_CGameDialogReply_____setValue(lu { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60643,7 +62750,7 @@ static int tolua_function_Pointer_VariableArray_long____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60652,7 +62759,7 @@ static int tolua_function_Pointer_VariableArray_long____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60676,7 +62783,7 @@ static int tolua_function_Pointer_VariableArray___int8____getValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray<__int8>* returnVal = self->getValue(); + VariableArray<__int8>* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray<__int8>"); return 1; } @@ -60685,7 +62792,7 @@ static int tolua_function_Pointer_VariableArray___int8____setValue(lua_State* L) { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<__int8>")); + (self->setValue)((VariableArray<__int8>*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray<__int8>")); return 0; } @@ -60709,7 +62816,7 @@ static int tolua_function_Pointer_VariableArray_CSoundChannel_____getValue(lua_S { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - VariableArray* returnVal = self->getValue(); + VariableArray* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "VariableArray"); return 1; } @@ -60718,7 +62825,7 @@ static int tolua_function_Pointer_VariableArray_CSoundChannel_____setValue(lua_S { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); + (self->setValue)((VariableArray*)tolua_tousertype_dynamic(L, 2, 0, "VariableArray")); return 0; } @@ -60742,7 +62849,7 @@ static int tolua_function_Pointer_uiItem__movie_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::movie_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::movie_t")); + (self->setValue)(*(uiItem::movie_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::movie_t")); return 0; } @@ -60766,7 +62873,7 @@ static int tolua_function_Pointer_uiItem__bmp_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(uiItem::bmp_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::bmp_t")); + (self->setValue)(*(uiItem::bmp_t*)tolua_tousertype_dynamic(L, 2, 0, "uiItem::bmp_t")); return 0; } @@ -60790,7 +62897,7 @@ static int tolua_function_Pointer__4BC756EB7537E12A00FC57C6BF2CCA8B__setValue(lu { Pointer<_4BC756EB7537E12A00FC57C6BF2CCA8B>* self = (Pointer<_4BC756EB7537E12A00FC57C6BF2CCA8B>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_4BC756EB7537E12A00FC57C6BF2CCA8B>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_4BC756EB7537E12A00FC57C6BF2CCA8B*)tolua_tousertype_dynamic(L, 2, 0, "_4BC756EB7537E12A00FC57C6BF2CCA8B")); + (self->setValue)(*(_4BC756EB7537E12A00FC57C6BF2CCA8B*)tolua_tousertype_dynamic(L, 2, 0, "_4BC756EB7537E12A00FC57C6BF2CCA8B")); return 0; } @@ -60814,7 +62921,7 @@ static int tolua_function_Pointer_SDL_Point__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_Point*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Point")); + (self->setValue)(*(SDL_Point*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Point")); return 0; } @@ -60838,7 +62945,7 @@ static int tolua_function_Pointer_slicedRect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(slicedRect*)tolua_tousertype_dynamic(L, 2, 0, "slicedRect")); + (self->setValue)(*(slicedRect*)tolua_tousertype_dynamic(L, 2, 0, "slicedRect")); return 0; } @@ -60862,7 +62969,7 @@ static int tolua_function_Pointer_slicedRect___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - slicedRect* returnVal = self->getValue(); + slicedRect* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "slicedRect"); return 1; } @@ -60871,7 +62978,7 @@ static int tolua_function_Pointer_slicedRect___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((slicedRect*)tolua_tousertype_dynamic(L, 2, 0, "slicedRect")); + (self->setValue)((slicedRect*)tolua_tousertype_dynamic(L, 2, 0, "slicedRect")); return 0; } @@ -60895,7 +63002,7 @@ static int tolua_function_Pointer__820A8B7015E7E0FD9144A7C186FBF075__setValue(lu { Pointer<_820A8B7015E7E0FD9144A7C186FBF075>* self = (Pointer<_820A8B7015E7E0FD9144A7C186FBF075>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_820A8B7015E7E0FD9144A7C186FBF075>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 2, 0, "_820A8B7015E7E0FD9144A7C186FBF075")); + (self->setValue)(*(_820A8B7015E7E0FD9144A7C186FBF075*)tolua_tousertype_dynamic(L, 2, 0, "_820A8B7015E7E0FD9144A7C186FBF075")); return 0; } @@ -60919,7 +63026,7 @@ static int tolua_function_Pointer__9B9540D9920A90D57A3D80DDD1A70514__setValue(lu { Pointer<_9B9540D9920A90D57A3D80DDD1A70514>* self = (Pointer<_9B9540D9920A90D57A3D80DDD1A70514>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_9B9540D9920A90D57A3D80DDD1A70514>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_9B9540D9920A90D57A3D80DDD1A70514*)tolua_tousertype_dynamic(L, 2, 0, "_9B9540D9920A90D57A3D80DDD1A70514")); + (self->setValue)(*(_9B9540D9920A90D57A3D80DDD1A70514*)tolua_tousertype_dynamic(L, 2, 0, "_9B9540D9920A90D57A3D80DDD1A70514")); return 0; } @@ -60943,7 +63050,7 @@ static int tolua_function_Pointer_ISteamUGC__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ISteamUGC::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUGC::vtbl")); + (self->setValue)(*(ISteamUGC::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "ISteamUGC::vtbl")); return 0; } @@ -60967,7 +63074,7 @@ static int tolua_function_Pointer_ISteamRemoteStorage__vtbl__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(ISteamRemoteStorage::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "ISteamRemoteStorage::vtbl")); + (self->setValue)(*(ISteamRemoteStorage::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "ISteamRemoteStorage::vtbl")); return 0; } @@ -60991,7 +63098,7 @@ static int tolua_function_Pointer_IDPProvider__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(IDPProvider::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "IDPProvider::vtbl")); + (self->setValue)(*(IDPProvider::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "IDPProvider::vtbl")); return 0; } @@ -61015,7 +63122,7 @@ static int tolua_function_Pointer_IDPPeer__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(IDPPeer::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "IDPPeer::vtbl")); + (self->setValue)(*(IDPPeer::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "IDPPeer::vtbl")); return 0; } @@ -61039,7 +63146,7 @@ static int tolua_function_Pointer_const_ConstCharString___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - const ConstCharString* returnVal = self->getValue(); + const ConstCharString* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "ConstCharString"); return 1; } @@ -61064,7 +63171,7 @@ static int tolua_function_Pointer_CharString___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CharString* returnVal = self->getValue(); + CharString* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CharString"); return 1; } @@ -61073,7 +63180,7 @@ static int tolua_function_Pointer_CharString___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CharString*)tolua_tousertype_dynamic(L, 2, 0, "CharString")); + (self->setValue)((CharString*)tolua_tousertype_dynamic(L, 2, 0, "CharString")); return 0; } @@ -61097,7 +63204,7 @@ static int tolua_function_Pointer_unsigned_char___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(unsigned char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); + (self->setValue)(*(unsigned char**)tolua_tousertype_dynamic(L, 2, 0, "CharString")); return 0; } @@ -61121,7 +63228,7 @@ static int tolua_function_Pointer_CVidCell__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidCell::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell::vtbl")); + (self->setValue)(*(CVidCell::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell::vtbl")); return 0; } @@ -61145,7 +63252,7 @@ static int tolua_function_Pointer_CTimerWorld__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTimerWorld*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CTimerWorld")); + (self->setValue)(*(CTimerWorld*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CTimerWorld")); return 0; } @@ -61169,7 +63276,7 @@ static int tolua_function_Pointer_CNetworkConnectionSettings__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CNetworkConnectionSettings*)tolua_tousertype_dynamic(L, 2, 0, "CNetworkConnectionSettings")); + (self->setValue)(*(CNetworkConnectionSettings*)tolua_tousertype_dynamic(L, 2, 0, "CNetworkConnectionSettings")); return 0; } @@ -61193,7 +63300,7 @@ static int tolua_function_Pointer_CSpawnPoint__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnPoint::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPoint::vtbl")); + (self->setValue)(*(CSpawnPoint::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPoint::vtbl")); return 0; } @@ -61217,7 +63324,7 @@ static int tolua_function_Pointer_CSpawn__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawn::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn::vtbl")); + (self->setValue)(*(CSpawn::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn::vtbl")); return 0; } @@ -61241,7 +63348,7 @@ static int tolua_function_Pointer_CRes__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CRes::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CRes::vtbl")); + (self->setValue)(*(CRes::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CRes::vtbl")); return 0; } @@ -61265,7 +63372,7 @@ static int tolua_function_Pointer_CResWorldMap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "CResWorldMap")); + (self->setValue)(*(CResWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "CResWorldMap")); return 0; } @@ -61289,7 +63396,7 @@ static int tolua_function_Pointer_CResWave__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResWave*)tolua_tousertype_dynamic(L, 2, 0, "CResWave")); + (self->setValue)(*(CResWave*)tolua_tousertype_dynamic(L, 2, 0, "CResWave")); return 0; } @@ -61313,7 +63420,7 @@ static int tolua_function_Pointer_CResWave___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResWave* returnVal = self->getValue(); + CResWave* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResWave"); return 1; } @@ -61322,7 +63429,7 @@ static int tolua_function_Pointer_CResWave___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResWave*)tolua_tousertype_dynamic(L, 2, 0, "CResWave")); + (self->setValue)((CResWave*)tolua_tousertype_dynamic(L, 2, 0, "CResWave")); return 0; } @@ -61346,7 +63453,7 @@ static int tolua_function_Pointer_CResUI__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResUI*)tolua_tousertype_dynamic(L, 2, 0, "CResUI")); + (self->setValue)(*(CResUI*)tolua_tousertype_dynamic(L, 2, 0, "CResUI")); return 0; } @@ -61370,7 +63477,7 @@ static int tolua_function_Pointer_CResStore__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResStore*)tolua_tousertype_dynamic(L, 2, 0, "CResStore")); + (self->setValue)(*(CResStore*)tolua_tousertype_dynamic(L, 2, 0, "CResStore")); return 0; } @@ -61394,7 +63501,7 @@ static int tolua_function_Pointer_CResSpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResSpell*)tolua_tousertype_dynamic(L, 2, 0, "CResSpell")); + (self->setValue)(*(CResSpell*)tolua_tousertype_dynamic(L, 2, 0, "CResSpell")); return 0; } @@ -61418,7 +63525,7 @@ static int tolua_function_Pointer_CResSpell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResSpell* returnVal = self->getValue(); + CResSpell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResSpell"); return 1; } @@ -61427,7 +63534,7 @@ static int tolua_function_Pointer_CResSpell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResSpell*)tolua_tousertype_dynamic(L, 2, 0, "CResSpell")); + (self->setValue)((CResSpell*)tolua_tousertype_dynamic(L, 2, 0, "CResSpell")); return 0; } @@ -61451,7 +63558,7 @@ static int tolua_function_Pointer_CResPng__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResPng*)tolua_tousertype_dynamic(L, 2, 0, "CResPng")); + (self->setValue)(*(CResPng*)tolua_tousertype_dynamic(L, 2, 0, "CResPng")); return 0; } @@ -61475,7 +63582,7 @@ static int tolua_function_Pointer_CResPLT__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResPLT*)tolua_tousertype_dynamic(L, 2, 0, "CResPLT")); + (self->setValue)(*(CResPLT*)tolua_tousertype_dynamic(L, 2, 0, "CResPLT")); return 0; } @@ -61499,7 +63606,7 @@ static int tolua_function_Pointer_CResMosaic__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResMosaic*)tolua_tousertype_dynamic(L, 2, 0, "CResMosaic")); + (self->setValue)(*(CResMosaic*)tolua_tousertype_dynamic(L, 2, 0, "CResMosaic")); return 0; } @@ -61523,7 +63630,7 @@ static int tolua_function_Pointer_CResMosaic___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResMosaic* returnVal = self->getValue(); + CResMosaic* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResMosaic"); return 1; } @@ -61532,7 +63639,7 @@ static int tolua_function_Pointer_CResMosaic___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResMosaic*)tolua_tousertype_dynamic(L, 2, 0, "CResMosaic")); + (self->setValue)((CResMosaic*)tolua_tousertype_dynamic(L, 2, 0, "CResMosaic")); return 0; } @@ -61556,7 +63663,7 @@ static int tolua_function_Pointer_CResItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResItem*)tolua_tousertype_dynamic(L, 2, 0, "CResItem")); + (self->setValue)(*(CResItem*)tolua_tousertype_dynamic(L, 2, 0, "CResItem")); return 0; } @@ -61580,7 +63687,7 @@ static int tolua_function_Pointer_CResItem___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResItem* returnVal = self->getValue(); + CResItem* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResItem"); return 1; } @@ -61589,7 +63696,7 @@ static int tolua_function_Pointer_CResItem___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResItem*)tolua_tousertype_dynamic(L, 2, 0, "CResItem")); + (self->setValue)((CResItem*)tolua_tousertype_dynamic(L, 2, 0, "CResItem")); return 0; } @@ -61613,7 +63720,7 @@ static int tolua_function_Pointer_CResINI__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResINI*)tolua_tousertype_dynamic(L, 2, 0, "CResINI")); + (self->setValue)(*(CResINI*)tolua_tousertype_dynamic(L, 2, 0, "CResINI")); return 0; } @@ -61637,7 +63744,7 @@ static int tolua_function_Pointer_CResGame__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResGame*)tolua_tousertype_dynamic(L, 2, 0, "CResGame")); + (self->setValue)(*(CResGame*)tolua_tousertype_dynamic(L, 2, 0, "CResGame")); return 0; } @@ -61661,7 +63768,7 @@ static int tolua_function_Pointer_CResGame___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResGame* returnVal = self->getValue(); + CResGame* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResGame"); return 1; } @@ -61670,7 +63777,7 @@ static int tolua_function_Pointer_CResGame___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResGame*)tolua_tousertype_dynamic(L, 2, 0, "CResGame")); + (self->setValue)((CResGame*)tolua_tousertype_dynamic(L, 2, 0, "CResGame")); return 0; } @@ -61694,7 +63801,7 @@ static int tolua_function_Pointer_CResFont__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResFont*)tolua_tousertype_dynamic(L, 2, 0, "CResFont")); + (self->setValue)(*(CResFont*)tolua_tousertype_dynamic(L, 2, 0, "CResFont")); return 0; } @@ -61718,7 +63825,7 @@ static int tolua_function_Pointer_CResFont___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResFont* returnVal = self->getValue(); + CResFont* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResFont"); return 1; } @@ -61727,7 +63834,7 @@ static int tolua_function_Pointer_CResFont___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResFont*)tolua_tousertype_dynamic(L, 2, 0, "CResFont")); + (self->setValue)((CResFont*)tolua_tousertype_dynamic(L, 2, 0, "CResFont")); return 0; } @@ -61751,7 +63858,7 @@ static int tolua_function_Pointer_CResEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResEffect*)tolua_tousertype_dynamic(L, 2, 0, "CResEffect")); + (self->setValue)(*(CResEffect*)tolua_tousertype_dynamic(L, 2, 0, "CResEffect")); return 0; } @@ -61775,7 +63882,7 @@ static int tolua_function_Pointer_CResDLG__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResDLG*)tolua_tousertype_dynamic(L, 2, 0, "CResDLG")); + (self->setValue)(*(CResDLG*)tolua_tousertype_dynamic(L, 2, 0, "CResDLG")); return 0; } @@ -61799,7 +63906,7 @@ static int tolua_function_Pointer_CResCell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResCell*)tolua_tousertype_dynamic(L, 2, 0, "CResCell")); + (self->setValue)(*(CResCell*)tolua_tousertype_dynamic(L, 2, 0, "CResCell")); return 0; } @@ -61823,7 +63930,7 @@ static int tolua_function_Pointer_CResCell___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResCell* returnVal = self->getValue(); + CResCell* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResCell"); return 1; } @@ -61832,7 +63939,7 @@ static int tolua_function_Pointer_CResCell___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResCell*)tolua_tousertype_dynamic(L, 2, 0, "CResCell")); + (self->setValue)((CResCell*)tolua_tousertype_dynamic(L, 2, 0, "CResCell")); return 0; } @@ -61856,7 +63963,7 @@ static int tolua_function_Pointer_CResCRE__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResCRE*)tolua_tousertype_dynamic(L, 2, 0, "CResCRE")); + (self->setValue)(*(CResCRE*)tolua_tousertype_dynamic(L, 2, 0, "CResCRE")); return 0; } @@ -61880,7 +63987,7 @@ static int tolua_function_Pointer_CResCHR__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResCHR*)tolua_tousertype_dynamic(L, 2, 0, "CResCHR")); + (self->setValue)(*(CResCHR*)tolua_tousertype_dynamic(L, 2, 0, "CResCHR")); return 0; } @@ -61904,7 +64011,7 @@ static int tolua_function_Pointer_CResBitmap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CResBitmap")); + (self->setValue)(*(CResBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CResBitmap")); return 0; } @@ -61928,7 +64035,7 @@ static int tolua_function_Pointer_CResBitmap___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CResBitmap* returnVal = self->getValue(); + CResBitmap* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CResBitmap"); return 1; } @@ -61937,7 +64044,7 @@ static int tolua_function_Pointer_CResBitmap___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CResBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CResBitmap")); + (self->setValue)((CResBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CResBitmap")); return 0; } @@ -61961,7 +64068,7 @@ static int tolua_function_Pointer_CResBIO__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResBIO*)tolua_tousertype_dynamic(L, 2, 0, "CResBIO")); + (self->setValue)(*(CResBIO*)tolua_tousertype_dynamic(L, 2, 0, "CResBIO")); return 0; } @@ -61985,7 +64092,7 @@ static int tolua_function_Pointer_CResArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResArea*)tolua_tousertype_dynamic(L, 2, 0, "CResArea")); + (self->setValue)(*(CResArea*)tolua_tousertype_dynamic(L, 2, 0, "CResArea")); return 0; } @@ -62009,7 +64116,7 @@ static int tolua_function_Pointer_CRainStorm__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CRainStorm*)tolua_tousertype_dynamic(L, 2, 0, "CRainStorm")); + (self->setValue)(*(CRainStorm*)tolua_tousertype_dynamic(L, 2, 0, "CRainStorm")); return 0; } @@ -62033,7 +64140,7 @@ static int tolua_function_Pointer_CSnowStorm__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSnowStorm*)tolua_tousertype_dynamic(L, 2, 0, "CSnowStorm")); + (self->setValue)(*(CSnowStorm*)tolua_tousertype_dynamic(L, 2, 0, "CSnowStorm")); return 0; } @@ -62057,7 +64164,7 @@ static int tolua_function_Pointer_CFog__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CFog*)tolua_tousertype_dynamic(L, 2, 0, "CFog")); + (self->setValue)(*(CFog*)tolua_tousertype_dynamic(L, 2, 0, "CFog")); return 0; } @@ -62081,7 +64188,7 @@ static int tolua_function_Pointer_MAP_CHAR_POSITIONS__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(MAP_CHAR_POSITIONS*)tolua_tousertype_dynamic(L, 2, 0, "MAP_CHAR_POSITIONS")); + (self->setValue)(*(MAP_CHAR_POSITIONS*)tolua_tousertype_dynamic(L, 2, 0, "MAP_CHAR_POSITIONS")); return 0; } @@ -62105,7 +64212,7 @@ static int tolua_function_Pointer_MAP_CHAR_POSITIONS___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - MAP_CHAR_POSITIONS* returnVal = self->getValue(); + MAP_CHAR_POSITIONS* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "MAP_CHAR_POSITIONS"); return 1; } @@ -62114,7 +64221,7 @@ static int tolua_function_Pointer_MAP_CHAR_POSITIONS___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((MAP_CHAR_POSITIONS*)tolua_tousertype_dynamic(L, 2, 0, "MAP_CHAR_POSITIONS")); + (self->setValue)((MAP_CHAR_POSITIONS*)tolua_tousertype_dynamic(L, 2, 0, "MAP_CHAR_POSITIONS")); return 0; } @@ -62138,7 +64245,7 @@ static int tolua_function_Pointer_CVIDMODE_RETICLE_DESCRIPTION__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVIDMODE_RETICLE_DESCRIPTION*)tolua_tousertype_dynamic(L, 2, 0, "CVIDMODE_RETICLE_DESCRIPTION")); + (self->setValue)(*(CVIDMODE_RETICLE_DESCRIPTION*)tolua_tousertype_dynamic(L, 2, 0, "CVIDMODE_RETICLE_DESCRIPTION")); return 0; } @@ -62162,7 +64269,7 @@ static int tolua_function_Pointer_CMarker__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMarker*)tolua_tousertype_dynamic(L, 2, 0, "CMarker")); + (self->setValue)(*(CMarker*)tolua_tousertype_dynamic(L, 2, 0, "CMarker")); return 0; } @@ -62186,7 +64293,7 @@ static int tolua_function_Pointer_CPersistantEffect__vtbl__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPersistantEffect::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect::vtbl")); + (self->setValue)(*(CPersistantEffect::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect::vtbl")); return 0; } @@ -62210,7 +64317,7 @@ static int tolua_function_Pointer_CObject__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CObject::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CObject::vtbl")); + (self->setValue)(*(CObject::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CObject::vtbl")); return 0; } @@ -62234,7 +64341,7 @@ static int tolua_function_Pointer_CArray_CRect_CRect____setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CArray*)tolua_tousertype_dynamic(L, 2, 0, "CArray")); + (self->setValue)(*(CArray*)tolua_tousertype_dynamic(L, 2, 0, "CArray")); return 0; } @@ -62258,7 +64365,7 @@ static int tolua_function_Pointer_CDWordArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CDWordArray*)tolua_tousertype_dynamic(L, 2, 0, "CDWordArray")); + (self->setValue)(*(CDWordArray*)tolua_tousertype_dynamic(L, 2, 0, "CDWordArray")); return 0; } @@ -62282,7 +64389,7 @@ static int tolua_function_Pointer_CException__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CException::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CException::vtbl")); + (self->setValue)(*(CException::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CException::vtbl")); return 0; } @@ -62306,7 +64413,7 @@ static int tolua_function_Pointer_CList_long_long___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CList*)tolua_tousertype_dynamic(L, 2, 0, "CList")); + (self->setValue)(*(CList*)tolua_tousertype_dynamic(L, 2, 0, "CList")); return 0; } @@ -62330,7 +64437,7 @@ static int tolua_function_Pointer_CMapStringToString__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMapStringToString*)tolua_tousertype_dynamic(L, 2, 0, "CMapStringToString")); + (self->setValue)(*(CMapStringToString*)tolua_tousertype_dynamic(L, 2, 0, "CMapStringToString")); return 0; } @@ -62354,7 +64461,7 @@ static int tolua_function_Pointer_CWarp__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWarp::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CWarp::vtbl")); + (self->setValue)(*(CWarp::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CWarp::vtbl")); return 0; } @@ -62378,7 +64485,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAIObjectType____vtbl__ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62402,7 +64509,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CContingency____vtbl__s { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62426,7 +64533,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CMoveListEntry____vtbl_ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62450,7 +64557,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_void____vtbl__setValue( { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62474,7 +64581,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameEffectUsability___ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62498,7 +64605,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CMemINIValue____vtbl__s { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62522,7 +64629,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSpawn____vtbl__setValu { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62546,7 +64653,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long___vtbl__setValue(l { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62570,7 +64677,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameEffect____vtbl__se { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62594,7 +64701,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CWeaponIdentification__ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62618,7 +64725,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSelectiveBonus____vtbl { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62642,7 +64749,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CImmunitiesItemEquip___ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62666,7 +64773,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CImmunitiesItemTypeEqui { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62690,7 +64797,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CImmunitySpell____vtbl_ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62714,7 +64821,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecr { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62738,7 +64845,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CPersistantEffect____vt { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62762,7 +64869,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CColorRange____vtbl__se { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62786,7 +64893,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CColorEffect____vtbl__s { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62810,7 +64917,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSelectiveWeaponType___ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62834,7 +64941,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCriticalEntry____vtbl_ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62858,7 +64965,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CBounceEntry____vtbl__s { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62882,7 +64989,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSequenceSound____vtbl_ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62906,7 +65013,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CButtonData____vtbl__se { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); + (self->setValue)(*(CTypedPtrList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::vtbl")); return 0; } @@ -62930,7 +65037,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAIId____setValue(lua_S { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -62954,7 +65061,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAreaUserNote____setVal { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -62978,7 +65085,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAIAction____setValue(l { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63002,7 +65109,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameTimer____setValue( { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63026,7 +65133,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCreatureFileKnownSpell { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63050,7 +65157,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCreatureFileMemorizedS { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63074,7 +65181,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_long____setValue_clashi { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63098,7 +65205,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CBlood____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63122,7 +65229,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CPortraitIcon____setVal { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63146,7 +65253,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CPoint____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63170,7 +65277,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CFeedbackEntry____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63194,7 +65301,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameSprite__GroundItem { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63218,7 +65325,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CResRef____setValue(lua { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63242,7 +65349,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSearchRequest____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63266,7 +65373,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_SAreaFileWrapper____set { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63290,7 +65397,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSavedGameStoredLocatio { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63314,7 +65421,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAOEEntry____setValue(l { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63338,7 +65445,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAreaFileCharacterEntry { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63362,7 +65469,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList___POSITION____setValue( { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63386,7 +65493,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CTiledObject____setValu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63410,7 +65517,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEn { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63434,7 +65541,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CVEFEvent____setValue(l { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63458,7 +65565,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAIObjectType____setVal { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63482,7 +65589,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAIConditionResponse___ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63506,7 +65613,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CMessage____setValue(lu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63530,7 +65637,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CDeathSound____setValue { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63554,7 +65661,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CItem____setValue(lua_S { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63578,7 +65685,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CContingency____setValu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63602,7 +65709,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_cnetworkwindow_queueent { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63626,7 +65733,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CMusicPosition____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63650,7 +65757,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CMoveListEntry____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63674,7 +65781,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_void____setValue(lua_St { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63698,7 +65805,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameEffectUsability___ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63722,7 +65829,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CStoreFileItem____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63746,7 +65853,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CMemINIValue____setValu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63770,7 +65877,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CAIResponse____setValue { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63794,7 +65901,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSpawn____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63818,7 +65925,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameEffect____setValue { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63842,7 +65949,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CWeaponIdentification__ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63866,7 +65973,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSelectiveBonus____setV { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63890,7 +65997,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CImmunitiesItemEquip___ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63914,7 +66021,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CImmunitiesItemTypeEqui { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63938,7 +66045,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CImmunitySpell____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63962,7 +66069,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecr { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -63986,7 +66093,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CPersistantEffect____se { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64010,7 +66117,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CColorRange____setValue { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64034,7 +66141,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CColorEffect____setValu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64058,7 +66165,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSelectiveWeaponType___ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64082,7 +66189,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCriticalEntry____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64106,7 +66213,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CGameOptions____setValu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64130,7 +66237,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CString____setValue(lua { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64154,7 +66261,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CBounceEntry____setValu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64178,7 +66285,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSequenceSound____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64202,7 +66309,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CButtonData____setValue { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64226,7 +66333,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CParticle____setValue(l { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64250,7 +66357,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CVidCell____setValue(lu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64274,7 +66381,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CProjectile____setValue { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64298,7 +66405,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CWarp____setValue(lua_S { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64322,7 +66429,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CScreenStoreItem____set { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64346,7 +66453,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CSound____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64370,7 +66477,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CVoice____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64394,7 +66501,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CTimer____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)(*(CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64418,7 +66525,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCreatureFileKnownSpell { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList* returnVal = self->getValue(); + CTypedPtrList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -64427,7 +66534,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCreatureFileKnownSpell { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64451,7 +66558,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCreatureFileMemorizedS { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList* returnVal = self->getValue(); + CTypedPtrList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -64460,7 +66567,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CCreatureFileMemorizedS { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64484,7 +66591,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CResRef_____getValue(lu { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CTypedPtrList* returnVal = self->getValue(); + CTypedPtrList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -64493,7 +66600,7 @@ static int tolua_function_Pointer_CTypedPtrList_CPtrList_CResRef_____setValue(lu { Pointer*>* self = (Pointer*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); + (self->setValue)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList")); return 0; } @@ -64517,7 +66624,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CAbilityData____vtbl_ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray::vtbl")); + (self->setValue)(*(CTypedPtrArray::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray::vtbl")); return 0; } @@ -64541,7 +66648,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CSpawnPoint____vtbl__ { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray::vtbl")); + (self->setValue)(*(CTypedPtrArray::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray::vtbl")); return 0; } @@ -64565,7 +66672,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CGameDialogReply____v { Pointer::vtbl>* self = (Pointer::vtbl>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer::vtbl>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray::vtbl")); + (self->setValue)(*(CTypedPtrArray::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray::vtbl")); return 0; } @@ -64589,7 +66696,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CRes____setValue(lua_ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64613,7 +66720,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CGameDialogEntry____s { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64637,7 +66744,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CTypedPtrList_CPtrLis { Pointer*>>* self = (Pointer*>>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer*>>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*>*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray*>")); + (self->setValue)(*(CTypedPtrArray*>*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray*>")); return 0; } @@ -64661,7 +66768,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CSavedGamePartyCreatu { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64685,7 +66792,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_unsigned_char____setV { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64709,7 +66816,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CAbilityData____setVa { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64733,7 +66840,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CSaveGameSlot____setV { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64757,7 +66864,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CSpawnPoint____setVal { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64781,7 +66888,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CGameDialogReply____s { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64805,7 +66912,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_long___setValue(lua_S { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64829,7 +66936,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray___int8___setValue(lua { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64853,7 +66960,7 @@ static int tolua_function_Pointer_CTypedPtrArray_CPtrArray_CSoundChannel____setV { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); + (self->setValue)(*(CTypedPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrArray")); return 0; } @@ -64877,7 +66984,7 @@ static int tolua_function_Pointer_CPtrList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CPtrList")); + (self->setValue)(*(CPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CPtrList")); return 0; } @@ -64901,7 +67008,7 @@ static int tolua_function_Pointer_CMessageHandler__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageHandler*)tolua_tousertype_dynamic(L, 2, 0, "CMessageHandler")); + (self->setValue)(*(CMessageHandler*)tolua_tousertype_dynamic(L, 2, 0, "CMessageHandler")); return 0; } @@ -64925,7 +67032,7 @@ static int tolua_function_Pointer_CImmunitiesProjectile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesProjectile")); + (self->setValue)(*(CImmunitiesProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesProjectile")); return 0; } @@ -64949,7 +67056,7 @@ static int tolua_function_Pointer_CImmunitiesSchoolAndSecondary__setValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesSchoolAndSecondary*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSchoolAndSecondary")); + (self->setValue)(*(CImmunitiesSchoolAndSecondary*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSchoolAndSecondary")); return 0; } @@ -64973,7 +67080,7 @@ static int tolua_function_Pointer_CChatBuffer__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CChatBuffer*)tolua_tousertype_dynamic(L, 2, 0, "CChatBuffer")); + (self->setValue)(*(CChatBuffer*)tolua_tousertype_dynamic(L, 2, 0, "CChatBuffer")); return 0; } @@ -64997,7 +67104,7 @@ static int tolua_function_Pointer_CGameEffectList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffectList*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectList")); + (self->setValue)(*(CGameEffectList*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectList")); return 0; } @@ -65021,7 +67128,7 @@ static int tolua_function_Pointer_CImmunitiesAIType__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesAIType*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesAIType")); + (self->setValue)(*(CImmunitiesAIType*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesAIType")); return 0; } @@ -65045,7 +67152,7 @@ static int tolua_function_Pointer_CPersistantEffectListRegenerated__setValue(lua { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPersistantEffectListRegenerated*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffectListRegenerated")); + (self->setValue)(*(CPersistantEffectListRegenerated*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffectListRegenerated")); return 0; } @@ -65069,7 +67176,7 @@ static int tolua_function_Pointer_CApplyEffectList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CApplyEffectList*)tolua_tousertype_dynamic(L, 2, 0, "CApplyEffectList")); + (self->setValue)(*(CApplyEffectList*)tolua_tousertype_dynamic(L, 2, 0, "CApplyEffectList")); return 0; } @@ -65093,7 +67200,7 @@ static int tolua_function_Pointer_CBounceList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBounceList*)tolua_tousertype_dynamic(L, 2, 0, "CBounceList")); + (self->setValue)(*(CBounceList*)tolua_tousertype_dynamic(L, 2, 0, "CBounceList")); return 0; } @@ -65117,7 +67224,7 @@ static int tolua_function_Pointer_CColorEffects__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CColorEffects*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffects")); + (self->setValue)(*(CColorEffects*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffects")); return 0; } @@ -65141,7 +67248,7 @@ static int tolua_function_Pointer_CColorRanges__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CColorRanges*)tolua_tousertype_dynamic(L, 2, 0, "CColorRanges")); + (self->setValue)(*(CColorRanges*)tolua_tousertype_dynamic(L, 2, 0, "CColorRanges")); return 0; } @@ -65165,7 +67272,7 @@ static int tolua_function_Pointer_CCriticalEntryList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCriticalEntryList*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntryList")); + (self->setValue)(*(CCriticalEntryList*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntryList")); return 0; } @@ -65189,7 +67296,7 @@ static int tolua_function_Pointer_CGameEffectUsabilityList__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffectUsabilityList*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsabilityList")); + (self->setValue)(*(CGameEffectUsabilityList*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsabilityList")); return 0; } @@ -65213,7 +67320,7 @@ static int tolua_function_Pointer_CImmunitiesEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesEffect*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesEffect")); + (self->setValue)(*(CImmunitiesEffect*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesEffect")); return 0; } @@ -65237,7 +67344,7 @@ static int tolua_function_Pointer_CImmunitiesItemEquipList__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesItemEquipList*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquipList")); + (self->setValue)(*(CImmunitiesItemEquipList*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquipList")); return 0; } @@ -65261,7 +67368,7 @@ static int tolua_function_Pointer_CImmunitiesItemTypeEquipList__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesItemTypeEquipList*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquipList")); + (self->setValue)(*(CImmunitiesItemTypeEquipList*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquipList")); return 0; } @@ -65285,7 +67392,7 @@ static int tolua_function_Pointer_CImmunitiesSchoolAndSecondaryDecrementing__set { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSchoolAndSecondaryDecrementing")); + (self->setValue)(*(CImmunitiesSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSchoolAndSecondaryDecrementing")); return 0; } @@ -65309,7 +67416,7 @@ static int tolua_function_Pointer_CImmunitiesSpellList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesSpellList*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSpellList")); + (self->setValue)(*(CImmunitiesSpellList*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSpellList")); return 0; } @@ -65333,7 +67440,7 @@ static int tolua_function_Pointer_CImmunitiesWeapon__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesWeapon*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesWeapon")); + (self->setValue)(*(CImmunitiesWeapon*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesWeapon")); return 0; } @@ -65357,7 +67464,7 @@ static int tolua_function_Pointer_CMemINI__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMemINI*)tolua_tousertype_dynamic(L, 2, 0, "CMemINI")); + (self->setValue)(*(CMemINI*)tolua_tousertype_dynamic(L, 2, 0, "CMemINI")); return 0; } @@ -65381,7 +67488,7 @@ static int tolua_function_Pointer_CMoveList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMoveList*)tolua_tousertype_dynamic(L, 2, 0, "CMoveList")); + (self->setValue)(*(CMoveList*)tolua_tousertype_dynamic(L, 2, 0, "CMoveList")); return 0; } @@ -65405,7 +67512,7 @@ static int tolua_function_Pointer_CPersistantEffectList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPersistantEffectList*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffectList")); + (self->setValue)(*(CPersistantEffectList*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffectList")); return 0; } @@ -65429,7 +67536,7 @@ static int tolua_function_Pointer_CSequenceSoundList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSequenceSoundList*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSoundList")); + (self->setValue)(*(CSequenceSoundList*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSoundList")); return 0; } @@ -65453,7 +67560,7 @@ static int tolua_function_Pointer_CSequenceSoundList___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSequenceSoundList* returnVal = self->getValue(); + CSequenceSoundList* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSequenceSoundList"); return 1; } @@ -65462,7 +67569,7 @@ static int tolua_function_Pointer_CSequenceSoundList___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSequenceSoundList*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSoundList")); + (self->setValue)((CSequenceSoundList*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSoundList")); return 0; } @@ -65486,7 +67593,7 @@ static int tolua_function_Pointer_CSelectiveWeaponTypeList__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSelectiveWeaponTypeList*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponTypeList")); + (self->setValue)(*(CSelectiveWeaponTypeList*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponTypeList")); return 0; } @@ -65510,7 +67617,7 @@ static int tolua_function_Pointer_CSelectiveBonusList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSelectiveBonusList*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonusList")); + (self->setValue)(*(CSelectiveBonusList*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonusList")); return 0; } @@ -65534,7 +67641,7 @@ static int tolua_function_Pointer_CPtrArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CPtrArray")); + (self->setValue)(*(CPtrArray*)tolua_tousertype_dynamic(L, 2, 0, "CPtrArray")); return 0; } @@ -65558,7 +67665,7 @@ static int tolua_function_Pointer_CGameJournal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameJournal*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournal")); + (self->setValue)(*(CGameJournal*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournal")); return 0; } @@ -65582,7 +67689,7 @@ static int tolua_function_Pointer_CImportGame__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImportGame*)tolua_tousertype_dynamic(L, 2, 0, "CImportGame")); + (self->setValue)(*(CImportGame*)tolua_tousertype_dynamic(L, 2, 0, "CImportGame")); return 0; } @@ -65606,7 +67713,7 @@ static int tolua_function_Pointer_CSpawnPointArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSpawnPointArray*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPointArray")); + (self->setValue)(*(CSpawnPointArray*)tolua_tousertype_dynamic(L, 2, 0, "CSpawnPointArray")); return 0; } @@ -65630,7 +67737,7 @@ static int tolua_function_Pointer_CObList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CObList*)tolua_tousertype_dynamic(L, 2, 0, "CObList")); + (self->setValue)(*(CObList*)tolua_tousertype_dynamic(L, 2, 0, "CObList")); return 0; } @@ -65654,7 +67761,7 @@ static int tolua_function_Pointer_CMessage__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessage::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CMessage::vtbl")); + (self->setValue)(*(CMessage::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CMessage::vtbl")); return 0; } @@ -65678,7 +67785,7 @@ static int tolua_function_Pointer_CMessageWeaponImmumityUpdate__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageWeaponImmumityUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageWeaponImmumityUpdate")); + (self->setValue)(*(CMessageWeaponImmumityUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageWeaponImmumityUpdate")); return 0; } @@ -65702,7 +67809,7 @@ static int tolua_function_Pointer_CMessageVisualEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageVisualEffect*)tolua_tousertype_dynamic(L, 2, 0, "CMessageVisualEffect")); + (self->setValue)(*(CMessageVisualEffect*)tolua_tousertype_dynamic(L, 2, 0, "CMessageVisualEffect")); return 0; } @@ -65726,7 +67833,7 @@ static int tolua_function_Pointer_CMessageVisibilityMapMove__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageVisibilityMapMove*)tolua_tousertype_dynamic(L, 2, 0, "CMessageVisibilityMapMove")); + (self->setValue)(*(CMessageVisibilityMapMove*)tolua_tousertype_dynamic(L, 2, 0, "CMessageVisibilityMapMove")); return 0; } @@ -65750,7 +67857,7 @@ static int tolua_function_Pointer_CMessageVerbalConstant__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageVerbalConstant*)tolua_tousertype_dynamic(L, 2, 0, "CMessageVerbalConstant")); + (self->setValue)(*(CMessageVerbalConstant*)tolua_tousertype_dynamic(L, 2, 0, "CMessageVerbalConstant")); return 0; } @@ -65774,7 +67881,7 @@ static int tolua_function_Pointer_CMessageUseItemCharges__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUseItemCharges*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUseItemCharges")); + (self->setValue)(*(CMessageUseItemCharges*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUseItemCharges")); return 0; } @@ -65798,7 +67905,7 @@ static int tolua_function_Pointer_CMessageUpdateStoredPartyLocations__setValue(l { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUpdateStoredPartyLocations*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateStoredPartyLocations")); + (self->setValue)(*(CMessageUpdateStoredPartyLocations*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateStoredPartyLocations")); return 0; } @@ -65822,7 +67929,7 @@ static int tolua_function_Pointer_CMessageUpdateReaction__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUpdateReaction*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateReaction")); + (self->setValue)(*(CMessageUpdateReaction*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateReaction")); return 0; } @@ -65846,7 +67953,7 @@ static int tolua_function_Pointer_CMessageUpdateMachineState__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUpdateMachineState*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateMachineState")); + (self->setValue)(*(CMessageUpdateMachineState*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateMachineState")); return 0; } @@ -65870,7 +67977,7 @@ static int tolua_function_Pointer_CMessageUpdateImmunities__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUpdateImmunities*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateImmunities")); + (self->setValue)(*(CMessageUpdateImmunities*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateImmunities")); return 0; } @@ -65894,7 +68001,7 @@ static int tolua_function_Pointer_CMessageUnlock__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUnlock*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUnlock")); + (self->setValue)(*(CMessageUnlock*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUnlock")); return 0; } @@ -65918,7 +68025,7 @@ static int tolua_function_Pointer_CMessageTriggerStatus__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageTriggerStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageTriggerStatus")); + (self->setValue)(*(CMessageTriggerStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageTriggerStatus")); return 0; } @@ -65942,7 +68049,7 @@ static int tolua_function_Pointer_CMessageTakeCreatureItems__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageTakeCreatureItems*)tolua_tousertype_dynamic(L, 2, 0, "CMessageTakeCreatureItems")); + (self->setValue)(*(CMessageTakeCreatureItems*)tolua_tousertype_dynamic(L, 2, 0, "CMessageTakeCreatureItems")); return 0; } @@ -65966,7 +68073,7 @@ static int tolua_function_Pointer_CMessageStopFollow__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStopFollow*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStopFollow")); + (self->setValue)(*(CMessageStopFollow*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStopFollow")); return 0; } @@ -65990,7 +68097,7 @@ static int tolua_function_Pointer_CMessageStopEscapeArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStopEscapeArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStopEscapeArea")); + (self->setValue)(*(CMessageStopEscapeArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStopEscapeArea")); return 0; } @@ -66014,7 +68121,7 @@ static int tolua_function_Pointer_CMessageStopActions__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStopActions*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStopActions")); + (self->setValue)(*(CMessageStopActions*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStopActions")); return 0; } @@ -66038,7 +68145,7 @@ static int tolua_function_Pointer_CMessageStaticStart__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStaticStart*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStaticStart")); + (self->setValue)(*(CMessageStaticStart*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStaticStart")); return 0; } @@ -66062,7 +68169,7 @@ static int tolua_function_Pointer_CMessageStaticSequence__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStaticSequence*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStaticSequence")); + (self->setValue)(*(CMessageStaticSequence*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStaticSequence")); return 0; } @@ -66086,7 +68193,7 @@ static int tolua_function_Pointer_CMessageStartSong__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStartSong*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartSong")); + (self->setValue)(*(CMessageStartSong*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartSong")); return 0; } @@ -66110,7 +68217,7 @@ static int tolua_function_Pointer_CMessageStartScroll__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStartScroll*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartScroll")); + (self->setValue)(*(CMessageStartScroll*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartScroll")); return 0; } @@ -66134,7 +68241,7 @@ static int tolua_function_Pointer_CMessageStartFollow__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStartFollow*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartFollow")); + (self->setValue)(*(CMessageStartFollow*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartFollow")); return 0; } @@ -66158,7 +68265,7 @@ static int tolua_function_Pointer_CMessageStartCombatMusic__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStartCombatMusic*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartCombatMusic")); + (self->setValue)(*(CMessageStartCombatMusic*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartCombatMusic")); return 0; } @@ -66182,7 +68289,7 @@ static int tolua_function_Pointer_CMessageSpritePetrify__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSpritePetrify*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpritePetrify")); + (self->setValue)(*(CMessageSpritePetrify*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpritePetrify")); return 0; } @@ -66206,7 +68313,7 @@ static int tolua_function_Pointer_CMessageSpriteDeath__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSpriteDeath*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpriteDeath")); + (self->setValue)(*(CMessageSpriteDeath*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpriteDeath")); return 0; } @@ -66230,7 +68337,7 @@ static int tolua_function_Pointer_CMessageSpawnPtSpawn__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSpawnPtSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpawnPtSpawn")); + (self->setValue)(*(CMessageSpawnPtSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpawnPtSpawn")); return 0; } @@ -66254,7 +68361,7 @@ static int tolua_function_Pointer_CMessageSpawnPtActivate__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSpawnPtActivate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpawnPtActivate")); + (self->setValue)(*(CMessageSpawnPtActivate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpawnPtActivate")); return 0; } @@ -66278,7 +68385,7 @@ static int tolua_function_Pointer_CMessageSetVariable__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetVariable*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetVariable")); + (self->setValue)(*(CMessageSetVariable*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetVariable")); return 0; } @@ -66302,7 +68409,7 @@ static int tolua_function_Pointer_CMessageSetTimeStop__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetTimeStop*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetTimeStop")); + (self->setValue)(*(CMessageSetTimeStop*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetTimeStop")); return 0; } @@ -66326,7 +68433,7 @@ static int tolua_function_Pointer_CMessageSetTarget__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetTarget*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetTarget")); + (self->setValue)(*(CMessageSetTarget*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetTarget")); return 0; } @@ -66350,7 +68457,7 @@ static int tolua_function_Pointer_CMessageSetStateOverrideTime__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetStateOverrideTime*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetStateOverrideTime")); + (self->setValue)(*(CMessageSetStateOverrideTime*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetStateOverrideTime")); return 0; } @@ -66374,7 +68481,7 @@ static int tolua_function_Pointer_CMessageSetStateOverrideFlag__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetStateOverrideFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetStateOverrideFlag")); + (self->setValue)(*(CMessageSetStateOverrideFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetStateOverrideFlag")); return 0; } @@ -66398,7 +68505,7 @@ static int tolua_function_Pointer_CMessageSetSound__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetSound*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetSound")); + (self->setValue)(*(CMessageSetSound*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetSound")); return 0; } @@ -66422,7 +68529,7 @@ static int tolua_function_Pointer_CMessageSetSequence__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetSequence*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetSequence")); + (self->setValue)(*(CMessageSetSequence*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetSequence")); return 0; } @@ -66446,7 +68553,7 @@ static int tolua_function_Pointer_CMessageSetPath__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetPath*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetPath")); + (self->setValue)(*(CMessageSetPath*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetPath")); return 0; } @@ -66470,7 +68577,7 @@ static int tolua_function_Pointer_CMessageSetNumTimesTalkedTo__setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetNumTimesTalkedTo*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetNumTimesTalkedTo")); + (self->setValue)(*(CMessageSetNumTimesTalkedTo*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetNumTimesTalkedTo")); return 0; } @@ -66494,7 +68601,7 @@ static int tolua_function_Pointer_CMessageSetInStore__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetInStore*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetInStore")); + (self->setValue)(*(CMessageSetInStore*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetInStore")); return 0; } @@ -66518,7 +68625,7 @@ static int tolua_function_Pointer_CMessageSetInDialog__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetInDialog*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetInDialog")); + (self->setValue)(*(CMessageSetInDialog*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetInDialog")); return 0; } @@ -66542,7 +68649,7 @@ static int tolua_function_Pointer_CMessageSetInCutScene__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetInCutScene*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetInCutScene")); + (self->setValue)(*(CMessageSetInCutScene*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetInCutScene")); return 0; } @@ -66566,7 +68673,7 @@ static int tolua_function_Pointer_CMessageSetHappiness__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetHappiness*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetHappiness")); + (self->setValue)(*(CMessageSetHappiness*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetHappiness")); return 0; } @@ -66590,7 +68697,7 @@ static int tolua_function_Pointer_CMessageSetForceActionPick__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetForceActionPick*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetForceActionPick")); + (self->setValue)(*(CMessageSetForceActionPick*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetForceActionPick")); return 0; } @@ -66614,7 +68721,7 @@ static int tolua_function_Pointer_CMessageSetFamiliarSummoner__setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetFamiliarSummoner*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetFamiliarSummoner")); + (self->setValue)(*(CMessageSetFamiliarSummoner*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetFamiliarSummoner")); return 0; } @@ -66638,7 +68745,7 @@ static int tolua_function_Pointer_CMessageSetDrawPoly__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetDrawPoly*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDrawPoly")); + (self->setValue)(*(CMessageSetDrawPoly*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDrawPoly")); return 0; } @@ -66662,7 +68769,7 @@ static int tolua_function_Pointer_CMessageSetDirection__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetDirection*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDirection")); + (self->setValue)(*(CMessageSetDirection*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDirection")); return 0; } @@ -66686,7 +68793,7 @@ static int tolua_function_Pointer_CMessageSetDialogWait__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetDialogWait*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDialogWait")); + (self->setValue)(*(CMessageSetDialogWait*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDialogWait")); return 0; } @@ -66710,7 +68817,7 @@ static int tolua_function_Pointer_CMessageSetDialogPausing__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetDialogPausing*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDialogPausing")); + (self->setValue)(*(CMessageSetDialogPausing*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDialogPausing")); return 0; } @@ -66734,7 +68841,7 @@ static int tolua_function_Pointer_CMessageSetCurrentActionId__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetCurrentActionId*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCurrentActionId")); + (self->setValue)(*(CMessageSetCurrentActionId*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCurrentActionId")); return 0; } @@ -66758,7 +68865,7 @@ static int tolua_function_Pointer_CMessageSetCommandPause__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetCommandPause*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCommandPause")); + (self->setValue)(*(CMessageSetCommandPause*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCommandPause")); return 0; } @@ -66782,7 +68889,7 @@ static int tolua_function_Pointer_CMessageSetBanterBlockTime__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetBanterBlockTime*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetBanterBlockTime")); + (self->setValue)(*(CMessageSetBanterBlockTime*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetBanterBlockTime")); return 0; } @@ -66806,7 +68913,7 @@ static int tolua_function_Pointer_CMessageSetBanterBlockFlag__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetBanterBlockFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetBanterBlockFlag")); + (self->setValue)(*(CMessageSetBanterBlockFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetBanterBlockFlag")); return 0; } @@ -66830,7 +68937,7 @@ static int tolua_function_Pointer_CMessageSetAreaFlag__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetAreaFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetAreaFlag")); + (self->setValue)(*(CMessageSetAreaFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetAreaFlag")); return 0; } @@ -66854,7 +68961,7 @@ static int tolua_function_Pointer_CMessageSetActiveImprisonment__setValue(lua_St { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetActiveImprisonment*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetActiveImprisonment")); + (self->setValue)(*(CMessageSetActiveImprisonment*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetActiveImprisonment")); return 0; } @@ -66878,7 +68985,7 @@ static int tolua_function_Pointer_CMessageSetActive__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetActive*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetActive")); + (self->setValue)(*(CMessageSetActive*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetActive")); return 0; } @@ -66902,7 +69009,7 @@ static int tolua_function_Pointer_CMessageSetAISpeed__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetAISpeed*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetAISpeed")); + (self->setValue)(*(CMessageSetAISpeed*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetAISpeed")); return 0; } @@ -66926,7 +69033,7 @@ static int tolua_function_Pointer_CMessageScreenShake__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageScreenShake*)tolua_tousertype_dynamic(L, 2, 0, "CMessageScreenShake")); + (self->setValue)(*(CMessageScreenShake*)tolua_tousertype_dynamic(L, 2, 0, "CMessageScreenShake")); return 0; } @@ -66950,7 +69057,7 @@ static int tolua_function_Pointer_CMessageSaveGame__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSaveGame*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSaveGame")); + (self->setValue)(*(CMessageSaveGame*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSaveGame")); return 0; } @@ -66974,7 +69081,7 @@ static int tolua_function_Pointer_CMessageResetMorale__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageResetMorale*)tolua_tousertype_dynamic(L, 2, 0, "CMessageResetMorale")); + (self->setValue)(*(CMessageResetMorale*)tolua_tousertype_dynamic(L, 2, 0, "CMessageResetMorale")); return 0; } @@ -66998,7 +69105,7 @@ static int tolua_function_Pointer_CMessageReputationChange__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageReputationChange*)tolua_tousertype_dynamic(L, 2, 0, "CMessageReputationChange")); + (self->setValue)(*(CMessageReputationChange*)tolua_tousertype_dynamic(L, 2, 0, "CMessageReputationChange")); return 0; } @@ -67022,7 +69129,7 @@ static int tolua_function_Pointer_CMessageRemoveReplies__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageRemoveReplies*)tolua_tousertype_dynamic(L, 2, 0, "CMessageRemoveReplies")); + (self->setValue)(*(CMessageRemoveReplies*)tolua_tousertype_dynamic(L, 2, 0, "CMessageRemoveReplies")); return 0; } @@ -67046,7 +69153,7 @@ static int tolua_function_Pointer_CMessageRemoveItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageRemoveItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageRemoveItem")); + (self->setValue)(*(CMessageRemoveItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageRemoveItem")); return 0; } @@ -67070,7 +69177,7 @@ static int tolua_function_Pointer_CMessagePlaySound__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessagePlaySound*)tolua_tousertype_dynamic(L, 2, 0, "CMessagePlaySound")); + (self->setValue)(*(CMessagePlaySound*)tolua_tousertype_dynamic(L, 2, 0, "CMessagePlaySound")); return 0; } @@ -67094,7 +69201,7 @@ static int tolua_function_Pointer_CMessagePartyGold__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessagePartyGold*)tolua_tousertype_dynamic(L, 2, 0, "CMessagePartyGold")); + (self->setValue)(*(CMessagePartyGold*)tolua_tousertype_dynamic(L, 2, 0, "CMessagePartyGold")); return 0; } @@ -67118,7 +69225,7 @@ static int tolua_function_Pointer_CMessageNonControlledDialogStart__setValue(lua { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageNonControlledDialogStart*)tolua_tousertype_dynamic(L, 2, 0, "CMessageNonControlledDialogStart")); + (self->setValue)(*(CMessageNonControlledDialogStart*)tolua_tousertype_dynamic(L, 2, 0, "CMessageNonControlledDialogStart")); return 0; } @@ -67142,7 +69249,7 @@ static int tolua_function_Pointer_CMessageNonControlledDialogReturn__setValue(lu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageNonControlledDialogReturn*)tolua_tousertype_dynamic(L, 2, 0, "CMessageNonControlledDialogReturn")); + (self->setValue)(*(CMessageNonControlledDialogReturn*)tolua_tousertype_dynamic(L, 2, 0, "CMessageNonControlledDialogReturn")); return 0; } @@ -67166,7 +69273,7 @@ static int tolua_function_Pointer_CMessageMoveGlobal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageMoveGlobal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageMoveGlobal")); + (self->setValue)(*(CMessageMoveGlobal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageMoveGlobal")); return 0; } @@ -67190,7 +69297,7 @@ static int tolua_function_Pointer_CMessageMakeGlobal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageMakeGlobal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageMakeGlobal")); + (self->setValue)(*(CMessageMakeGlobal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageMakeGlobal")); return 0; } @@ -67214,7 +69321,7 @@ static int tolua_function_Pointer_CMessageLoadDialog__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageLoadDialog*)tolua_tousertype_dynamic(L, 2, 0, "CMessageLoadDialog")); + (self->setValue)(*(CMessageLoadDialog*)tolua_tousertype_dynamic(L, 2, 0, "CMessageLoadDialog")); return 0; } @@ -67238,7 +69345,7 @@ static int tolua_function_Pointer_CMessageLeaveParty__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageLeaveParty*)tolua_tousertype_dynamic(L, 2, 0, "CMessageLeaveParty")); + (self->setValue)(*(CMessageLeaveParty*)tolua_tousertype_dynamic(L, 2, 0, "CMessageLeaveParty")); return 0; } @@ -67262,7 +69369,7 @@ static int tolua_function_Pointer_CMessageInsertResponse__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageInsertResponse*)tolua_tousertype_dynamic(L, 2, 0, "CMessageInsertResponse")); + (self->setValue)(*(CMessageInsertResponse*)tolua_tousertype_dynamic(L, 2, 0, "CMessageInsertResponse")); return 0; } @@ -67286,7 +69393,7 @@ static int tolua_function_Pointer_CMessageHeartbeat__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageHeartbeat*)tolua_tousertype_dynamic(L, 2, 0, "CMessageHeartbeat")); + (self->setValue)(*(CMessageHeartbeat*)tolua_tousertype_dynamic(L, 2, 0, "CMessageHeartbeat")); return 0; } @@ -67310,7 +69417,7 @@ static int tolua_function_Pointer_CMessageForcePosition__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageForcePosition*)tolua_tousertype_dynamic(L, 2, 0, "CMessageForcePosition")); + (self->setValue)(*(CMessageForcePosition*)tolua_tousertype_dynamic(L, 2, 0, "CMessageForcePosition")); return 0; } @@ -67334,7 +69441,7 @@ static int tolua_function_Pointer_CMessageFireSpell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageFireSpell*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFireSpell")); + (self->setValue)(*(CMessageFireSpell*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFireSpell")); return 0; } @@ -67358,7 +69465,7 @@ static int tolua_function_Pointer_CMessageFireProjectile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageFireProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFireProjectile")); + (self->setValue)(*(CMessageFireProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFireProjectile")); return 0; } @@ -67382,7 +69489,7 @@ static int tolua_function_Pointer_CMessageFamiliarAdd__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageFamiliarAdd*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFamiliarAdd")); + (self->setValue)(*(CMessageFamiliarAdd*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFamiliarAdd")); return 0; } @@ -67406,7 +69513,7 @@ static int tolua_function_Pointer_CMessageFakeExpireCheck__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageFakeExpireCheck*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFakeExpireCheck")); + (self->setValue)(*(CMessageFakeExpireCheck*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFakeExpireCheck")); return 0; } @@ -67430,7 +69537,7 @@ static int tolua_function_Pointer_CMessageFadeColor__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageFadeColor*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFadeColor")); + (self->setValue)(*(CMessageFadeColor*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFadeColor")); return 0; } @@ -67454,7 +69561,7 @@ static int tolua_function_Pointer_CMessageExploreArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageExploreArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageExploreArea")); + (self->setValue)(*(CMessageExploreArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageExploreArea")); return 0; } @@ -67478,7 +69585,7 @@ static int tolua_function_Pointer_CMessageExitStoreMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageExitStoreMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageExitStoreMode")); + (self->setValue)(*(CMessageExitStoreMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageExitStoreMode")); return 0; } @@ -67502,7 +69609,7 @@ static int tolua_function_Pointer_CMessageExitDialogMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageExitDialogMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageExitDialogMode")); + (self->setValue)(*(CMessageExitDialogMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageExitDialogMode")); return 0; } @@ -67526,7 +69633,7 @@ static int tolua_function_Pointer_CMessageEscapeArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageEscapeArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEscapeArea")); + (self->setValue)(*(CMessageEscapeArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEscapeArea")); return 0; } @@ -67550,7 +69657,7 @@ static int tolua_function_Pointer_CMessageEnterDialogMode__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageEnterDialogMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEnterDialogMode")); + (self->setValue)(*(CMessageEnterDialogMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEnterDialogMode")); return 0; } @@ -67574,7 +69681,7 @@ static int tolua_function_Pointer_CMessageEnterDialog__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageEnterDialog*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEnterDialog")); + (self->setValue)(*(CMessageEnterDialog*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEnterDialog")); return 0; } @@ -67598,7 +69705,7 @@ static int tolua_function_Pointer_CMessageDropPath__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDropPath*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDropPath")); + (self->setValue)(*(CMessageDropPath*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDropPath")); return 0; } @@ -67622,7 +69729,7 @@ static int tolua_function_Pointer_CMessageDoorStatus__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDoorStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDoorStatus")); + (self->setValue)(*(CMessageDoorStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDoorStatus")); return 0; } @@ -67646,7 +69753,7 @@ static int tolua_function_Pointer_CMessageDoorOpen__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDoorOpen*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDoorOpen")); + (self->setValue)(*(CMessageDoorOpen*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDoorOpen")); return 0; } @@ -67670,7 +69777,7 @@ static int tolua_function_Pointer_CMessageDisplayTextRefSend__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDisplayTextRefSend*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayTextRefSend")); + (self->setValue)(*(CMessageDisplayTextRefSend*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayTextRefSend")); return 0; } @@ -67694,7 +69801,7 @@ static int tolua_function_Pointer_CMessageDisplayTextRefPoint__setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDisplayTextRefPoint*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayTextRefPoint")); + (self->setValue)(*(CMessageDisplayTextRefPoint*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayTextRefPoint")); return 0; } @@ -67718,7 +69825,7 @@ static int tolua_function_Pointer_CMessageDisplayTextRef__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDisplayTextRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayTextRef")); + (self->setValue)(*(CMessageDisplayTextRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayTextRef")); return 0; } @@ -67742,7 +69849,7 @@ static int tolua_function_Pointer_CMessageDisplayText__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDisplayText*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayText")); + (self->setValue)(*(CMessageDisplayText*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisplayText")); return 0; } @@ -67766,7 +69873,7 @@ static int tolua_function_Pointer_CMessageDisableAI__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDisableAI*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisableAI")); + (self->setValue)(*(CMessageDisableAI*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDisableAI")); return 0; } @@ -67790,7 +69897,7 @@ static int tolua_function_Pointer_CMessageCutSceneModeStatus__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageCutSceneModeStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCutSceneModeStatus")); + (self->setValue)(*(CMessageCutSceneModeStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCutSceneModeStatus")); return 0; } @@ -67814,7 +69921,7 @@ static int tolua_function_Pointer_CMessageCutSceneLite__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageCutSceneLite*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCutSceneLite")); + (self->setValue)(*(CMessageCutSceneLite*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCutSceneLite")); return 0; } @@ -67838,7 +69945,7 @@ static int tolua_function_Pointer_CMessageContainerStatus__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageContainerStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageContainerStatus")); + (self->setValue)(*(CMessageContainerStatus*)tolua_tousertype_dynamic(L, 2, 0, "CMessageContainerStatus")); return 0; } @@ -67862,7 +69969,7 @@ static int tolua_function_Pointer_CMessageContainerItems__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageContainerItems*)tolua_tousertype_dynamic(L, 2, 0, "CMessageContainerItems")); + (self->setValue)(*(CMessageContainerItems*)tolua_tousertype_dynamic(L, 2, 0, "CMessageContainerItems")); return 0; } @@ -67886,7 +69993,7 @@ static int tolua_function_Pointer_CMessageColorUpdate__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageColorUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageColorUpdate")); + (self->setValue)(*(CMessageColorUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageColorUpdate")); return 0; } @@ -67910,7 +70017,7 @@ static int tolua_function_Pointer_CMessageColorReset__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageColorReset*)tolua_tousertype_dynamic(L, 2, 0, "CMessageColorReset")); + (self->setValue)(*(CMessageColorReset*)tolua_tousertype_dynamic(L, 2, 0, "CMessageColorReset")); return 0; } @@ -67934,7 +70041,7 @@ static int tolua_function_Pointer_CMessageClearTriggers__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageClearTriggers*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearTriggers")); + (self->setValue)(*(CMessageClearTriggers*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearTriggers")); return 0; } @@ -67958,7 +70065,7 @@ static int tolua_function_Pointer_CMessageClearGroupSlot__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageClearGroupSlot*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearGroupSlot")); + (self->setValue)(*(CMessageClearGroupSlot*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearGroupSlot")); return 0; } @@ -67982,7 +70089,7 @@ static int tolua_function_Pointer_CMessageClearDialogOnMachine__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageClearDialogOnMachine*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearDialogOnMachine")); + (self->setValue)(*(CMessageClearDialogOnMachine*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearDialogOnMachine")); return 0; } @@ -68006,7 +70113,7 @@ static int tolua_function_Pointer_CMessageClearDialogActions__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageClearDialogActions*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearDialogActions")); + (self->setValue)(*(CMessageClearDialogActions*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearDialogActions")); return 0; } @@ -68030,7 +70137,7 @@ static int tolua_function_Pointer_CMessageClearActions__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageClearActions*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearActions")); + (self->setValue)(*(CMessageClearActions*)tolua_tousertype_dynamic(L, 2, 0, "CMessageClearActions")); return 0; } @@ -68054,7 +70161,7 @@ static int tolua_function_Pointer_CMessageCheckForForcedDialogEnd__setValue(lua_ { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageCheckForForcedDialogEnd*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCheckForForcedDialogEnd")); + (self->setValue)(*(CMessageCheckForForcedDialogEnd*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCheckForForcedDialogEnd")); return 0; } @@ -68078,7 +70185,7 @@ static int tolua_function_Pointer_CMessageChangeDirection__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageChangeDirection*)tolua_tousertype_dynamic(L, 2, 0, "CMessageChangeDirection")); + (self->setValue)(*(CMessageChangeDirection*)tolua_tousertype_dynamic(L, 2, 0, "CMessageChangeDirection")); return 0; } @@ -68102,7 +70209,7 @@ static int tolua_function_Pointer_CMessageAnimationChange__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAnimationChange*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAnimationChange")); + (self->setValue)(*(CMessageAnimationChange*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAnimationChange")); return 0; } @@ -68126,7 +70233,7 @@ static int tolua_function_Pointer_CMessageAllowDialogInterrupt__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAllowDialogInterrupt*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAllowDialogInterrupt")); + (self->setValue)(*(CMessageAllowDialogInterrupt*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAllowDialogInterrupt")); return 0; } @@ -68150,7 +70257,7 @@ static int tolua_function_Pointer_CMessageAddEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAddEffect*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddEffect")); + (self->setValue)(*(CMessageAddEffect*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddEffect")); return 0; } @@ -68174,7 +70281,7 @@ static int tolua_function_Pointer_CMessageAddClairvoyance__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAddClairvoyance*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddClairvoyance")); + (self->setValue)(*(CMessageAddClairvoyance*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddClairvoyance")); return 0; } @@ -68198,7 +70305,7 @@ static int tolua_function_Pointer_CMemINIValue__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMemINIValue::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue::vtbl")); + (self->setValue)(*(CMemINIValue::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue::vtbl")); return 0; } @@ -68222,7 +70329,7 @@ static int tolua_function_Pointer_CItem__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CItem::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CItem::vtbl")); + (self->setValue)(*(CItem::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CItem::vtbl")); return 0; } @@ -68246,7 +70353,7 @@ static int tolua_function_Pointer_CGameObject__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameObject::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject::vtbl")); + (self->setValue)(*(CGameObject::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject::vtbl")); return 0; } @@ -68270,7 +70377,7 @@ static int tolua_function_Pointer_CGameEffect__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameEffect::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect::vtbl")); + (self->setValue)(*(CGameEffect::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect::vtbl")); return 0; } @@ -68294,7 +70401,7 @@ static int tolua_function_Pointer_CContingencyList__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CContingencyList*)tolua_tousertype_dynamic(L, 2, 0, "CContingencyList")); + (self->setValue)(*(CContingencyList*)tolua_tousertype_dynamic(L, 2, 0, "CContingencyList")); return 0; } @@ -68318,7 +70425,7 @@ static int tolua_function_Pointer_CChitin__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CChitin::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CChitin::vtbl")); + (self->setValue)(*(CChitin::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CChitin::vtbl")); return 0; } @@ -68342,7 +70449,7 @@ static int tolua_function_Pointer_CCallbackBase__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCallbackBase::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CCallbackBase::vtbl")); + (self->setValue)(*(CCallbackBase::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CCallbackBase::vtbl")); return 0; } @@ -68366,7 +70473,7 @@ static int tolua_function_Pointer_CCallResult_CSteam_CreateItemResult_t___setVal { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); + (self->setValue)(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); return 0; } @@ -68390,7 +70497,7 @@ static int tolua_function_Pointer_CCallResult_CSteam_SteamUGCQueryCompleted_t___ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); + (self->setValue)(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); return 0; } @@ -68414,7 +70521,7 @@ static int tolua_function_Pointer_CCallResult_CSteam_SubmitItemUpdateResult_t___ { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); + (self->setValue)(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); return 0; } @@ -68438,7 +70545,7 @@ static int tolua_function_Pointer_CCallResult_CSteam_SteamUGCRequestUGCDetailsRe { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); + (self->setValue)(*(CCallResult*)tolua_tousertype_dynamic(L, 2, 0, "CCallResult")); return 0; } @@ -68462,7 +70569,7 @@ static int tolua_function_Pointer_CBaldurEngine__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBaldurEngine::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CBaldurEngine::vtbl")); + (self->setValue)(*(CBaldurEngine::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CBaldurEngine::vtbl")); return 0; } @@ -68486,7 +70593,7 @@ static int tolua_function_Pointer_CAIIdList__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIIdList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CAIIdList::vtbl")); + (self->setValue)(*(CAIIdList::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CAIIdList::vtbl")); return 0; } @@ -68510,7 +70617,7 @@ static int tolua_function_Pointer_CAIGroup__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAIGroup*)tolua_tousertype_dynamic(L, 2, 0, "CAIGroup")); + (self->setValue)(*(CAIGroup*)tolua_tousertype_dynamic(L, 2, 0, "CAIGroup")); return 0; } @@ -68534,7 +70641,7 @@ static int tolua_function_Pointer__BB972E60500CC126FD974613927DE0B4__setValue(lu { Pointer<_BB972E60500CC126FD974613927DE0B4>* self = (Pointer<_BB972E60500CC126FD974613927DE0B4>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_BB972E60500CC126FD974613927DE0B4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_BB972E60500CC126FD974613927DE0B4*)tolua_tousertype_dynamic(L, 2, 0, "_BB972E60500CC126FD974613927DE0B4")); + (self->setValue)(*(_BB972E60500CC126FD974613927DE0B4*)tolua_tousertype_dynamic(L, 2, 0, "_BB972E60500CC126FD974613927DE0B4")); return 0; } @@ -68558,7 +70665,7 @@ static int tolua_function_Pointer__C0ECD3277D3C6A36B299CABE6156CF21__setValue(lu { Pointer<_C0ECD3277D3C6A36B299CABE6156CF21>* self = (Pointer<_C0ECD3277D3C6A36B299CABE6156CF21>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_C0ECD3277D3C6A36B299CABE6156CF21>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_C0ECD3277D3C6A36B299CABE6156CF21*)tolua_tousertype_dynamic(L, 2, 0, "_C0ECD3277D3C6A36B299CABE6156CF21")); + (self->setValue)(*(_C0ECD3277D3C6A36B299CABE6156CF21*)tolua_tousertype_dynamic(L, 2, 0, "_C0ECD3277D3C6A36B299CABE6156CF21")); return 0; } @@ -68582,7 +70689,7 @@ static int tolua_function_Pointer__E3958E369F0C9F787F3E14F852D69D7E__setValue(lu { Pointer<_E3958E369F0C9F787F3E14F852D69D7E>* self = (Pointer<_E3958E369F0C9F787F3E14F852D69D7E>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_E3958E369F0C9F787F3E14F852D69D7E>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_E3958E369F0C9F787F3E14F852D69D7E*)tolua_tousertype_dynamic(L, 2, 0, "_E3958E369F0C9F787F3E14F852D69D7E")); + (self->setValue)(*(_E3958E369F0C9F787F3E14F852D69D7E*)tolua_tousertype_dynamic(L, 2, 0, "_E3958E369F0C9F787F3E14F852D69D7E")); return 0; } @@ -68606,7 +70713,7 @@ static int tolua_function_Pointer__734DBB4D47315AEC2910FBD1685ECB48__setValue(lu { Pointer<_734DBB4D47315AEC2910FBD1685ECB48>* self = (Pointer<_734DBB4D47315AEC2910FBD1685ECB48>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_734DBB4D47315AEC2910FBD1685ECB48>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_734DBB4D47315AEC2910FBD1685ECB48*)tolua_tousertype_dynamic(L, 2, 0, "_734DBB4D47315AEC2910FBD1685ECB48")); + (self->setValue)(*(_734DBB4D47315AEC2910FBD1685ECB48*)tolua_tousertype_dynamic(L, 2, 0, "_734DBB4D47315AEC2910FBD1685ECB48")); return 0; } @@ -68630,7 +70737,7 @@ static int tolua_function_Pointer_glyphHashTable_t__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(glyphHashTable_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphHashTable_t")); + (self->setValue)(*(glyphHashTable_t*)tolua_tousertype_dynamic(L, 2, 0, "glyphHashTable_t")); return 0; } @@ -68654,7 +70761,7 @@ static int tolua_function_Pointer__SETJMP_FLOAT128__setValue(lua_State* L) { Pointer<_SETJMP_FLOAT128>* self = (Pointer<_SETJMP_FLOAT128>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_SETJMP_FLOAT128>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_SETJMP_FLOAT128*)tolua_tousertype_dynamic(L, 2, 0, "_SETJMP_FLOAT128")); + (self->setValue)(*(_SETJMP_FLOAT128*)tolua_tousertype_dynamic(L, 2, 0, "_SETJMP_FLOAT128")); return 0; } @@ -68678,7 +70785,7 @@ static int tolua_function_Pointer__SETJMP_FLOAT128___getValue(lua_State* L) { Pointer<_SETJMP_FLOAT128*>* self = (Pointer<_SETJMP_FLOAT128*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_SETJMP_FLOAT128*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - _SETJMP_FLOAT128* returnVal = self->getValue(); + _SETJMP_FLOAT128* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "_SETJMP_FLOAT128"); return 1; } @@ -68687,7 +70794,7 @@ static int tolua_function_Pointer__SETJMP_FLOAT128___setValue(lua_State* L) { Pointer<_SETJMP_FLOAT128*>* self = (Pointer<_SETJMP_FLOAT128*>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_SETJMP_FLOAT128*>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((_SETJMP_FLOAT128*)tolua_tousertype_dynamic(L, 2, 0, "_SETJMP_FLOAT128")); + (self->setValue)((_SETJMP_FLOAT128*)tolua_tousertype_dynamic(L, 2, 0, "_SETJMP_FLOAT128")); return 0; } @@ -68711,7 +70818,31 @@ static int tolua_function_Pointer__GUID__setValue(lua_State* L) { Pointer<_GUID>* self = (Pointer<_GUID>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer<_GUID>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(_GUID*)tolua_tousertype_dynamic(L, 2, 0, "_GUID")); + (self->setValue)(*(_GUID*)tolua_tousertype_dynamic(L, 2, 0, "_GUID")); + return 0; +} + +static int tolua_get_Pointer_SDL_VideoDevice__gl_config_t__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + tolua_pushusertype(L, (void*)self->reference, "SDL_VideoDevice::gl_config_t"); + return 1; +} + +static int tolua_set_Pointer_SDL_VideoDevice__gl_config_t__reference(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'reference'", NULL); + self->reference = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice::gl_config_t"); + return 0; +} + +static int tolua_function_Pointer_SDL_VideoDevice__gl_config_t__setValue(lua_State* L) +{ + Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); + (self->setValue)(*(SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice::gl_config_t")); return 0; } @@ -68735,7 +70866,7 @@ static int tolua_function_Pointer_LClosure__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LClosure*)tolua_tousertype_dynamic(L, 2, 0, "LClosure")); + (self->setValue)(*(LClosure*)tolua_tousertype_dynamic(L, 2, 0, "LClosure")); return 0; } @@ -68759,7 +70890,7 @@ static int tolua_function_Pointer_LCharString_32___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<32>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<32>")); + (self->setValue)(*(LCharString<32>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<32>")); return 0; } @@ -68783,7 +70914,7 @@ static int tolua_function_Pointer_LCharString_4___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<4>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<4>")); + (self->setValue)(*(LCharString<4>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<4>")); return 0; } @@ -68807,7 +70938,7 @@ static int tolua_function_Pointer_LCharString_8___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<8>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<8>")); + (self->setValue)(*(LCharString<8>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<8>")); return 0; } @@ -68831,7 +70962,7 @@ static int tolua_function_Pointer_LCharString_2___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<2>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<2>")); + (self->setValue)(*(LCharString<2>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<2>")); return 0; } @@ -68855,7 +70986,7 @@ static int tolua_function_Pointer_LCharString_260___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<260>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<260>")); + (self->setValue)(*(LCharString<260>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<260>")); return 0; } @@ -68879,7 +71010,7 @@ static int tolua_function_Pointer_LCharString_8000___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<8000>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<8000>")); + (self->setValue)(*(LCharString<8000>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<8000>")); return 0; } @@ -68903,7 +71034,7 @@ static int tolua_function_Pointer_LCharString_1025___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<1025>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<1025>")); + (self->setValue)(*(LCharString<1025>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<1025>")); return 0; } @@ -68927,7 +71058,7 @@ static int tolua_function_Pointer_LCharString_129___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<129>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<129>")); + (self->setValue)(*(LCharString<129>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<129>")); return 0; } @@ -68951,7 +71082,7 @@ static int tolua_function_Pointer_LCharString_256___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(LCharString<256>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<256>")); + (self->setValue)(*(LCharString<256>*)tolua_tousertype_dynamic(L, 2, 0, "LCharString<256>")); return 0; } @@ -68975,7 +71106,7 @@ static int tolua_function_Pointer_CResBinary__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResBinary*)tolua_tousertype_dynamic(L, 2, 0, "CResBinary")); + (self->setValue)(*(CResBinary*)tolua_tousertype_dynamic(L, 2, 0, "CResBinary")); return 0; } @@ -68999,7 +71130,7 @@ static int tolua_function_Pointer_CAreaVariable__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaVariable*)tolua_tousertype_dynamic(L, 2, 0, "CAreaVariable")); + (self->setValue)(*(CAreaVariable*)tolua_tousertype_dynamic(L, 2, 0, "CAreaVariable")); return 0; } @@ -69023,7 +71154,7 @@ static int tolua_function_Pointer_CMessageSetVariableAll__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetVariableAll*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetVariableAll")); + (self->setValue)(*(CMessageSetVariableAll*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetVariableAll")); return 0; } @@ -69047,7 +71178,7 @@ static int tolua_function_Pointer_SteamUGCQueryCompleted_t__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SteamUGCQueryCompleted_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCQueryCompleted_t")); + (self->setValue)(*(SteamUGCQueryCompleted_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCQueryCompleted_t")); return 0; } @@ -69071,7 +71202,7 @@ static int tolua_function_Pointer_SteamUGCQueryCompleted_t___getValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SteamUGCQueryCompleted_t* returnVal = self->getValue(); + SteamUGCQueryCompleted_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SteamUGCQueryCompleted_t"); return 1; } @@ -69080,7 +71211,7 @@ static int tolua_function_Pointer_SteamUGCQueryCompleted_t___setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SteamUGCQueryCompleted_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCQueryCompleted_t")); + (self->setValue)((SteamUGCQueryCompleted_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCQueryCompleted_t")); return 0; } @@ -69104,7 +71235,7 @@ static int tolua_function_Pointer_SteamUGCRequestUGCDetailsResult_t__setValue(lu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SteamUGCRequestUGCDetailsResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCRequestUGCDetailsResult_t")); + (self->setValue)(*(SteamUGCRequestUGCDetailsResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCRequestUGCDetailsResult_t")); return 0; } @@ -69128,7 +71259,7 @@ static int tolua_function_Pointer_SteamUGCRequestUGCDetailsResult_t___getValue(l { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - SteamUGCRequestUGCDetailsResult_t* returnVal = self->getValue(); + SteamUGCRequestUGCDetailsResult_t* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "SteamUGCRequestUGCDetailsResult_t"); return 1; } @@ -69137,7 +71268,7 @@ static int tolua_function_Pointer_SteamUGCRequestUGCDetailsResult_t___setValue(l { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((SteamUGCRequestUGCDetailsResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCRequestUGCDetailsResult_t")); + (self->setValue)((SteamUGCRequestUGCDetailsResult_t*)tolua_tousertype_dynamic(L, 2, 0, "SteamUGCRequestUGCDetailsResult_t")); return 0; } @@ -69161,7 +71292,7 @@ static int tolua_function_Pointer_SDL_TextInputEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_TextInputEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_TextInputEvent")); + (self->setValue)(*(SDL_TextInputEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_TextInputEvent")); return 0; } @@ -69185,7 +71316,7 @@ static int tolua_function_Pointer_SDL_TextEditingEvent__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(SDL_TextEditingEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_TextEditingEvent")); + (self->setValue)(*(SDL_TextEditingEvent*)tolua_tousertype_dynamic(L, 2, 0, "SDL_TextEditingEvent")); return 0; } @@ -69209,7 +71340,7 @@ static int tolua_function_Pointer_CVisualEffectBase__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVisualEffectBase*)tolua_tousertype_dynamic(L, 2, 0, "CVisualEffectBase")); + (self->setValue)(*(CVisualEffectBase*)tolua_tousertype_dynamic(L, 2, 0, "CVisualEffectBase")); return 0; } @@ -69233,7 +71364,7 @@ static int tolua_function_Pointer_CVisibilityMap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVisibilityMap*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMap")); + (self->setValue)(*(CVisibilityMap*)tolua_tousertype_dynamic(L, 2, 0, "CVisibilityMap")); return 0; } @@ -69257,7 +71388,7 @@ static int tolua_function_Pointer_CVidImage__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidImage*)tolua_tousertype_dynamic(L, 2, 0, "CVidImage")); + (self->setValue)(*(CVidImage*)tolua_tousertype_dynamic(L, 2, 0, "CVidImage")); return 0; } @@ -69281,7 +71412,7 @@ static int tolua_function_Pointer_CVidTile__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidTile*)tolua_tousertype_dynamic(L, 2, 0, "CVidTile")); + (self->setValue)(*(CVidTile*)tolua_tousertype_dynamic(L, 2, 0, "CVidTile")); return 0; } @@ -69305,7 +71436,7 @@ static int tolua_function_Pointer_CTlkTable__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CTlkTable*)tolua_tousertype_dynamic(L, 2, 0, "CTlkTable")); + (self->setValue)(*(CTlkTable*)tolua_tousertype_dynamic(L, 2, 0, "CTlkTable")); return 0; } @@ -69329,7 +71460,7 @@ static int tolua_function_Pointer_CSteam__SubscribedItems__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSteam::SubscribedItems*)tolua_tousertype_dynamic(L, 2, 0, "CSteam::SubscribedItems")); + (self->setValue)(*(CSteam::SubscribedItems*)tolua_tousertype_dynamic(L, 2, 0, "CSteam::SubscribedItems")); return 0; } @@ -69353,7 +71484,7 @@ static int tolua_function_Pointer_CSteam__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam")); + (self->setValue)(*(CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam")); return 0; } @@ -69377,7 +71508,7 @@ static int tolua_function_Pointer_CSteam___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CSteam* returnVal = self->getValue(); + CSteam* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CSteam"); return 1; } @@ -69386,7 +71517,7 @@ static int tolua_function_Pointer_CSteam___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam")); + (self->setValue)((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam")); return 0; } @@ -69410,7 +71541,7 @@ static int tolua_function_Pointer_CGameAnimationType__vtbl__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAnimationType::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimationType::vtbl")); + (self->setValue)(*(CGameAnimationType::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameAnimationType::vtbl")); return 0; } @@ -69434,7 +71565,7 @@ static int tolua_function_Pointer_CMessageAddVVCInternal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAddVVCInternal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddVVCInternal")); + (self->setValue)(*(CMessageAddVVCInternal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddVVCInternal")); return 0; } @@ -69458,7 +71589,7 @@ static int tolua_function_Pointer_CMessageChangeStoreMarkup__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageChangeStoreMarkup*)tolua_tousertype_dynamic(L, 2, 0, "CMessageChangeStoreMarkup")); + (self->setValue)(*(CMessageChangeStoreMarkup*)tolua_tousertype_dynamic(L, 2, 0, "CMessageChangeStoreMarkup")); return 0; } @@ -69482,7 +71613,7 @@ static int tolua_function_Pointer_CMessageCleanAir__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageCleanAir*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCleanAir")); + (self->setValue)(*(CMessageCleanAir*)tolua_tousertype_dynamic(L, 2, 0, "CMessageCleanAir")); return 0; } @@ -69506,7 +71637,7 @@ static int tolua_function_Pointer_CMessageDreamScriptResRef__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageDreamScriptResRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDreamScriptResRef")); + (self->setValue)(*(CMessageDreamScriptResRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageDreamScriptResRef")); return 0; } @@ -69530,7 +71661,7 @@ static int tolua_function_Pointer_CMessageFamiliarRemoveResRef__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageFamiliarRemoveResRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFamiliarRemoveResRef")); + (self->setValue)(*(CMessageFamiliarRemoveResRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageFamiliarRemoveResRef")); return 0; } @@ -69554,7 +71685,7 @@ static int tolua_function_Pointer_CMessageForceRandomEncounter__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageForceRandomEncounter*)tolua_tousertype_dynamic(L, 2, 0, "CMessageForceRandomEncounter")); + (self->setValue)(*(CMessageForceRandomEncounter*)tolua_tousertype_dynamic(L, 2, 0, "CMessageForceRandomEncounter")); return 0; } @@ -69578,7 +71709,7 @@ static int tolua_function_Pointer_CMessagePlaySoundRef__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessagePlaySoundRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessagePlaySoundRef")); + (self->setValue)(*(CMessagePlaySoundRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessagePlaySoundRef")); return 0; } @@ -69602,7 +71733,7 @@ static int tolua_function_Pointer_CMessageRemoveVVCInternal__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageRemoveVVCInternal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageRemoveVVCInternal")); + (self->setValue)(*(CMessageRemoveVVCInternal*)tolua_tousertype_dynamic(L, 2, 0, "CMessageRemoveVVCInternal")); return 0; } @@ -69626,7 +71757,7 @@ static int tolua_function_Pointer_CMessageSetAreaScript__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetAreaScript*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetAreaScript")); + (self->setValue)(*(CMessageSetAreaScript*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetAreaScript")); return 0; } @@ -69650,7 +71781,7 @@ static int tolua_function_Pointer_CMessageSetCampaign__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetCampaign*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCampaign")); + (self->setValue)(*(CMessageSetCampaign*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCampaign")); return 0; } @@ -69674,7 +71805,7 @@ static int tolua_function_Pointer_CMessageSetCurrentArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetCurrentArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCurrentArea")); + (self->setValue)(*(CMessageSetCurrentArea*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetCurrentArea")); return 0; } @@ -69698,7 +71829,7 @@ static int tolua_function_Pointer_CMessageSetDialogResRef__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetDialogResRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDialogResRef")); + (self->setValue)(*(CMessageSetDialogResRef*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetDialogResRef")); return 0; } @@ -69722,7 +71853,7 @@ static int tolua_function_Pointer_CMessageSetMusic__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetMusic*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetMusic")); + (self->setValue)(*(CMessageSetMusic*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetMusic")); return 0; } @@ -69746,7 +71877,7 @@ static int tolua_function_Pointer_CMessageSetPortraitLarge__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetPortraitLarge*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetPortraitLarge")); + (self->setValue)(*(CMessageSetPortraitLarge*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetPortraitLarge")); return 0; } @@ -69770,7 +71901,7 @@ static int tolua_function_Pointer_CMessageSetPortraitSmall__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetPortraitSmall*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetPortraitSmall")); + (self->setValue)(*(CMessageSetPortraitSmall*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetPortraitSmall")); return 0; } @@ -69794,7 +71925,7 @@ static int tolua_function_Pointer_CMessageSetRestEncounterProbability__setValue( { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetRestEncounterProbability*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetRestEncounterProbability")); + (self->setValue)(*(CMessageSetRestEncounterProbability*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetRestEncounterProbability")); return 0; } @@ -69818,7 +71949,7 @@ static int tolua_function_Pointer_CMessageSetWorldmap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetWorldmap*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetWorldmap")); + (self->setValue)(*(CMessageSetWorldmap*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetWorldmap")); return 0; } @@ -69842,7 +71973,7 @@ static int tolua_function_Pointer_CMessageSetWorldmapAreaFlag__setValue(lua_Stat { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetWorldmapAreaFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetWorldmapAreaFlag")); + (self->setValue)(*(CMessageSetWorldmapAreaFlag*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetWorldmapAreaFlag")); return 0; } @@ -69866,7 +71997,7 @@ static int tolua_function_Pointer_CMessageStartTextScreen__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStartTextScreen*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartTextScreen")); + (self->setValue)(*(CMessageStartTextScreen*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartTextScreen")); return 0; } @@ -69890,7 +72021,7 @@ static int tolua_function_Pointer_CMessageStartVEF__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStartVEF*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartVEF")); + (self->setValue)(*(CMessageStartVEF*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStartVEF")); return 0; } @@ -69914,7 +72045,7 @@ static int tolua_function_Pointer_CMessageStaticPalette__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStaticPalette*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStaticPalette")); + (self->setValue)(*(CMessageStaticPalette*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStaticPalette")); return 0; } @@ -69938,7 +72069,7 @@ static int tolua_function_Pointer_CMessageStoreDemand__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStoreDemand*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreDemand")); + (self->setValue)(*(CMessageStoreDemand*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreDemand")); return 0; } @@ -69962,7 +72093,7 @@ static int tolua_function_Pointer_CMessageStoreRelease__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStoreRelease*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreRelease")); + (self->setValue)(*(CMessageStoreRelease*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreRelease")); return 0; } @@ -69986,7 +72117,7 @@ static int tolua_function_Pointer_CMessageStoreRemoveItem__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStoreRemoveItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreRemoveItem")); + (self->setValue)(*(CMessageStoreRemoveItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreRemoveItem")); return 0; } @@ -70010,7 +72141,7 @@ static int tolua_function_Pointer_CMessageStoreReplaceItem__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStoreReplaceItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreReplaceItem")); + (self->setValue)(*(CMessageStoreReplaceItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreReplaceItem")); return 0; } @@ -70034,7 +72165,7 @@ static int tolua_function_Pointer_CMessageUpdateScript__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageUpdateScript*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateScript")); + (self->setValue)(*(CMessageUpdateScript*)tolua_tousertype_dynamic(L, 2, 0, "CMessageUpdateScript")); return 0; } @@ -70058,7 +72189,7 @@ static int tolua_function_Pointer_CResHelper_CResText_1012___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70082,7 +72213,7 @@ static int tolua_function_Pointer_CResHelper_CResText_1008___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70106,7 +72237,7 @@ static int tolua_function_Pointer_CResHelper_CResSpell_1006___setValue(lua_State { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70130,7 +72261,7 @@ static int tolua_function_Pointer_CResHelper_CResItem_1005___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70154,7 +72285,7 @@ static int tolua_function_Pointer_CResHelper_CResWave_4___setValue(lua_State* L) { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70178,7 +72309,7 @@ static int tolua_function_Pointer_CResHelper_CResBitmap_1___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70202,7 +72333,7 @@ static int tolua_function_Pointer_CResHelper_CResFont_1034___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70226,7 +72357,7 @@ static int tolua_function_Pointer_CResHelper_CResCell_1000___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70250,7 +72381,7 @@ static int tolua_function_Pointer_CResHelper_CResGame_1013___setValue(lua_State* { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70274,7 +72405,7 @@ static int tolua_function_Pointer_CResHelper_CResMosaic_1004___setValue(lua_Stat { Pointer>* self = (Pointer>*)tolua_tousertype_dynamic(L, 1, 0, "Pointer>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); + (self->setValue)(*(CResHelper*)tolua_tousertype_dynamic(L, 2, 0, "CResHelper")); return 0; } @@ -70298,7 +72429,7 @@ static int tolua_function_Pointer_CVidMosaic__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidMosaic*)tolua_tousertype_dynamic(L, 2, 0, "CVidMosaic")); + (self->setValue)(*(CVidMosaic*)tolua_tousertype_dynamic(L, 2, 0, "CVidMosaic")); return 0; } @@ -70322,7 +72453,7 @@ static int tolua_function_Pointer_CWeather__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWeather*)tolua_tousertype_dynamic(L, 2, 0, "CWeather")); + (self->setValue)(*(CWeather*)tolua_tousertype_dynamic(L, 2, 0, "CWeather")); return 0; } @@ -70346,7 +72477,7 @@ static int tolua_function_Pointer_CInfButtonSettings__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfButtonSettings*)tolua_tousertype_dynamic(L, 2, 0, "CInfButtonSettings")); + (self->setValue)(*(CInfButtonSettings*)tolua_tousertype_dynamic(L, 2, 0, "CInfButtonSettings")); return 0; } @@ -70370,7 +72501,7 @@ static int tolua_function_Pointer_CInfButtonSettings___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CInfButtonSettings* returnVal = self->getValue(); + CInfButtonSettings* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CInfButtonSettings"); return 1; } @@ -70379,7 +72510,7 @@ static int tolua_function_Pointer_CInfButtonSettings___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CInfButtonSettings*)tolua_tousertype_dynamic(L, 2, 0, "CInfButtonSettings")); + (self->setValue)((CInfButtonSettings*)tolua_tousertype_dynamic(L, 2, 0, "CInfButtonSettings")); return 0; } @@ -70403,7 +72534,7 @@ static int tolua_function_Pointer_CVidFont__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVidFont*)tolua_tousertype_dynamic(L, 2, 0, "CVidFont")); + (self->setValue)(*(CVidFont*)tolua_tousertype_dynamic(L, 2, 0, "CVidFont")); return 0; } @@ -70427,7 +72558,7 @@ static int tolua_function_Pointer_CCacheStatus__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CCacheStatus*)tolua_tousertype_dynamic(L, 2, 0, "CCacheStatus")); + (self->setValue)(*(CCacheStatus*)tolua_tousertype_dynamic(L, 2, 0, "CCacheStatus")); return 0; } @@ -70451,7 +72582,7 @@ static int tolua_function_Pointer_CInfToolTip__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfToolTip*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfToolTip")); + (self->setValue)(*(CInfToolTip*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfToolTip")); return 0; } @@ -70475,7 +72606,7 @@ static int tolua_function_Pointer_CAreaFileHeader__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileHeader")); + (self->setValue)(*(CAreaFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileHeader")); return 0; } @@ -70499,7 +72630,7 @@ static int tolua_function_Pointer_CAreaFileStaticObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileStaticObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileStaticObject")); + (self->setValue)(*(CAreaFileStaticObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileStaticObject")); return 0; } @@ -70523,7 +72654,7 @@ static int tolua_function_Pointer_CGameStatsRes__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameStatsRes*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatsRes")); + (self->setValue)(*(CGameStatsRes*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatsRes")); return 0; } @@ -70547,7 +72678,7 @@ static int tolua_function_Pointer_CGameStatsRes___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGameStatsRes* returnVal = self->getValue(); + CGameStatsRes* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGameStatsRes"); return 1; } @@ -70556,7 +72687,7 @@ static int tolua_function_Pointer_CGameStatsRes___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGameStatsRes*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatsRes")); + (self->setValue)((CGameStatsRes*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatsRes")); return 0; } @@ -70580,7 +72711,7 @@ static int tolua_function_Pointer_CWorldMap__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMap")); + (self->setValue)(*(CWorldMap*)tolua_tousertype_dynamic(L, 2, 0, "CWorldMap")); return 0; } @@ -70604,7 +72735,7 @@ static int tolua_function_Pointer_CVEFVidCellBase__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVEFVidCellBase*)tolua_tousertype_dynamic(L, 2, 0, "CVEFVidCellBase")); + (self->setValue)(*(CVEFVidCellBase*)tolua_tousertype_dynamic(L, 2, 0, "CVEFVidCellBase")); return 0; } @@ -70628,7 +72759,7 @@ static int tolua_function_Pointer_CStoreFileHeader__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CStoreFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileHeader")); + (self->setValue)(*(CStoreFileHeader*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileHeader")); return 0; } @@ -70652,7 +72783,7 @@ static int tolua_function_Pointer_CRuleTables__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CRuleTables*)tolua_tousertype_dynamic(L, 2, 0, "CRuleTables")); + (self->setValue)(*(CRuleTables*)tolua_tousertype_dynamic(L, 2, 0, "CRuleTables")); return 0; } @@ -70676,7 +72807,7 @@ static int tolua_function_Pointer_CProjectileFileFormat__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileFileFormat*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileFileFormat")); + (self->setValue)(*(CProjectileFileFormat*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileFileFormat")); return 0; } @@ -70700,7 +72831,7 @@ static int tolua_function_Pointer_CProjectileBAMFileFormat__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileBAMFileFormat*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAMFileFormat")); + (self->setValue)(*(CProjectileBAMFileFormat*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAMFileFormat")); return 0; } @@ -70724,7 +72855,7 @@ static int tolua_function_Pointer_CProjectileAreaFileFormat__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileAreaFileFormat*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileAreaFileFormat")); + (self->setValue)(*(CProjectileAreaFileFormat*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileAreaFileFormat")); return 0; } @@ -70748,7 +72879,7 @@ static int tolua_function_Pointer_CProgressBar__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProgressBar*)tolua_tousertype_dynamic(L, 2, 0, "CProgressBar")); + (self->setValue)(*(CProgressBar*)tolua_tousertype_dynamic(L, 2, 0, "CProgressBar")); return 0; } @@ -70772,7 +72903,7 @@ static int tolua_function_Pointer_CNetworkWindow__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CNetworkWindow*)tolua_tousertype_dynamic(L, 2, 0, "CNetworkWindow")); + (self->setValue)(*(CNetworkWindow*)tolua_tousertype_dynamic(L, 2, 0, "CNetworkWindow")); return 0; } @@ -70796,7 +72927,7 @@ static int tolua_function_Pointer_CNetworkWindow___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CNetworkWindow* returnVal = self->getValue(); + CNetworkWindow* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CNetworkWindow"); return 1; } @@ -70805,7 +72936,7 @@ static int tolua_function_Pointer_CNetworkWindow___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CNetworkWindow*)tolua_tousertype_dynamic(L, 2, 0, "CNetworkWindow")); + (self->setValue)((CNetworkWindow*)tolua_tousertype_dynamic(L, 2, 0, "CNetworkWindow")); return 0; } @@ -70829,7 +72960,7 @@ static int tolua_function_Pointer_CNetwork__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CNetwork*)tolua_tousertype_dynamic(L, 2, 0, "CNetwork")); + (self->setValue)(*(CNetwork*)tolua_tousertype_dynamic(L, 2, 0, "CNetwork")); return 0; } @@ -70853,7 +72984,7 @@ static int tolua_function_Pointer_CMessageSpriteUpdate__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSpriteUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpriteUpdate")); + (self->setValue)(*(CMessageSpriteUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpriteUpdate")); return 0; } @@ -70877,7 +73008,7 @@ static int tolua_function_Pointer_CMessageColorChange__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageColorChange*)tolua_tousertype_dynamic(L, 2, 0, "CMessageColorChange")); + (self->setValue)(*(CMessageColorChange*)tolua_tousertype_dynamic(L, 2, 0, "CMessageColorChange")); return 0; } @@ -70901,7 +73032,7 @@ static int tolua_function_Pointer_CMachineStates__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMachineStates*)tolua_tousertype_dynamic(L, 2, 0, "CMachineStates")); + (self->setValue)(*(CMachineStates*)tolua_tousertype_dynamic(L, 2, 0, "CMachineStates")); return 0; } @@ -70925,7 +73056,7 @@ static int tolua_function_Pointer_CMessageTransformItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageTransformItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageTransformItem")); + (self->setValue)(*(CMessageTransformItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageTransformItem")); return 0; } @@ -70949,7 +73080,7 @@ static int tolua_function_Pointer_CMessageReplaceItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageReplaceItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageReplaceItem")); + (self->setValue)(*(CMessageReplaceItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageReplaceItem")); return 0; } @@ -70973,7 +73104,7 @@ static int tolua_function_Pointer_CMessageContainerAddItem__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageContainerAddItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageContainerAddItem")); + (self->setValue)(*(CMessageContainerAddItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageContainerAddItem")); return 0; } @@ -70997,7 +73128,7 @@ static int tolua_function_Pointer_CMessageAddItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAddItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddItem")); + (self->setValue)(*(CMessageAddItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddItem")); return 0; } @@ -71021,7 +73152,7 @@ static int tolua_function_Pointer_CInfButtonArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CInfButtonArray*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfButtonArray")); + (self->setValue)(*(CInfButtonArray*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CInfButtonArray")); return 0; } @@ -71045,7 +73176,7 @@ static int tolua_function_Pointer_CImmunitiesSpellLevelDecrementing__setValue(lu { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSpellLevelDecrementing")); + (self->setValue)(*(CImmunitiesSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSpellLevelDecrementing")); return 0; } @@ -71069,7 +73200,7 @@ static int tolua_function_Pointer_CImmunitiesSpellLevel__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CImmunitiesSpellLevel*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSpellLevel")); + (self->setValue)(*(CImmunitiesSpellLevel*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesSpellLevel")); return 0; } @@ -71093,7 +73224,7 @@ static int tolua_function_Pointer_CGameStatsSprite__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameStatsSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatsSprite")); + (self->setValue)(*(CGameStatsSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatsSprite")); return 0; } @@ -71117,7 +73248,7 @@ static int tolua_function_Pointer_CGameSpriteLastUpdate__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSpriteLastUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CGameSpriteLastUpdate")); + (self->setValue)(*(CGameSpriteLastUpdate*)tolua_tousertype_dynamic(L, 2, 0, "CGameSpriteLastUpdate")); return 0; } @@ -71141,7 +73272,7 @@ static int tolua_function_Pointer_CGameSpriteEquipment__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSpriteEquipment*)tolua_tousertype_dynamic(L, 2, 0, "CGameSpriteEquipment")); + (self->setValue)(*(CGameSpriteEquipment*)tolua_tousertype_dynamic(L, 2, 0, "CGameSpriteEquipment")); return 0; } @@ -71165,7 +73296,7 @@ static int tolua_function_Pointer_CMessageSpriteEquipment__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSpriteEquipment*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpriteEquipment")); + (self->setValue)(*(CMessageSpriteEquipment*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSpriteEquipment")); return 0; } @@ -71189,7 +73320,7 @@ static int tolua_function_Pointer_CGameSaveCharacter__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSaveCharacter*)tolua_tousertype_dynamic(L, 2, 0, "CGameSaveCharacter")); + (self->setValue)(*(CGameSaveCharacter*)tolua_tousertype_dynamic(L, 2, 0, "CGameSaveCharacter")); return 0; } @@ -71213,7 +73344,7 @@ static int tolua_function_Pointer_CGameSave__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSave*)tolua_tousertype_dynamic(L, 2, 0, "CGameSave")); + (self->setValue)(*(CGameSave*)tolua_tousertype_dynamic(L, 2, 0, "CGameSave")); return 0; } @@ -71237,7 +73368,7 @@ static int tolua_function_Pointer_CGameRemoteObjectArray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameRemoteObjectArray*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectArray")); + (self->setValue)(*(CGameRemoteObjectArray*)tolua_tousertype_dynamic(L, 2, 0, "CGameRemoteObjectArray")); return 0; } @@ -71261,7 +73392,7 @@ static int tolua_function_Pointer_CGamePermission__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGamePermission*)tolua_tousertype_dynamic(L, 2, 0, "CGamePermission")); + (self->setValue)(*(CGamePermission*)tolua_tousertype_dynamic(L, 2, 0, "CGamePermission")); return 0; } @@ -71285,7 +73416,7 @@ static int tolua_function_Pointer_CGamePermission___getValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getValue'", NULL); - CGamePermission* returnVal = self->getValue(); + CGamePermission* returnVal = (self->getValue)(); tolua_pushusertype(L, (void*)returnVal, "CGamePermission"); return 1; } @@ -71294,7 +73425,7 @@ static int tolua_function_Pointer_CGamePermission___setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue((CGamePermission*)tolua_tousertype_dynamic(L, 2, 0, "CGamePermission")); + (self->setValue)((CGamePermission*)tolua_tousertype_dynamic(L, 2, 0, "CGamePermission")); return 0; } @@ -71318,7 +73449,7 @@ static int tolua_function_Pointer_CMultiplayerSettings__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMultiplayerSettings*)tolua_tousertype_dynamic(L, 2, 0, "CMultiplayerSettings")); + (self->setValue)(*(CMultiplayerSettings*)tolua_tousertype_dynamic(L, 2, 0, "CMultiplayerSettings")); return 0; } @@ -71342,7 +73473,7 @@ static int tolua_function_Pointer_CDerivedStatsTemplate__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CDerivedStatsTemplate*)tolua_tousertype_dynamic(L, 2, 0, "CDerivedStatsTemplate")); + (self->setValue)(*(CDerivedStatsTemplate*)tolua_tousertype_dynamic(L, 2, 0, "CDerivedStatsTemplate")); return 0; } @@ -71366,7 +73497,7 @@ static int tolua_function_Pointer_CMessageStoreAddItem__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageStoreAddItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreAddItem")); + (self->setValue)(*(CMessageStoreAddItem*)tolua_tousertype_dynamic(L, 2, 0, "CMessageStoreAddItem")); return 0; } @@ -71390,7 +73521,7 @@ static int tolua_function_Pointer_CClosure__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CClosure*)tolua_tousertype_dynamic(L, 2, 0, "CClosure")); + (self->setValue)(*(CClosure*)tolua_tousertype_dynamic(L, 2, 0, "CClosure")); return 0; } @@ -71414,7 +73545,7 @@ static int tolua_function_Pointer_CBaldurMessage__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CBaldurMessage*)tolua_tousertype_dynamic(L, 2, 0, "CBaldurMessage")); + (self->setValue)(*(CBaldurMessage*)tolua_tousertype_dynamic(L, 2, 0, "CBaldurMessage")); return 0; } @@ -71438,7 +73569,7 @@ static int tolua_function_Pointer_CGameAreaNotes__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAreaNotes*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaNotes")); + (self->setValue)(*(CGameAreaNotes*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaNotes")); return 0; } @@ -71462,7 +73593,7 @@ static int tolua_function_Pointer_CAreaSoundsAndMusic__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaSoundsAndMusic*)tolua_tousertype_dynamic(L, 2, 0, "CAreaSoundsAndMusic")); + (self->setValue)(*(CAreaSoundsAndMusic*)tolua_tousertype_dynamic(L, 2, 0, "CAreaSoundsAndMusic")); return 0; } @@ -71486,7 +73617,7 @@ static int tolua_function_Pointer_CAreaFileSoundObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileSoundObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileSoundObject")); + (self->setValue)(*(CAreaFileSoundObject*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileSoundObject")); return 0; } @@ -71510,7 +73641,7 @@ static int tolua_function_Pointer_CAreaFileRestEncounter__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileRestEncounter*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileRestEncounter")); + (self->setValue)(*(CAreaFileRestEncounter*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileRestEncounter")); return 0; } @@ -71534,7 +73665,7 @@ static int tolua_function_Pointer_CAreaFileRandomMonsterSpawningPoint__setValue( { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CAreaFileRandomMonsterSpawningPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileRandomMonsterSpawningPoint")); + (self->setValue)(*(CAreaFileRandomMonsterSpawningPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileRandomMonsterSpawningPoint")); return 0; } @@ -71558,7 +73689,7 @@ static int tolua_function_Pointer_CMessageAddAction__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageAddAction*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddAction")); + (self->setValue)(*(CMessageAddAction*)tolua_tousertype_dynamic(L, 2, 0, "CMessageAddAction")); return 0; } @@ -71582,7 +73713,7 @@ static int tolua_function_Pointer_CMessageInsertAction__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageInsertAction*)tolua_tousertype_dynamic(L, 2, 0, "CMessageInsertAction")); + (self->setValue)(*(CMessageInsertAction*)tolua_tousertype_dynamic(L, 2, 0, "CMessageInsertAction")); return 0; } @@ -71606,7 +73737,7 @@ static int tolua_function_Pointer_CMessageSetLastObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetLastObject*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetLastObject")); + (self->setValue)(*(CMessageSetLastObject*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetLastObject")); return 0; } @@ -71630,7 +73761,7 @@ static int tolua_function_Pointer_CMessageSetLastAttacker__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetLastAttacker*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetLastAttacker")); + (self->setValue)(*(CMessageSetLastAttacker*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetLastAttacker")); return 0; } @@ -71654,7 +73785,7 @@ static int tolua_function_Pointer_CMessageEnterStoreMode__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageEnterStoreMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEnterStoreMode")); + (self->setValue)(*(CMessageEnterStoreMode*)tolua_tousertype_dynamic(L, 2, 0, "CMessageEnterStoreMode")); return 0; } @@ -71678,7 +73809,7 @@ static int tolua_function_Pointer_CGameChunk__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameChunk*)tolua_tousertype_dynamic(L, 2, 0, "CGameChunk")); + (self->setValue)(*(CGameChunk*)tolua_tousertype_dynamic(L, 2, 0, "CGameChunk")); return 0; } @@ -71702,7 +73833,7 @@ static int tolua_function_Pointer_CGameFireball3d__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameFireball3d*)tolua_tousertype_dynamic(L, 2, 0, "CGameFireball3d")); + (self->setValue)(*(CGameFireball3d*)tolua_tousertype_dynamic(L, 2, 0, "CGameFireball3d")); return 0; } @@ -71726,7 +73857,7 @@ static int tolua_function_Pointer_CGameAIBase__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAIBase::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase::vtbl")); + (self->setValue)(*(CGameAIBase::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase::vtbl")); return 0; } @@ -71750,7 +73881,7 @@ static int tolua_function_Pointer_CVisualEffect__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVisualEffect*)tolua_tousertype_dynamic(L, 2, 0, "CVisualEffect")); + (self->setValue)(*(CVisualEffect*)tolua_tousertype_dynamic(L, 2, 0, "CVisualEffect")); return 0; } @@ -71774,7 +73905,7 @@ static int tolua_function_Pointer_CVEFVidCell__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CVEFVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVEFVidCell")); + (self->setValue)(*(CVEFVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVEFVidCell")); return 0; } @@ -71798,7 +73929,7 @@ static int tolua_function_Pointer_CSparkleCluster__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CSparkleCluster*)tolua_tousertype_dynamic(L, 2, 0, "CSparkleCluster")); + (self->setValue)(*(CSparkleCluster*)tolua_tousertype_dynamic(L, 2, 0, "CSparkleCluster")); return 0; } @@ -71822,7 +73953,7 @@ static int tolua_function_Pointer_CProjectile__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectile::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile::vtbl")); + (self->setValue)(*(CProjectile::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile::vtbl")); return 0; } @@ -71846,7 +73977,7 @@ static int tolua_function_Pointer_CProjectileTravelDoor__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileTravelDoor*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileTravelDoor")); + (self->setValue)(*(CProjectileTravelDoor*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileTravelDoor")); return 0; } @@ -71870,7 +74001,7 @@ static int tolua_function_Pointer_CProjectileSpellHit__vtbl__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileSpellHit::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSpellHit::vtbl")); + (self->setValue)(*(CProjectileSpellHit::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSpellHit::vtbl")); return 0; } @@ -71894,7 +74025,7 @@ static int tolua_function_Pointer_CProjectileSpellHit__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileSpellHit*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSpellHit")); + (self->setValue)(*(CProjectileSpellHit*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSpellHit")); return 0; } @@ -71918,7 +74049,7 @@ static int tolua_function_Pointer_CProjectileAmbiant__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileAmbiant*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileAmbiant")); + (self->setValue)(*(CProjectileAmbiant*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileAmbiant")); return 0; } @@ -71942,7 +74073,7 @@ static int tolua_function_Pointer_CProjectileSkyStrike__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileSkyStrike*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSkyStrike")); + (self->setValue)(*(CProjectileSkyStrike*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSkyStrike")); return 0; } @@ -71966,7 +74097,7 @@ static int tolua_function_Pointer_CProjectileInstant__vtbl__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileInstant::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileInstant::vtbl")); + (self->setValue)(*(CProjectileInstant::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileInstant::vtbl")); return 0; } @@ -71990,7 +74121,7 @@ static int tolua_function_Pointer_CProjectileInstant__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileInstant*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileInstant")); + (self->setValue)(*(CProjectileInstant*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileInstant")); return 0; } @@ -72014,7 +74145,7 @@ static int tolua_function_Pointer_CProjectileCallLightning__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileCallLightning*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileCallLightning")); + (self->setValue)(*(CProjectileCallLightning*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileCallLightning")); return 0; } @@ -72038,7 +74169,7 @@ static int tolua_function_Pointer_CProjectileCastingGlow__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileCastingGlow*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileCastingGlow")); + (self->setValue)(*(CProjectileCastingGlow*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileCastingGlow")); return 0; } @@ -72062,7 +74193,7 @@ static int tolua_function_Pointer_CProjectileBAM__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileBAM::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAM::vtbl")); + (self->setValue)(*(CProjectileBAM::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileBAM::vtbl")); return 0; } @@ -72086,7 +74217,7 @@ static int tolua_function_Pointer_CProjectileArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileArea*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileArea")); + (self->setValue)(*(CProjectileArea*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileArea")); return 0; } @@ -72110,7 +74241,7 @@ static int tolua_function_Pointer_CProjectileSkyStrikeBAM__setValue(lua_State* L { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileSkyStrikeBAM*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSkyStrikeBAM")); + (self->setValue)(*(CProjectileSkyStrikeBAM*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileSkyStrikeBAM")); return 0; } @@ -72134,7 +74265,7 @@ static int tolua_function_Pointer_CProjectileScorcher__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileScorcher*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileScorcher")); + (self->setValue)(*(CProjectileScorcher*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileScorcher")); return 0; } @@ -72158,7 +74289,7 @@ static int tolua_function_Pointer_CProjectileMulti__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileMulti::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMulti::vtbl")); + (self->setValue)(*(CProjectileMulti::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMulti::vtbl")); return 0; } @@ -72182,7 +74313,7 @@ static int tolua_function_Pointer_CProjectileMulti__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileMulti*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMulti")); + (self->setValue)(*(CProjectileMulti*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMulti")); return 0; } @@ -72206,7 +74337,7 @@ static int tolua_function_Pointer_CProjectileMagicMissileMulti__setValue(lua_Sta { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileMagicMissileMulti*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMagicMissileMulti")); + (self->setValue)(*(CProjectileMagicMissileMulti*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileMagicMissileMulti")); return 0; } @@ -72230,7 +74361,7 @@ static int tolua_function_Pointer_CProjectileLightningBounce__setValue(lua_State { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileLightningBounce*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningBounce")); + (self->setValue)(*(CProjectileLightningBounce*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningBounce")); return 0; } @@ -72254,7 +74385,7 @@ static int tolua_function_Pointer_CProjectileLightningBoltGround__setValue(lua_S { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileLightningBoltGround*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningBoltGround")); + (self->setValue)(*(CProjectileLightningBoltGround*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningBoltGround")); return 0; } @@ -72278,7 +74409,7 @@ static int tolua_function_Pointer_CProjectileLightningBolt__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileLightningBolt*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningBolt")); + (self->setValue)(*(CProjectileLightningBolt*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningBolt")); return 0; } @@ -72302,7 +74433,7 @@ static int tolua_function_Pointer_CProjectileInvisibleTravelling__setValue(lua_S { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileInvisibleTravelling*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileInvisibleTravelling")); + (self->setValue)(*(CProjectileInvisibleTravelling*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileInvisibleTravelling")); return 0; } @@ -72326,7 +74457,7 @@ static int tolua_function_Pointer_CProjectileFireHands__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileFireHands*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileFireHands")); + (self->setValue)(*(CProjectileFireHands*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileFireHands")); return 0; } @@ -72350,7 +74481,7 @@ static int tolua_function_Pointer_CProjectileFall__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileFall*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileFall")); + (self->setValue)(*(CProjectileFall*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileFall")); return 0; } @@ -72374,7 +74505,7 @@ static int tolua_function_Pointer_CProjectileConeOfCold__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileConeOfCold*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileConeOfCold")); + (self->setValue)(*(CProjectileConeOfCold*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileConeOfCold")); return 0; } @@ -72398,7 +74529,7 @@ static int tolua_function_Pointer_CProjectileColorSpray__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileColorSpray*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileColorSpray")); + (self->setValue)(*(CProjectileColorSpray*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileColorSpray")); return 0; } @@ -72422,7 +74553,7 @@ static int tolua_function_Pointer_CProjectileChain__vtbl__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileChain::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileChain::vtbl")); + (self->setValue)(*(CProjectileChain::vtbl*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileChain::vtbl")); return 0; } @@ -72446,7 +74577,7 @@ static int tolua_function_Pointer_CProjectileChain__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileChain*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileChain")); + (self->setValue)(*(CProjectileChain*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileChain")); return 0; } @@ -72470,7 +74601,7 @@ static int tolua_function_Pointer_CProjectileLightningStorm__setValue(lua_State* { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CProjectileLightningStorm*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningStorm")); + (self->setValue)(*(CProjectileLightningStorm*)tolua_tousertype_dynamic(L, 2, 0, "CProjectileLightningStorm")); return 0; } @@ -72494,7 +74625,7 @@ static int tolua_function_Pointer_CGameText__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameText*)tolua_tousertype_dynamic(L, 2, 0, "CGameText")); + (self->setValue)(*(CGameText*)tolua_tousertype_dynamic(L, 2, 0, "CGameText")); return 0; } @@ -72518,7 +74649,7 @@ static int tolua_function_Pointer_CGameTemporal__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameTemporal*)tolua_tousertype_dynamic(L, 2, 0, "CGameTemporal")); + (self->setValue)(*(CGameTemporal*)tolua_tousertype_dynamic(L, 2, 0, "CGameTemporal")); return 0; } @@ -72542,7 +74673,7 @@ static int tolua_function_Pointer_CGameStatic__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameStatic*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatic")); + (self->setValue)(*(CGameStatic*)tolua_tousertype_dynamic(L, 2, 0, "CGameStatic")); return 0; } @@ -72566,7 +74697,7 @@ static int tolua_function_Pointer_CGameSpawning__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSpawning*)tolua_tousertype_dynamic(L, 2, 0, "CGameSpawning")); + (self->setValue)(*(CGameSpawning*)tolua_tousertype_dynamic(L, 2, 0, "CGameSpawning")); return 0; } @@ -72590,7 +74721,7 @@ static int tolua_function_Pointer_CGameSound__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameSound*)tolua_tousertype_dynamic(L, 2, 0, "CGameSound")); + (self->setValue)(*(CGameSound*)tolua_tousertype_dynamic(L, 2, 0, "CGameSound")); return 0; } @@ -72614,7 +74745,7 @@ static int tolua_function_Pointer_CMessageSetTrigger__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CMessageSetTrigger*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetTrigger")); + (self->setValue)(*(CMessageSetTrigger*)tolua_tousertype_dynamic(L, 2, 0, "CMessageSetTrigger")); return 0; } @@ -72638,7 +74769,7 @@ static int tolua_function_Pointer_CGameTiledObject__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameTiledObject")); + (self->setValue)(*(CGameTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameTiledObject")); return 0; } @@ -72662,7 +74793,7 @@ static int tolua_function_Pointer_CGameDoor__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameDoor*)tolua_tousertype_dynamic(L, 2, 0, "CGameDoor")); + (self->setValue)(*(CGameDoor*)tolua_tousertype_dynamic(L, 2, 0, "CGameDoor")); return 0; } @@ -72686,7 +74817,7 @@ static int tolua_function_Pointer_CGameAIGame__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAIGame*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIGame")); + (self->setValue)(*(CGameAIGame*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIGame")); return 0; } @@ -72710,7 +74841,7 @@ static int tolua_function_Pointer_CGameAIArea__setValue(lua_State* L) { Pointer* self = (Pointer*)tolua_tousertype_dynamic(L, 1, 0, "Pointer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setValue'", NULL); - self->setValue(*(CGameAIArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIArea")); + (self->setValue)(*(CGameAIArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIArea")); return 0; } @@ -72718,7 +74849,7 @@ static int tolua_function_ISteamUGC_virtual_CreateQueryUserUGCRequest(lua_State* { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CreateQueryUserUGCRequest'", NULL); - unsigned __int64 returnVal = self->virtual_CreateQueryUserUGCRequest(tolua_function_tointeger(L, 2, "virtual_CreateQueryUserUGCRequest"), (EUserUGCList)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateQueryUserUGCRequest"), (EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 4, "virtual_CreateQueryUserUGCRequest"), (EUserUGCListSortOrder)tolua_function_tointeger<__int32>(L, 5, "virtual_CreateQueryUserUGCRequest"), tolua_function_tointeger(L, 6, "virtual_CreateQueryUserUGCRequest"), tolua_function_tointeger(L, 7, "virtual_CreateQueryUserUGCRequest"), tolua_function_tointeger(L, 8, "virtual_CreateQueryUserUGCRequest")); + unsigned __int64 returnVal = (self->virtual_CreateQueryUserUGCRequest)(tolua_function_tointeger(L, 2, "virtual_CreateQueryUserUGCRequest"), (EUserUGCList)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateQueryUserUGCRequest"), (EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 4, "virtual_CreateQueryUserUGCRequest"), (EUserUGCListSortOrder)tolua_function_tointeger<__int32>(L, 5, "virtual_CreateQueryUserUGCRequest"), tolua_function_tointeger(L, 6, "virtual_CreateQueryUserUGCRequest"), tolua_function_tointeger(L, 7, "virtual_CreateQueryUserUGCRequest"), tolua_function_tointeger(L, 8, "virtual_CreateQueryUserUGCRequest")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72727,7 +74858,7 @@ static int tolua_function_ISteamUGC_virtual_CreateQueryAllUGCRequest(lua_State* { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CreateQueryAllUGCRequest'", NULL); - unsigned __int64 returnVal = self->virtual_CreateQueryAllUGCRequest((EUGCQuery)tolua_function_tointeger<__int32>(L, 2, "virtual_CreateQueryAllUGCRequest"), (EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateQueryAllUGCRequest"), tolua_function_tointeger(L, 4, "virtual_CreateQueryAllUGCRequest"), tolua_function_tointeger(L, 5, "virtual_CreateQueryAllUGCRequest"), *(const char**)tolua_tousertype_dynamic(L, 6, 0, "ConstCharString")); + unsigned __int64 returnVal = (self->virtual_CreateQueryAllUGCRequest)((EUGCQuery)tolua_function_tointeger<__int32>(L, 2, "virtual_CreateQueryAllUGCRequest"), (EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateQueryAllUGCRequest"), tolua_function_tointeger(L, 4, "virtual_CreateQueryAllUGCRequest"), tolua_function_tointeger(L, 5, "virtual_CreateQueryAllUGCRequest"), *(const char**)tolua_tousertype_dynamic(L, 6, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72736,7 +74867,7 @@ static int tolua_function_ISteamUGC_virtual_CreateQueryAllUGCRequest_2(lua_State { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CreateQueryAllUGCRequest_2'", NULL); - unsigned __int64 returnVal = self->virtual_CreateQueryAllUGCRequest_2((EUGCQuery)tolua_function_tointeger<__int32>(L, 2, "virtual_CreateQueryAllUGCRequest_2"), (EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateQueryAllUGCRequest_2"), tolua_function_tointeger(L, 4, "virtual_CreateQueryAllUGCRequest_2"), tolua_function_tointeger(L, 5, "virtual_CreateQueryAllUGCRequest_2"), tolua_function_tointeger(L, 6, "virtual_CreateQueryAllUGCRequest_2")); + unsigned __int64 returnVal = (self->virtual_CreateQueryAllUGCRequest_2)((EUGCQuery)tolua_function_tointeger<__int32>(L, 2, "virtual_CreateQueryAllUGCRequest_2"), (EUGCMatchingUGCType)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateQueryAllUGCRequest_2"), tolua_function_tointeger(L, 4, "virtual_CreateQueryAllUGCRequest_2"), tolua_function_tointeger(L, 5, "virtual_CreateQueryAllUGCRequest_2"), tolua_function_tointeger(L, 6, "virtual_CreateQueryAllUGCRequest_2")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72745,7 +74876,7 @@ static int tolua_function_ISteamUGC_virtual_CreateQueryUGCDetailsRequest(lua_Sta { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CreateQueryUGCDetailsRequest'", NULL); - unsigned __int64 returnVal = self->virtual_CreateQueryUGCDetailsRequest((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_CreateQueryUGCDetailsRequest")); + unsigned __int64 returnVal = (self->virtual_CreateQueryUGCDetailsRequest)((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_CreateQueryUGCDetailsRequest")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72754,7 +74885,7 @@ static int tolua_function_ISteamUGC_virtual_SendQueryUGCRequest(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SendQueryUGCRequest'", NULL); - unsigned __int64 returnVal = self->virtual_SendQueryUGCRequest(tolua_function_tointeger(L, 2, "virtual_SendQueryUGCRequest")); + unsigned __int64 returnVal = (self->virtual_SendQueryUGCRequest)(tolua_function_tointeger(L, 2, "virtual_SendQueryUGCRequest")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72763,7 +74894,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCResult(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCResult'", NULL); - bool returnVal = self->virtual_GetQueryUGCResult(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCResult"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCResult"), (SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 4, 0, "SteamUGCDetails_t")); + bool returnVal = (self->virtual_GetQueryUGCResult)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCResult"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCResult"), (SteamUGCDetails_t*)tolua_tousertype_dynamic(L, 4, 0, "SteamUGCDetails_t")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72772,7 +74903,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCPreviewURL(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCPreviewURL'", NULL); - bool returnVal = self->virtual_GetQueryUGCPreviewURL(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCPreviewURL"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCPreviewURL"), *(char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), tolua_function_tointeger(L, 5, "virtual_GetQueryUGCPreviewURL")); + bool returnVal = (self->virtual_GetQueryUGCPreviewURL)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCPreviewURL"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCPreviewURL"), *(char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), tolua_function_tointeger(L, 5, "virtual_GetQueryUGCPreviewURL")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72781,7 +74912,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCMetadata(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCMetadata'", NULL); - bool returnVal = self->virtual_GetQueryUGCMetadata(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCMetadata"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCMetadata"), *(char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), tolua_function_tointeger(L, 5, "virtual_GetQueryUGCMetadata")); + bool returnVal = (self->virtual_GetQueryUGCMetadata)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCMetadata"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCMetadata"), *(char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), tolua_function_tointeger(L, 5, "virtual_GetQueryUGCMetadata")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72790,7 +74921,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCChildren(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCChildren'", NULL); - bool returnVal = self->virtual_GetQueryUGCChildren(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCChildren"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCChildren"), (unsigned __int64*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 5, "virtual_GetQueryUGCChildren")); + bool returnVal = (self->virtual_GetQueryUGCChildren)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCChildren"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCChildren"), (unsigned __int64*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 5, "virtual_GetQueryUGCChildren")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72799,7 +74930,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCStatistic(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCStatistic'", NULL); - bool returnVal = self->virtual_GetQueryUGCStatistic(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCStatistic"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCStatistic"), (EItemStatistic)tolua_function_tointeger<__int32>(L, 4, "virtual_GetQueryUGCStatistic"), (unsigned __int64*)tolua_tousertype_dynamic(L, 5, 0, "Primitive<__int64>")); + bool returnVal = (self->virtual_GetQueryUGCStatistic)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCStatistic"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCStatistic"), (EItemStatistic)tolua_function_tointeger<__int32>(L, 4, "virtual_GetQueryUGCStatistic"), (unsigned __int64*)tolua_tousertype_dynamic(L, 5, 0, "Primitive<__int64>")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72808,7 +74939,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCNumAdditionalPreviews(lua { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCNumAdditionalPreviews'", NULL); - unsigned int returnVal = self->virtual_GetQueryUGCNumAdditionalPreviews(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCNumAdditionalPreviews"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCNumAdditionalPreviews")); + unsigned int returnVal = (self->virtual_GetQueryUGCNumAdditionalPreviews)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCNumAdditionalPreviews"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCNumAdditionalPreviews")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72817,7 +74948,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCAdditionalPreview(lua_Sta { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCAdditionalPreview'", NULL); - bool returnVal = self->virtual_GetQueryUGCAdditionalPreview(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCAdditionalPreview"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCAdditionalPreview"), tolua_function_tointeger(L, 4, "virtual_GetQueryUGCAdditionalPreview"), *(char**)tolua_tousertype_dynamic(L, 5, 0, "CharString"), tolua_function_tointeger(L, 6, "virtual_GetQueryUGCAdditionalPreview"), *(char**)tolua_tousertype_dynamic(L, 7, 0, "CharString"), tolua_function_tointeger(L, 8, "virtual_GetQueryUGCAdditionalPreview"), (EItemPreviewType*)tolua_tousertype_dynamic(L, 9, 0, "Primitive")); + bool returnVal = (self->virtual_GetQueryUGCAdditionalPreview)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCAdditionalPreview"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCAdditionalPreview"), tolua_function_tointeger(L, 4, "virtual_GetQueryUGCAdditionalPreview"), *(char**)tolua_tousertype_dynamic(L, 5, 0, "CharString"), tolua_function_tointeger(L, 6, "virtual_GetQueryUGCAdditionalPreview"), *(char**)tolua_tousertype_dynamic(L, 7, 0, "CharString"), tolua_function_tointeger(L, 8, "virtual_GetQueryUGCAdditionalPreview"), (EItemPreviewType*)tolua_tousertype_dynamic(L, 9, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72826,7 +74957,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCNumKeyValueTags(lua_State { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCNumKeyValueTags'", NULL); - unsigned int returnVal = self->virtual_GetQueryUGCNumKeyValueTags(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCNumKeyValueTags"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCNumKeyValueTags")); + unsigned int returnVal = (self->virtual_GetQueryUGCNumKeyValueTags)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCNumKeyValueTags"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCNumKeyValueTags")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -72835,7 +74966,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCKeyValueTag(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCKeyValueTag'", NULL); - bool returnVal = self->virtual_GetQueryUGCKeyValueTag(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCKeyValueTag"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCKeyValueTag"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString"), *(char**)tolua_tousertype_dynamic(L, 5, 0, "CharString"), tolua_function_tointeger(L, 6, "virtual_GetQueryUGCKeyValueTag")); + bool returnVal = (self->virtual_GetQueryUGCKeyValueTag)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCKeyValueTag"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCKeyValueTag"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString"), *(char**)tolua_tousertype_dynamic(L, 5, 0, "CharString"), tolua_function_tointeger(L, 6, "virtual_GetQueryUGCKeyValueTag")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72844,7 +74975,7 @@ static int tolua_function_ISteamUGC_virtual_GetQueryUGCKeyValueTag_2(lua_State* { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQueryUGCKeyValueTag_2'", NULL); - bool returnVal = self->virtual_GetQueryUGCKeyValueTag_2(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCKeyValueTag_2"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCKeyValueTag_2"), tolua_function_tointeger(L, 4, "virtual_GetQueryUGCKeyValueTag_2"), *(char**)tolua_tousertype_dynamic(L, 5, 0, "CharString"), tolua_function_tointeger(L, 6, "virtual_GetQueryUGCKeyValueTag_2"), *(char**)tolua_tousertype_dynamic(L, 7, 0, "CharString"), tolua_function_tointeger(L, 8, "virtual_GetQueryUGCKeyValueTag_2")); + bool returnVal = (self->virtual_GetQueryUGCKeyValueTag_2)(tolua_function_tointeger(L, 2, "virtual_GetQueryUGCKeyValueTag_2"), tolua_function_tointeger(L, 3, "virtual_GetQueryUGCKeyValueTag_2"), tolua_function_tointeger(L, 4, "virtual_GetQueryUGCKeyValueTag_2"), *(char**)tolua_tousertype_dynamic(L, 5, 0, "CharString"), tolua_function_tointeger(L, 6, "virtual_GetQueryUGCKeyValueTag_2"), *(char**)tolua_tousertype_dynamic(L, 7, 0, "CharString"), tolua_function_tointeger(L, 8, "virtual_GetQueryUGCKeyValueTag_2")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72853,7 +74984,7 @@ static int tolua_function_ISteamUGC_virtual_ReleaseQueryUGCRequest(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ReleaseQueryUGCRequest'", NULL); - bool returnVal = self->virtual_ReleaseQueryUGCRequest(tolua_function_tointeger(L, 2, "virtual_ReleaseQueryUGCRequest")); + bool returnVal = (self->virtual_ReleaseQueryUGCRequest)(tolua_function_tointeger(L, 2, "virtual_ReleaseQueryUGCRequest")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72862,7 +74993,7 @@ static int tolua_function_ISteamUGC_virtual_AddRequiredTag(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddRequiredTag'", NULL); - bool returnVal = self->virtual_AddRequiredTag(tolua_function_tointeger(L, 2, "virtual_AddRequiredTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_AddRequiredTag)(tolua_function_tointeger(L, 2, "virtual_AddRequiredTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72871,7 +75002,7 @@ static int tolua_function_ISteamUGC_virtual_AddRequiredTagGroup(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddRequiredTagGroup'", NULL); - bool returnVal = self->virtual_AddRequiredTagGroup(tolua_function_tointeger(L, 2, "virtual_AddRequiredTagGroup"), (const SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); + bool returnVal = (self->virtual_AddRequiredTagGroup)(tolua_function_tointeger(L, 2, "virtual_AddRequiredTagGroup"), (const SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72880,7 +75011,7 @@ static int tolua_function_ISteamUGC_virtual_AddExcludedTag(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddExcludedTag'", NULL); - bool returnVal = self->virtual_AddExcludedTag(tolua_function_tointeger(L, 2, "virtual_AddExcludedTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_AddExcludedTag)(tolua_function_tointeger(L, 2, "virtual_AddExcludedTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72889,7 +75020,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnOnlyIDs(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnOnlyIDs'", NULL); - bool returnVal = self->virtual_SetReturnOnlyIDs(tolua_function_tointeger(L, 2, "virtual_SetReturnOnlyIDs"), tolua_function_toboolean(L, 3, "virtual_SetReturnOnlyIDs")); + bool returnVal = (self->virtual_SetReturnOnlyIDs)(tolua_function_tointeger(L, 2, "virtual_SetReturnOnlyIDs"), tolua_function_toboolean(L, 3, "virtual_SetReturnOnlyIDs")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72898,7 +75029,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnKeyValueTags(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnKeyValueTags'", NULL); - bool returnVal = self->virtual_SetReturnKeyValueTags(tolua_function_tointeger(L, 2, "virtual_SetReturnKeyValueTags"), tolua_function_toboolean(L, 3, "virtual_SetReturnKeyValueTags")); + bool returnVal = (self->virtual_SetReturnKeyValueTags)(tolua_function_tointeger(L, 2, "virtual_SetReturnKeyValueTags"), tolua_function_toboolean(L, 3, "virtual_SetReturnKeyValueTags")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72907,7 +75038,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnLongDescription(lua_State* { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnLongDescription'", NULL); - bool returnVal = self->virtual_SetReturnLongDescription(tolua_function_tointeger(L, 2, "virtual_SetReturnLongDescription"), tolua_function_toboolean(L, 3, "virtual_SetReturnLongDescription")); + bool returnVal = (self->virtual_SetReturnLongDescription)(tolua_function_tointeger(L, 2, "virtual_SetReturnLongDescription"), tolua_function_toboolean(L, 3, "virtual_SetReturnLongDescription")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72916,7 +75047,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnMetadata(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnMetadata'", NULL); - bool returnVal = self->virtual_SetReturnMetadata(tolua_function_tointeger(L, 2, "virtual_SetReturnMetadata"), tolua_function_toboolean(L, 3, "virtual_SetReturnMetadata")); + bool returnVal = (self->virtual_SetReturnMetadata)(tolua_function_tointeger(L, 2, "virtual_SetReturnMetadata"), tolua_function_toboolean(L, 3, "virtual_SetReturnMetadata")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72925,7 +75056,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnChildren(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnChildren'", NULL); - bool returnVal = self->virtual_SetReturnChildren(tolua_function_tointeger(L, 2, "virtual_SetReturnChildren"), tolua_function_toboolean(L, 3, "virtual_SetReturnChildren")); + bool returnVal = (self->virtual_SetReturnChildren)(tolua_function_tointeger(L, 2, "virtual_SetReturnChildren"), tolua_function_toboolean(L, 3, "virtual_SetReturnChildren")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72934,7 +75065,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnAdditionalPreviews(lua_Stat { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnAdditionalPreviews'", NULL); - bool returnVal = self->virtual_SetReturnAdditionalPreviews(tolua_function_tointeger(L, 2, "virtual_SetReturnAdditionalPreviews"), tolua_function_toboolean(L, 3, "virtual_SetReturnAdditionalPreviews")); + bool returnVal = (self->virtual_SetReturnAdditionalPreviews)(tolua_function_tointeger(L, 2, "virtual_SetReturnAdditionalPreviews"), tolua_function_toboolean(L, 3, "virtual_SetReturnAdditionalPreviews")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72943,7 +75074,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnTotalOnly(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnTotalOnly'", NULL); - bool returnVal = self->virtual_SetReturnTotalOnly(tolua_function_tointeger(L, 2, "virtual_SetReturnTotalOnly"), tolua_function_toboolean(L, 3, "virtual_SetReturnTotalOnly")); + bool returnVal = (self->virtual_SetReturnTotalOnly)(tolua_function_tointeger(L, 2, "virtual_SetReturnTotalOnly"), tolua_function_toboolean(L, 3, "virtual_SetReturnTotalOnly")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72952,7 +75083,7 @@ static int tolua_function_ISteamUGC_virtual_SetReturnPlaytimeStats(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetReturnPlaytimeStats'", NULL); - bool returnVal = self->virtual_SetReturnPlaytimeStats(tolua_function_tointeger(L, 2, "virtual_SetReturnPlaytimeStats"), tolua_function_tointeger(L, 3, "virtual_SetReturnPlaytimeStats")); + bool returnVal = (self->virtual_SetReturnPlaytimeStats)(tolua_function_tointeger(L, 2, "virtual_SetReturnPlaytimeStats"), tolua_function_tointeger(L, 3, "virtual_SetReturnPlaytimeStats")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72961,7 +75092,7 @@ static int tolua_function_ISteamUGC_virtual_SetLanguage(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetLanguage'", NULL); - bool returnVal = self->virtual_SetLanguage(tolua_function_tointeger(L, 2, "virtual_SetLanguage"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetLanguage)(tolua_function_tointeger(L, 2, "virtual_SetLanguage"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72970,7 +75101,7 @@ static int tolua_function_ISteamUGC_virtual_SetAllowCachedResponse(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetAllowCachedResponse'", NULL); - bool returnVal = self->virtual_SetAllowCachedResponse(tolua_function_tointeger(L, 2, "virtual_SetAllowCachedResponse"), tolua_function_tointeger(L, 3, "virtual_SetAllowCachedResponse")); + bool returnVal = (self->virtual_SetAllowCachedResponse)(tolua_function_tointeger(L, 2, "virtual_SetAllowCachedResponse"), tolua_function_tointeger(L, 3, "virtual_SetAllowCachedResponse")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72979,7 +75110,7 @@ static int tolua_function_ISteamUGC_virtual_SetCloudFileNameFilter(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetCloudFileNameFilter'", NULL); - bool returnVal = self->virtual_SetCloudFileNameFilter(tolua_function_tointeger(L, 2, "virtual_SetCloudFileNameFilter"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetCloudFileNameFilter)(tolua_function_tointeger(L, 2, "virtual_SetCloudFileNameFilter"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72988,7 +75119,7 @@ static int tolua_function_ISteamUGC_virtual_SetMatchAnyTag(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetMatchAnyTag'", NULL); - bool returnVal = self->virtual_SetMatchAnyTag(tolua_function_tointeger(L, 2, "virtual_SetMatchAnyTag"), tolua_function_toboolean(L, 3, "virtual_SetMatchAnyTag")); + bool returnVal = (self->virtual_SetMatchAnyTag)(tolua_function_tointeger(L, 2, "virtual_SetMatchAnyTag"), tolua_function_toboolean(L, 3, "virtual_SetMatchAnyTag")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -72997,7 +75128,7 @@ static int tolua_function_ISteamUGC_virtual_SetSearchText(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSearchText'", NULL); - bool returnVal = self->virtual_SetSearchText(tolua_function_tointeger(L, 2, "virtual_SetSearchText"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetSearchText)(tolua_function_tointeger(L, 2, "virtual_SetSearchText"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73006,7 +75137,7 @@ static int tolua_function_ISteamUGC_virtual_SetRankedByTrendDays(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetRankedByTrendDays'", NULL); - bool returnVal = self->virtual_SetRankedByTrendDays(tolua_function_tointeger(L, 2, "virtual_SetRankedByTrendDays"), tolua_function_tointeger(L, 3, "virtual_SetRankedByTrendDays")); + bool returnVal = (self->virtual_SetRankedByTrendDays)(tolua_function_tointeger(L, 2, "virtual_SetRankedByTrendDays"), tolua_function_tointeger(L, 3, "virtual_SetRankedByTrendDays")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73015,7 +75146,7 @@ static int tolua_function_ISteamUGC_virtual_AddRequiredKeyValueTag(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddRequiredKeyValueTag'", NULL); - bool returnVal = self->virtual_AddRequiredKeyValueTag(tolua_function_tointeger(L, 2, "virtual_AddRequiredKeyValueTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); + bool returnVal = (self->virtual_AddRequiredKeyValueTag)(tolua_function_tointeger(L, 2, "virtual_AddRequiredKeyValueTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73024,7 +75155,7 @@ static int tolua_function_ISteamUGC_virtual_RequestUGCDetails(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestUGCDetails'", NULL); - unsigned __int64 returnVal = self->virtual_RequestUGCDetails(tolua_function_tointeger(L, 2, "virtual_RequestUGCDetails"), tolua_function_tointeger(L, 3, "virtual_RequestUGCDetails")); + unsigned __int64 returnVal = (self->virtual_RequestUGCDetails)(tolua_function_tointeger(L, 2, "virtual_RequestUGCDetails"), tolua_function_tointeger(L, 3, "virtual_RequestUGCDetails")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73033,7 +75164,7 @@ static int tolua_function_ISteamUGC_virtual_CreateItem(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CreateItem'", NULL); - unsigned __int64 returnVal = self->virtual_CreateItem(tolua_function_tointeger(L, 2, "virtual_CreateItem"), (EWorkshopFileType)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateItem")); + unsigned __int64 returnVal = (self->virtual_CreateItem)(tolua_function_tointeger(L, 2, "virtual_CreateItem"), (EWorkshopFileType)tolua_function_tointeger<__int32>(L, 3, "virtual_CreateItem")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73042,7 +75173,7 @@ static int tolua_function_ISteamUGC_virtual_StartItemUpdate(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StartItemUpdate'", NULL); - unsigned __int64 returnVal = self->virtual_StartItemUpdate(tolua_function_tointeger(L, 2, "virtual_StartItemUpdate"), tolua_function_tointeger(L, 3, "virtual_StartItemUpdate")); + unsigned __int64 returnVal = (self->virtual_StartItemUpdate)(tolua_function_tointeger(L, 2, "virtual_StartItemUpdate"), tolua_function_tointeger(L, 3, "virtual_StartItemUpdate")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73051,7 +75182,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemTitle(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemTitle'", NULL); - bool returnVal = self->virtual_SetItemTitle(tolua_function_tointeger(L, 2, "virtual_SetItemTitle"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetItemTitle)(tolua_function_tointeger(L, 2, "virtual_SetItemTitle"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73060,7 +75191,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemDescription(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemDescription'", NULL); - bool returnVal = self->virtual_SetItemDescription(tolua_function_tointeger(L, 2, "virtual_SetItemDescription"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetItemDescription)(tolua_function_tointeger(L, 2, "virtual_SetItemDescription"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73069,7 +75200,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemUpdateLanguage(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemUpdateLanguage'", NULL); - bool returnVal = self->virtual_SetItemUpdateLanguage(tolua_function_tointeger(L, 2, "virtual_SetItemUpdateLanguage"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetItemUpdateLanguage)(tolua_function_tointeger(L, 2, "virtual_SetItemUpdateLanguage"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73078,7 +75209,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemMetadata(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemMetadata'", NULL); - bool returnVal = self->virtual_SetItemMetadata(tolua_function_tointeger(L, 2, "virtual_SetItemMetadata"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetItemMetadata)(tolua_function_tointeger(L, 2, "virtual_SetItemMetadata"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73087,7 +75218,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemVisibility(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemVisibility'", NULL); - bool returnVal = self->virtual_SetItemVisibility(tolua_function_tointeger(L, 2, "virtual_SetItemVisibility"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 3, "virtual_SetItemVisibility")); + bool returnVal = (self->virtual_SetItemVisibility)(tolua_function_tointeger(L, 2, "virtual_SetItemVisibility"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 3, "virtual_SetItemVisibility")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73096,7 +75227,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemTags(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemTags'", NULL); - bool returnVal = self->virtual_SetItemTags(tolua_function_tointeger(L, 2, "virtual_SetItemTags"), (const SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); + bool returnVal = (self->virtual_SetItemTags)(tolua_function_tointeger(L, 2, "virtual_SetItemTags"), (const SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73105,7 +75236,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemContent(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemContent'", NULL); - bool returnVal = self->virtual_SetItemContent(tolua_function_tointeger(L, 2, "virtual_SetItemContent"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetItemContent)(tolua_function_tointeger(L, 2, "virtual_SetItemContent"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73114,7 +75245,7 @@ static int tolua_function_ISteamUGC_virtual_SetItemPreview(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetItemPreview'", NULL); - bool returnVal = self->virtual_SetItemPreview(tolua_function_tointeger(L, 2, "virtual_SetItemPreview"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_SetItemPreview)(tolua_function_tointeger(L, 2, "virtual_SetItemPreview"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73123,7 +75254,7 @@ static int tolua_function_ISteamUGC_virtual_SetAllowLegacyUpload(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetAllowLegacyUpload'", NULL); - bool returnVal = self->virtual_SetAllowLegacyUpload(tolua_function_tointeger(L, 2, "virtual_SetAllowLegacyUpload"), tolua_function_toboolean(L, 3, "virtual_SetAllowLegacyUpload")); + bool returnVal = (self->virtual_SetAllowLegacyUpload)(tolua_function_tointeger(L, 2, "virtual_SetAllowLegacyUpload"), tolua_function_toboolean(L, 3, "virtual_SetAllowLegacyUpload")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73132,7 +75263,7 @@ static int tolua_function_ISteamUGC_virtual_RemoveAllItemKeyValueTags(lua_State* { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveAllItemKeyValueTags'", NULL); - bool returnVal = self->virtual_RemoveAllItemKeyValueTags(tolua_function_tointeger(L, 2, "virtual_RemoveAllItemKeyValueTags")); + bool returnVal = (self->virtual_RemoveAllItemKeyValueTags)(tolua_function_tointeger(L, 2, "virtual_RemoveAllItemKeyValueTags")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73141,7 +75272,7 @@ static int tolua_function_ISteamUGC_virtual_RemoveItemKeyValueTags(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveItemKeyValueTags'", NULL); - bool returnVal = self->virtual_RemoveItemKeyValueTags(tolua_function_tointeger(L, 2, "virtual_RemoveItemKeyValueTags"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_RemoveItemKeyValueTags)(tolua_function_tointeger(L, 2, "virtual_RemoveItemKeyValueTags"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73150,7 +75281,7 @@ static int tolua_function_ISteamUGC_virtual_AddItemKeyValueTag(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddItemKeyValueTag'", NULL); - bool returnVal = self->virtual_AddItemKeyValueTag(tolua_function_tointeger(L, 2, "virtual_AddItemKeyValueTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); + bool returnVal = (self->virtual_AddItemKeyValueTag)(tolua_function_tointeger(L, 2, "virtual_AddItemKeyValueTag"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73159,7 +75290,7 @@ static int tolua_function_ISteamUGC_virtual_AddItemPreviewFile(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddItemPreviewFile'", NULL); - bool returnVal = self->virtual_AddItemPreviewFile(tolua_function_tointeger(L, 2, "virtual_AddItemPreviewFile"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (EItemPreviewType)tolua_function_tointeger<__int32>(L, 4, "virtual_AddItemPreviewFile")); + bool returnVal = (self->virtual_AddItemPreviewFile)(tolua_function_tointeger(L, 2, "virtual_AddItemPreviewFile"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), (EItemPreviewType)tolua_function_tointeger<__int32>(L, 4, "virtual_AddItemPreviewFile")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73168,7 +75299,7 @@ static int tolua_function_ISteamUGC_virtual_AddItemPreviewVideo(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddItemPreviewVideo'", NULL); - bool returnVal = self->virtual_AddItemPreviewVideo(tolua_function_tointeger(L, 2, "virtual_AddItemPreviewVideo"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_AddItemPreviewVideo)(tolua_function_tointeger(L, 2, "virtual_AddItemPreviewVideo"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73177,7 +75308,7 @@ static int tolua_function_ISteamUGC_virtual_UpdateItemPreviewFile(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateItemPreviewFile'", NULL); - bool returnVal = self->virtual_UpdateItemPreviewFile(tolua_function_tointeger(L, 2, "virtual_UpdateItemPreviewFile"), tolua_function_tointeger(L, 3, "virtual_UpdateItemPreviewFile"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdateItemPreviewFile)(tolua_function_tointeger(L, 2, "virtual_UpdateItemPreviewFile"), tolua_function_tointeger(L, 3, "virtual_UpdateItemPreviewFile"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73186,7 +75317,7 @@ static int tolua_function_ISteamUGC_virtual_UpdateItemPreviewVideo(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateItemPreviewVideo'", NULL); - bool returnVal = self->virtual_UpdateItemPreviewVideo(tolua_function_tointeger(L, 2, "virtual_UpdateItemPreviewVideo"), tolua_function_tointeger(L, 3, "virtual_UpdateItemPreviewVideo"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdateItemPreviewVideo)(tolua_function_tointeger(L, 2, "virtual_UpdateItemPreviewVideo"), tolua_function_tointeger(L, 3, "virtual_UpdateItemPreviewVideo"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73195,7 +75326,7 @@ static int tolua_function_ISteamUGC_virtual_RemoveItemPreview(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveItemPreview'", NULL); - bool returnVal = self->virtual_RemoveItemPreview(tolua_function_tointeger(L, 2, "virtual_RemoveItemPreview"), tolua_function_tointeger(L, 3, "virtual_RemoveItemPreview")); + bool returnVal = (self->virtual_RemoveItemPreview)(tolua_function_tointeger(L, 2, "virtual_RemoveItemPreview"), tolua_function_tointeger(L, 3, "virtual_RemoveItemPreview")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73204,7 +75335,7 @@ static int tolua_function_ISteamUGC_virtual_SubmitItemUpdate(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SubmitItemUpdate'", NULL); - unsigned __int64 returnVal = self->virtual_SubmitItemUpdate(tolua_function_tointeger(L, 2, "virtual_SubmitItemUpdate"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + unsigned __int64 returnVal = (self->virtual_SubmitItemUpdate)(tolua_function_tointeger(L, 2, "virtual_SubmitItemUpdate"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73213,7 +75344,7 @@ static int tolua_function_ISteamUGC_virtual_GetItemUpdateProgress(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetItemUpdateProgress'", NULL); - EItemUpdateStatus returnVal = self->virtual_GetItemUpdateProgress(tolua_function_tointeger(L, 2, "virtual_GetItemUpdateProgress"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), (unsigned __int64*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int64>")); + EItemUpdateStatus returnVal = (self->virtual_GetItemUpdateProgress)(tolua_function_tointeger(L, 2, "virtual_GetItemUpdateProgress"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), (unsigned __int64*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int64>")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73222,7 +75353,7 @@ static int tolua_function_ISteamUGC_virtual_SetUserItemVote(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetUserItemVote'", NULL); - unsigned __int64 returnVal = self->virtual_SetUserItemVote(tolua_function_tointeger(L, 2, "virtual_SetUserItemVote"), tolua_function_toboolean(L, 3, "virtual_SetUserItemVote")); + unsigned __int64 returnVal = (self->virtual_SetUserItemVote)(tolua_function_tointeger(L, 2, "virtual_SetUserItemVote"), tolua_function_toboolean(L, 3, "virtual_SetUserItemVote")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73231,7 +75362,7 @@ static int tolua_function_ISteamUGC_virtual_GetUserItemVote(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUserItemVote'", NULL); - unsigned __int64 returnVal = self->virtual_GetUserItemVote(tolua_function_tointeger(L, 2, "virtual_GetUserItemVote")); + unsigned __int64 returnVal = (self->virtual_GetUserItemVote)(tolua_function_tointeger(L, 2, "virtual_GetUserItemVote")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73240,7 +75371,7 @@ static int tolua_function_ISteamUGC_virtual_AddItemToFavorites(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddItemToFavorites'", NULL); - unsigned __int64 returnVal = self->virtual_AddItemToFavorites(tolua_function_tointeger(L, 2, "virtual_AddItemToFavorites"), tolua_function_tointeger(L, 3, "virtual_AddItemToFavorites")); + unsigned __int64 returnVal = (self->virtual_AddItemToFavorites)(tolua_function_tointeger(L, 2, "virtual_AddItemToFavorites"), tolua_function_tointeger(L, 3, "virtual_AddItemToFavorites")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73249,7 +75380,7 @@ static int tolua_function_ISteamUGC_virtual_RemoveItemFromFavorites(lua_State* L { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveItemFromFavorites'", NULL); - unsigned __int64 returnVal = self->virtual_RemoveItemFromFavorites(tolua_function_tointeger(L, 2, "virtual_RemoveItemFromFavorites"), tolua_function_tointeger(L, 3, "virtual_RemoveItemFromFavorites")); + unsigned __int64 returnVal = (self->virtual_RemoveItemFromFavorites)(tolua_function_tointeger(L, 2, "virtual_RemoveItemFromFavorites"), tolua_function_tointeger(L, 3, "virtual_RemoveItemFromFavorites")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73258,7 +75389,7 @@ static int tolua_function_ISteamUGC_virtual_SubscribeItem(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SubscribeItem'", NULL); - unsigned __int64 returnVal = self->virtual_SubscribeItem(tolua_function_tointeger(L, 2, "virtual_SubscribeItem")); + unsigned __int64 returnVal = (self->virtual_SubscribeItem)(tolua_function_tointeger(L, 2, "virtual_SubscribeItem")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73267,7 +75398,7 @@ static int tolua_function_ISteamUGC_virtual_UnsubscribeItem(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UnsubscribeItem'", NULL); - unsigned __int64 returnVal = self->virtual_UnsubscribeItem(tolua_function_tointeger(L, 2, "virtual_UnsubscribeItem")); + unsigned __int64 returnVal = (self->virtual_UnsubscribeItem)(tolua_function_tointeger(L, 2, "virtual_UnsubscribeItem")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73276,7 +75407,7 @@ static int tolua_function_ISteamUGC_virtual_GetNumSubscribedItems(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNumSubscribedItems'", NULL); - unsigned int returnVal = self->virtual_GetNumSubscribedItems(); + unsigned int returnVal = (self->virtual_GetNumSubscribedItems)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73285,7 +75416,7 @@ static int tolua_function_ISteamUGC_virtual_GetSubscribedItems(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetSubscribedItems'", NULL); - unsigned int returnVal = self->virtual_GetSubscribedItems((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_GetSubscribedItems")); + unsigned int returnVal = (self->virtual_GetSubscribedItems)((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_GetSubscribedItems")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73294,7 +75425,7 @@ static int tolua_function_ISteamUGC_virtual_GetItemState(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetItemState'", NULL); - unsigned int returnVal = self->virtual_GetItemState(tolua_function_tointeger(L, 2, "virtual_GetItemState")); + unsigned int returnVal = (self->virtual_GetItemState)(tolua_function_tointeger(L, 2, "virtual_GetItemState")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73303,7 +75434,7 @@ static int tolua_function_ISteamUGC_virtual_GetItemInstallInfo(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetItemInstallInfo'", NULL); - bool returnVal = self->virtual_GetItemInstallInfo(tolua_function_tointeger(L, 2, "virtual_GetItemInstallInfo"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), *(char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), tolua_function_tointeger(L, 5, "virtual_GetItemInstallInfo"), (unsigned int*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); + bool returnVal = (self->virtual_GetItemInstallInfo)(tolua_function_tointeger(L, 2, "virtual_GetItemInstallInfo"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), *(char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), tolua_function_tointeger(L, 5, "virtual_GetItemInstallInfo"), (unsigned int*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73312,7 +75443,7 @@ static int tolua_function_ISteamUGC_virtual_GetItemDownloadInfo(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetItemDownloadInfo'", NULL); - bool returnVal = self->virtual_GetItemDownloadInfo(tolua_function_tointeger(L, 2, "virtual_GetItemDownloadInfo"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), (unsigned __int64*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int64>")); + bool returnVal = (self->virtual_GetItemDownloadInfo)(tolua_function_tointeger(L, 2, "virtual_GetItemDownloadInfo"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>"), (unsigned __int64*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int64>")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73321,7 +75452,7 @@ static int tolua_function_ISteamUGC_virtual_DownloadItem(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DownloadItem'", NULL); - bool returnVal = self->virtual_DownloadItem(tolua_function_tointeger(L, 2, "virtual_DownloadItem"), tolua_function_toboolean(L, 3, "virtual_DownloadItem")); + bool returnVal = (self->virtual_DownloadItem)(tolua_function_tointeger(L, 2, "virtual_DownloadItem"), tolua_function_toboolean(L, 3, "virtual_DownloadItem")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73330,7 +75461,7 @@ static int tolua_function_ISteamUGC_virtual_BInitWorkshopForGameServer(lua_State { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_BInitWorkshopForGameServer'", NULL); - bool returnVal = self->virtual_BInitWorkshopForGameServer(tolua_function_tointeger(L, 2, "virtual_BInitWorkshopForGameServer"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_BInitWorkshopForGameServer)(tolua_function_tointeger(L, 2, "virtual_BInitWorkshopForGameServer"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -73339,7 +75470,7 @@ static int tolua_function_ISteamUGC_virtual_SuspendDownloads(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SuspendDownloads'", NULL); - self->virtual_SuspendDownloads(tolua_function_toboolean(L, 2, "virtual_SuspendDownloads")); + (self->virtual_SuspendDownloads)(tolua_function_toboolean(L, 2, "virtual_SuspendDownloads")); return 0; } @@ -73347,7 +75478,7 @@ static int tolua_function_ISteamUGC_virtual_StartPlaytimeTracking(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StartPlaytimeTracking'", NULL); - unsigned __int64 returnVal = self->virtual_StartPlaytimeTracking((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_StartPlaytimeTracking")); + unsigned __int64 returnVal = (self->virtual_StartPlaytimeTracking)((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_StartPlaytimeTracking")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73356,7 +75487,7 @@ static int tolua_function_ISteamUGC_virtual_StopPlaytimeTracking(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StopPlaytimeTracking'", NULL); - unsigned __int64 returnVal = self->virtual_StopPlaytimeTracking((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_StopPlaytimeTracking")); + unsigned __int64 returnVal = (self->virtual_StopPlaytimeTracking)((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), tolua_function_tointeger(L, 3, "virtual_StopPlaytimeTracking")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73365,7 +75496,7 @@ static int tolua_function_ISteamUGC_virtual_StopPlaytimeTrackingForAllItems(lua_ { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StopPlaytimeTrackingForAllItems'", NULL); - unsigned __int64 returnVal = self->virtual_StopPlaytimeTrackingForAllItems(); + unsigned __int64 returnVal = (self->virtual_StopPlaytimeTrackingForAllItems)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73374,7 +75505,7 @@ static int tolua_function_ISteamUGC_virtual_AddDependency(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddDependency'", NULL); - unsigned __int64 returnVal = self->virtual_AddDependency(tolua_function_tointeger(L, 2, "virtual_AddDependency"), tolua_function_tointeger(L, 3, "virtual_AddDependency")); + unsigned __int64 returnVal = (self->virtual_AddDependency)(tolua_function_tointeger(L, 2, "virtual_AddDependency"), tolua_function_tointeger(L, 3, "virtual_AddDependency")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73383,7 +75514,7 @@ static int tolua_function_ISteamUGC_virtual_RemoveDependency(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveDependency'", NULL); - unsigned __int64 returnVal = self->virtual_RemoveDependency(tolua_function_tointeger(L, 2, "virtual_RemoveDependency"), tolua_function_tointeger(L, 3, "virtual_RemoveDependency")); + unsigned __int64 returnVal = (self->virtual_RemoveDependency)(tolua_function_tointeger(L, 2, "virtual_RemoveDependency"), tolua_function_tointeger(L, 3, "virtual_RemoveDependency")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73392,7 +75523,7 @@ static int tolua_function_ISteamUGC_virtual_AddAppDependency(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddAppDependency'", NULL); - unsigned __int64 returnVal = self->virtual_AddAppDependency(tolua_function_tointeger(L, 2, "virtual_AddAppDependency"), tolua_function_tointeger(L, 3, "virtual_AddAppDependency")); + unsigned __int64 returnVal = (self->virtual_AddAppDependency)(tolua_function_tointeger(L, 2, "virtual_AddAppDependency"), tolua_function_tointeger(L, 3, "virtual_AddAppDependency")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73401,7 +75532,7 @@ static int tolua_function_ISteamUGC_virtual_RemoveAppDependency(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveAppDependency'", NULL); - unsigned __int64 returnVal = self->virtual_RemoveAppDependency(tolua_function_tointeger(L, 2, "virtual_RemoveAppDependency"), tolua_function_tointeger(L, 3, "virtual_RemoveAppDependency")); + unsigned __int64 returnVal = (self->virtual_RemoveAppDependency)(tolua_function_tointeger(L, 2, "virtual_RemoveAppDependency"), tolua_function_tointeger(L, 3, "virtual_RemoveAppDependency")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73410,7 +75541,7 @@ static int tolua_function_ISteamUGC_virtual_GetAppDependencies(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAppDependencies'", NULL); - unsigned __int64 returnVal = self->virtual_GetAppDependencies(tolua_function_tointeger(L, 2, "virtual_GetAppDependencies")); + unsigned __int64 returnVal = (self->virtual_GetAppDependencies)(tolua_function_tointeger(L, 2, "virtual_GetAppDependencies")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -73419,7 +75550,7 @@ static int tolua_function_ISteamUGC_virtual_DeleteItem(lua_State* L) { ISteamUGC* self = (ISteamUGC*)tolua_tousertype_dynamic(L, 1, 0, "ISteamUGC"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DeleteItem'", NULL); - unsigned __int64 returnVal = self->virtual_DeleteItem(tolua_function_tointeger(L, 2, "virtual_DeleteItem")); + unsigned __int64 returnVal = (self->virtual_DeleteItem)(tolua_function_tointeger(L, 2, "virtual_DeleteItem")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74850,7 +76981,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileWrite(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileWrite'", NULL); - bool returnVal = self->virtual_FileWrite(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileWrite")); + bool returnVal = (self->virtual_FileWrite)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileWrite")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74859,7 +76990,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileRead(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileRead'", NULL); - int returnVal = self->virtual_FileRead(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileRead")); + int returnVal = (self->virtual_FileRead)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileRead")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74868,7 +76999,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileWriteAsync(lua_State* { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileWriteAsync'", NULL); - unsigned __int64 returnVal = self->virtual_FileWriteAsync(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileWriteAsync")); + unsigned __int64 returnVal = (self->virtual_FileWriteAsync)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileWriteAsync")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74877,7 +77008,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileReadAsync(lua_State* L { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileReadAsync'", NULL); - unsigned __int64 returnVal = self->virtual_FileReadAsync(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_FileReadAsync"), tolua_function_tointeger(L, 4, "virtual_FileReadAsync")); + unsigned __int64 returnVal = (self->virtual_FileReadAsync)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_FileReadAsync"), tolua_function_tointeger(L, 4, "virtual_FileReadAsync")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74886,7 +77017,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileReadAsyncComplete(lua_ { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileReadAsyncComplete'", NULL); - bool returnVal = self->virtual_FileReadAsyncComplete(tolua_function_tointeger(L, 2, "virtual_FileReadAsyncComplete"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileReadAsyncComplete")); + bool returnVal = (self->virtual_FileReadAsyncComplete)(tolua_function_tointeger(L, 2, "virtual_FileReadAsyncComplete"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileReadAsyncComplete")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74895,7 +77026,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileForget(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileForget'", NULL); - bool returnVal = self->virtual_FileForget(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + bool returnVal = (self->virtual_FileForget)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74904,7 +77035,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileDelete(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileDelete'", NULL); - bool returnVal = self->virtual_FileDelete(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + bool returnVal = (self->virtual_FileDelete)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74913,7 +77044,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileShare(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileShare'", NULL); - unsigned __int64 returnVal = self->virtual_FileShare(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + unsigned __int64 returnVal = (self->virtual_FileShare)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74922,7 +77053,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_SetSyncPlatforms(lua_State { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSyncPlatforms'", NULL); - bool returnVal = self->virtual_SetSyncPlatforms(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (ERemoteStoragePlatform)tolua_function_tointeger<__int32>(L, 3, "virtual_SetSyncPlatforms")); + bool returnVal = (self->virtual_SetSyncPlatforms)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), (ERemoteStoragePlatform)tolua_function_tointeger<__int32>(L, 3, "virtual_SetSyncPlatforms")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74931,7 +77062,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileWriteStreamOpen(lua_St { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileWriteStreamOpen'", NULL); - unsigned __int64 returnVal = self->virtual_FileWriteStreamOpen(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + unsigned __int64 returnVal = (self->virtual_FileWriteStreamOpen)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74940,7 +77071,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileWriteStreamWriteChunk( { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileWriteStreamWriteChunk'", NULL); - bool returnVal = self->virtual_FileWriteStreamWriteChunk(tolua_function_tointeger(L, 2, "virtual_FileWriteStreamWriteChunk"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileWriteStreamWriteChunk")); + bool returnVal = (self->virtual_FileWriteStreamWriteChunk)(tolua_function_tointeger(L, 2, "virtual_FileWriteStreamWriteChunk"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_FileWriteStreamWriteChunk")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74949,7 +77080,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileWriteStreamClose(lua_S { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileWriteStreamClose'", NULL); - bool returnVal = self->virtual_FileWriteStreamClose(tolua_function_tointeger(L, 2, "virtual_FileWriteStreamClose")); + bool returnVal = (self->virtual_FileWriteStreamClose)(tolua_function_tointeger(L, 2, "virtual_FileWriteStreamClose")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74958,7 +77089,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileWriteStreamCancel(lua_ { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileWriteStreamCancel'", NULL); - bool returnVal = self->virtual_FileWriteStreamCancel(tolua_function_tointeger(L, 2, "virtual_FileWriteStreamCancel")); + bool returnVal = (self->virtual_FileWriteStreamCancel)(tolua_function_tointeger(L, 2, "virtual_FileWriteStreamCancel")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74967,7 +77098,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FileExists(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FileExists'", NULL); - bool returnVal = self->virtual_FileExists(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + bool returnVal = (self->virtual_FileExists)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74976,7 +77107,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_FilePersisted(lua_State* L { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FilePersisted'", NULL); - bool returnVal = self->virtual_FilePersisted(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + bool returnVal = (self->virtual_FilePersisted)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -74985,7 +77116,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetFileSize(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFileSize'", NULL); - int returnVal = self->virtual_GetFileSize(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + int returnVal = (self->virtual_GetFileSize)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -74994,7 +77125,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetFileTimestamp(lua_State { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFileTimestamp'", NULL); - __int64 returnVal = self->virtual_GetFileTimestamp(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + __int64 returnVal = (self->virtual_GetFileTimestamp)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75003,7 +77134,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetSyncPlatforms(lua_State { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetSyncPlatforms'", NULL); - ERemoteStoragePlatform returnVal = self->virtual_GetSyncPlatforms(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + ERemoteStoragePlatform returnVal = (self->virtual_GetSyncPlatforms)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75012,7 +77143,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetFileCount(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFileCount'", NULL); - int returnVal = self->virtual_GetFileCount(); + int returnVal = (self->virtual_GetFileCount)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75021,7 +77152,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetQuota(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetQuota'", NULL); - bool returnVal = self->virtual_GetQuota((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>")); + bool returnVal = (self->virtual_GetQuota)((unsigned __int64*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int64>"), (unsigned __int64*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int64>")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75030,7 +77161,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_IsCloudEnabledForAccount(l { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsCloudEnabledForAccount'", NULL); - bool returnVal = self->virtual_IsCloudEnabledForAccount(); + bool returnVal = (self->virtual_IsCloudEnabledForAccount)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75039,7 +77170,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_IsCloudEnabledForApp(lua_S { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsCloudEnabledForApp'", NULL); - bool returnVal = self->virtual_IsCloudEnabledForApp(); + bool returnVal = (self->virtual_IsCloudEnabledForApp)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75048,7 +77179,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_SetCloudEnabledForApp(lua_ { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetCloudEnabledForApp'", NULL); - self->virtual_SetCloudEnabledForApp(tolua_function_toboolean(L, 2, "virtual_SetCloudEnabledForApp")); + (self->virtual_SetCloudEnabledForApp)(tolua_function_toboolean(L, 2, "virtual_SetCloudEnabledForApp")); return 0; } @@ -75056,7 +77187,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UGCDownload(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UGCDownload'", NULL); - unsigned __int64 returnVal = self->virtual_UGCDownload(tolua_function_tointeger(L, 2, "virtual_UGCDownload"), tolua_function_tointeger(L, 3, "virtual_UGCDownload")); + unsigned __int64 returnVal = (self->virtual_UGCDownload)(tolua_function_tointeger(L, 2, "virtual_UGCDownload"), tolua_function_tointeger(L, 3, "virtual_UGCDownload")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75065,7 +77196,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetUGCDownloadProgress(lua { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUGCDownloadProgress'", NULL); - bool returnVal = self->virtual_GetUGCDownloadProgress(tolua_function_tointeger(L, 2, "virtual_GetUGCDownloadProgress"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + bool returnVal = (self->virtual_GetUGCDownloadProgress)(tolua_function_tointeger(L, 2, "virtual_GetUGCDownloadProgress"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75074,7 +77205,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetUGCDetails(lua_State* L { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUGCDetails'", NULL); - bool returnVal = self->virtual_GetUGCDetails(tolua_function_tointeger(L, 2, "virtual_GetUGCDetails"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (CSteamID*)tolua_tousertype_dynamic(L, 6, 0, "CSteamID")); + bool returnVal = (self->virtual_GetUGCDetails)(tolua_function_tointeger(L, 2, "virtual_GetUGCDetails"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (char**)tolua_tousertype_dynamic(L, 4, 0, "CharString"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (CSteamID*)tolua_tousertype_dynamic(L, 6, 0, "CSteamID")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75083,7 +77214,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UGCRead(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UGCRead'", NULL); - int returnVal = self->virtual_UGCRead(tolua_function_tointeger(L, 2, "virtual_UGCRead"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_UGCRead"), tolua_function_tointeger(L, 5, "virtual_UGCRead"), (EUGCReadAction)tolua_function_tointeger<__int32>(L, 6, "virtual_UGCRead")); + int returnVal = (self->virtual_UGCRead)(tolua_function_tointeger(L, 2, "virtual_UGCRead"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "virtual_UGCRead"), tolua_function_tointeger(L, 5, "virtual_UGCRead"), (EUGCReadAction)tolua_function_tointeger<__int32>(L, 6, "virtual_UGCRead")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75092,7 +77223,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetCachedUGCCount(lua_Stat { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCachedUGCCount'", NULL); - int returnVal = self->virtual_GetCachedUGCCount(); + int returnVal = (self->virtual_GetCachedUGCCount)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75101,7 +77232,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetCachedUGCHandle(lua_Sta { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCachedUGCHandle'", NULL); - unsigned __int64 returnVal = self->virtual_GetCachedUGCHandle(tolua_function_tointeger(L, 2, "virtual_GetCachedUGCHandle")); + unsigned __int64 returnVal = (self->virtual_GetCachedUGCHandle)(tolua_function_tointeger(L, 2, "virtual_GetCachedUGCHandle")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75110,7 +77241,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_PublishWorkshopFile(lua_St { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_PublishWorkshopFile'", NULL); - unsigned __int64 returnVal = self->virtual_PublishWorkshopFile(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), tolua_function_tointeger(L, 4, "virtual_PublishWorkshopFile"), *(const char**)tolua_tousertype_dynamic(L, 5, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 6, 0, "ConstCharString"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 7, "virtual_PublishWorkshopFile"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 8, 0, "SteamParamStringArray_t"), (EWorkshopFileType)tolua_function_tointeger<__int32>(L, 9, "virtual_PublishWorkshopFile")); + unsigned __int64 returnVal = (self->virtual_PublishWorkshopFile)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), tolua_function_tointeger(L, 4, "virtual_PublishWorkshopFile"), *(const char**)tolua_tousertype_dynamic(L, 5, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 6, 0, "ConstCharString"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 7, "virtual_PublishWorkshopFile"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 8, 0, "SteamParamStringArray_t"), (EWorkshopFileType)tolua_function_tointeger<__int32>(L, 9, "virtual_PublishWorkshopFile")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75119,7 +77250,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_CreatePublishedFileUpdateR { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CreatePublishedFileUpdateRequest'", NULL); - unsigned __int64 returnVal = self->virtual_CreatePublishedFileUpdateRequest(tolua_function_tointeger(L, 2, "virtual_CreatePublishedFileUpdateRequest")); + unsigned __int64 returnVal = (self->virtual_CreatePublishedFileUpdateRequest)(tolua_function_tointeger(L, 2, "virtual_CreatePublishedFileUpdateRequest")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75128,7 +77259,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFileFile(lu { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFileFile'", NULL); - bool returnVal = self->virtual_UpdatePublishedFileFile(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileFile"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdatePublishedFileFile)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileFile"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75137,7 +77268,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFilePreview { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFilePreviewFile'", NULL); - bool returnVal = self->virtual_UpdatePublishedFilePreviewFile(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFilePreviewFile"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdatePublishedFilePreviewFile)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFilePreviewFile"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75146,7 +77277,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFileTitle(l { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFileTitle'", NULL); - bool returnVal = self->virtual_UpdatePublishedFileTitle(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileTitle"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdatePublishedFileTitle)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileTitle"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75155,7 +77286,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFileDescrip { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFileDescription'", NULL); - bool returnVal = self->virtual_UpdatePublishedFileDescription(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileDescription"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdatePublishedFileDescription)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileDescription"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75164,7 +77295,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFileVisibil { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFileVisibility'", NULL); - bool returnVal = self->virtual_UpdatePublishedFileVisibility(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileVisibility"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 3, "virtual_UpdatePublishedFileVisibility")); + bool returnVal = (self->virtual_UpdatePublishedFileVisibility)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileVisibility"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 3, "virtual_UpdatePublishedFileVisibility")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75173,7 +77304,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFileTags(lu { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFileTags'", NULL); - bool returnVal = self->virtual_UpdatePublishedFileTags(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileTags"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); + bool returnVal = (self->virtual_UpdatePublishedFileTags)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileTags"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamParamStringArray_t")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75182,7 +77313,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_CommitPublishedFileUpdate( { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CommitPublishedFileUpdate'", NULL); - unsigned __int64 returnVal = self->virtual_CommitPublishedFileUpdate(tolua_function_tointeger(L, 2, "virtual_CommitPublishedFileUpdate")); + unsigned __int64 returnVal = (self->virtual_CommitPublishedFileUpdate)(tolua_function_tointeger(L, 2, "virtual_CommitPublishedFileUpdate")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75191,7 +77322,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetPublishedFileDetails(lu { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPublishedFileDetails'", NULL); - unsigned __int64 returnVal = self->virtual_GetPublishedFileDetails(tolua_function_tointeger(L, 2, "virtual_GetPublishedFileDetails"), tolua_function_tointeger(L, 3, "virtual_GetPublishedFileDetails")); + unsigned __int64 returnVal = (self->virtual_GetPublishedFileDetails)(tolua_function_tointeger(L, 2, "virtual_GetPublishedFileDetails"), tolua_function_tointeger(L, 3, "virtual_GetPublishedFileDetails")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75200,7 +77331,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_DeletePublishedFile(lua_St { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DeletePublishedFile'", NULL); - unsigned __int64 returnVal = self->virtual_DeletePublishedFile(tolua_function_tointeger(L, 2, "virtual_DeletePublishedFile")); + unsigned __int64 returnVal = (self->virtual_DeletePublishedFile)(tolua_function_tointeger(L, 2, "virtual_DeletePublishedFile")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75209,7 +77340,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_EnumerateUserPublishedFile { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnumerateUserPublishedFiles'", NULL); - unsigned __int64 returnVal = self->virtual_EnumerateUserPublishedFiles(tolua_function_tointeger(L, 2, "virtual_EnumerateUserPublishedFiles")); + unsigned __int64 returnVal = (self->virtual_EnumerateUserPublishedFiles)(tolua_function_tointeger(L, 2, "virtual_EnumerateUserPublishedFiles")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75218,7 +77349,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_SubscribePublishedFile(lua { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SubscribePublishedFile'", NULL); - unsigned __int64 returnVal = self->virtual_SubscribePublishedFile(tolua_function_tointeger(L, 2, "virtual_SubscribePublishedFile")); + unsigned __int64 returnVal = (self->virtual_SubscribePublishedFile)(tolua_function_tointeger(L, 2, "virtual_SubscribePublishedFile")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75227,7 +77358,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_EnumerateUserSubscribedFil { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnumerateUserSubscribedFiles'", NULL); - unsigned __int64 returnVal = self->virtual_EnumerateUserSubscribedFiles(tolua_function_tointeger(L, 2, "virtual_EnumerateUserSubscribedFiles")); + unsigned __int64 returnVal = (self->virtual_EnumerateUserSubscribedFiles)(tolua_function_tointeger(L, 2, "virtual_EnumerateUserSubscribedFiles")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75236,7 +77367,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UnsubscribePublishedFile(l { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UnsubscribePublishedFile'", NULL); - unsigned __int64 returnVal = self->virtual_UnsubscribePublishedFile(tolua_function_tointeger(L, 2, "virtual_UnsubscribePublishedFile")); + unsigned __int64 returnVal = (self->virtual_UnsubscribePublishedFile)(tolua_function_tointeger(L, 2, "virtual_UnsubscribePublishedFile")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75245,7 +77376,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdatePublishedFileSetChan { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePublishedFileSetChangeDescription'", NULL); - bool returnVal = self->virtual_UpdatePublishedFileSetChangeDescription(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileSetChangeDescription"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + bool returnVal = (self->virtual_UpdatePublishedFileSetChangeDescription)(tolua_function_tointeger(L, 2, "virtual_UpdatePublishedFileSetChangeDescription"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -75254,7 +77385,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetPublishedItemVoteDetail { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPublishedItemVoteDetails'", NULL); - unsigned __int64 returnVal = self->virtual_GetPublishedItemVoteDetails(tolua_function_tointeger(L, 2, "virtual_GetPublishedItemVoteDetails")); + unsigned __int64 returnVal = (self->virtual_GetPublishedItemVoteDetails)(tolua_function_tointeger(L, 2, "virtual_GetPublishedItemVoteDetails")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75263,7 +77394,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UpdateUserPublishedItemVot { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateUserPublishedItemVote'", NULL); - unsigned __int64 returnVal = self->virtual_UpdateUserPublishedItemVote(tolua_function_tointeger(L, 2, "virtual_UpdateUserPublishedItemVote"), tolua_function_toboolean(L, 3, "virtual_UpdateUserPublishedItemVote")); + unsigned __int64 returnVal = (self->virtual_UpdateUserPublishedItemVote)(tolua_function_tointeger(L, 2, "virtual_UpdateUserPublishedItemVote"), tolua_function_toboolean(L, 3, "virtual_UpdateUserPublishedItemVote")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75272,7 +77403,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_GetUserPublishedItemVoteDe { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetUserPublishedItemVoteDetails'", NULL); - unsigned __int64 returnVal = self->virtual_GetUserPublishedItemVoteDetails(tolua_function_tointeger(L, 2, "virtual_GetUserPublishedItemVoteDetails")); + unsigned __int64 returnVal = (self->virtual_GetUserPublishedItemVoteDetails)(tolua_function_tointeger(L, 2, "virtual_GetUserPublishedItemVoteDetails")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75281,7 +77412,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_EnumerateUserSharedWorksho { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnumerateUserSharedWorkshopFiles'", NULL); - unsigned __int64 returnVal = self->virtual_EnumerateUserSharedWorkshopFiles(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), tolua_function_tointeger(L, 3, "virtual_EnumerateUserSharedWorkshopFiles"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 4, 0, "SteamParamStringArray_t"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 5, 0, "SteamParamStringArray_t")); + unsigned __int64 returnVal = (self->virtual_EnumerateUserSharedWorkshopFiles)(*(CSteamID*)tolua_tousertype_dynamic(L, 2, 0, "CSteamID"), tolua_function_tointeger(L, 3, "virtual_EnumerateUserSharedWorkshopFiles"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 4, 0, "SteamParamStringArray_t"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 5, 0, "SteamParamStringArray_t")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75290,7 +77421,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_PublishVideo(lua_State* L) { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_PublishVideo'", NULL); - unsigned __int64 returnVal = self->virtual_PublishVideo((EWorkshopVideoProvider)tolua_function_tointeger<__int32>(L, 2, "virtual_PublishVideo"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 5, 0, "ConstCharString"), tolua_function_tointeger(L, 6, "virtual_PublishVideo"), *(const char**)tolua_tousertype_dynamic(L, 7, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 8, 0, "ConstCharString"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 9, "virtual_PublishVideo"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 10, 0, "SteamParamStringArray_t")); + unsigned __int64 returnVal = (self->virtual_PublishVideo)((EWorkshopVideoProvider)tolua_function_tointeger<__int32>(L, 2, "virtual_PublishVideo"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 5, 0, "ConstCharString"), tolua_function_tointeger(L, 6, "virtual_PublishVideo"), *(const char**)tolua_tousertype_dynamic(L, 7, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 8, 0, "ConstCharString"), (ERemoteStoragePublishedFileVisibility)tolua_function_tointeger<__int32>(L, 9, "virtual_PublishVideo"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 10, 0, "SteamParamStringArray_t")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75299,7 +77430,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_SetUserPublishedFileAction { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetUserPublishedFileAction'", NULL); - unsigned __int64 returnVal = self->virtual_SetUserPublishedFileAction(tolua_function_tointeger(L, 2, "virtual_SetUserPublishedFileAction"), (EWorkshopFileAction)tolua_function_tointeger<__int32>(L, 3, "virtual_SetUserPublishedFileAction")); + unsigned __int64 returnVal = (self->virtual_SetUserPublishedFileAction)(tolua_function_tointeger(L, 2, "virtual_SetUserPublishedFileAction"), (EWorkshopFileAction)tolua_function_tointeger<__int32>(L, 3, "virtual_SetUserPublishedFileAction")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75308,7 +77439,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_EnumeratePublishedFilesByU { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnumeratePublishedFilesByUserAction'", NULL); - unsigned __int64 returnVal = self->virtual_EnumeratePublishedFilesByUserAction((EWorkshopFileAction)tolua_function_tointeger<__int32>(L, 2, "virtual_EnumeratePublishedFilesByUserAction"), tolua_function_tointeger(L, 3, "virtual_EnumeratePublishedFilesByUserAction")); + unsigned __int64 returnVal = (self->virtual_EnumeratePublishedFilesByUserAction)((EWorkshopFileAction)tolua_function_tointeger<__int32>(L, 2, "virtual_EnumeratePublishedFilesByUserAction"), tolua_function_tointeger(L, 3, "virtual_EnumeratePublishedFilesByUserAction")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75317,7 +77448,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_EnumeratePublishedWorkshop { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnumeratePublishedWorkshopFiles'", NULL); - unsigned __int64 returnVal = self->virtual_EnumeratePublishedWorkshopFiles((EWorkshopEnumerationType)tolua_function_tointeger<__int32>(L, 2, "virtual_EnumeratePublishedWorkshopFiles"), tolua_function_tointeger(L, 3, "virtual_EnumeratePublishedWorkshopFiles"), tolua_function_tointeger(L, 4, "virtual_EnumeratePublishedWorkshopFiles"), tolua_function_tointeger(L, 5, "virtual_EnumeratePublishedWorkshopFiles"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 6, 0, "SteamParamStringArray_t"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 7, 0, "SteamParamStringArray_t")); + unsigned __int64 returnVal = (self->virtual_EnumeratePublishedWorkshopFiles)((EWorkshopEnumerationType)tolua_function_tointeger<__int32>(L, 2, "virtual_EnumeratePublishedWorkshopFiles"), tolua_function_tointeger(L, 3, "virtual_EnumeratePublishedWorkshopFiles"), tolua_function_tointeger(L, 4, "virtual_EnumeratePublishedWorkshopFiles"), tolua_function_tointeger(L, 5, "virtual_EnumeratePublishedWorkshopFiles"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 6, 0, "SteamParamStringArray_t"), (SteamParamStringArray_t*)tolua_tousertype_dynamic(L, 7, 0, "SteamParamStringArray_t")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -75326,7 +77457,7 @@ static int tolua_function_ISteamRemoteStorage_virtual_UGCDownloadToLocation(lua_ { ISteamRemoteStorage* self = (ISteamRemoteStorage*)tolua_tousertype_dynamic(L, 1, 0, "ISteamRemoteStorage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UGCDownloadToLocation'", NULL); - unsigned __int64 returnVal = self->virtual_UGCDownloadToLocation(tolua_function_tointeger(L, 2, "virtual_UGCDownloadToLocation"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), tolua_function_tointeger(L, 4, "virtual_UGCDownloadToLocation")); + unsigned __int64 returnVal = (self->virtual_UGCDownloadToLocation)(tolua_function_tointeger(L, 2, "virtual_UGCDownloadToLocation"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), tolua_function_tointeger(L, 4, "virtual_UGCDownloadToLocation")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -76325,7 +78456,7 @@ static int tolua_function_IDPProvider_virtual_Connect(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Connect'", NULL); - self->virtual_Connect(tolua_function_tointeger(L, 2, "virtual_Connect"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + (self->virtual_Connect)(tolua_function_tointeger(L, 2, "virtual_Connect"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); return 0; } @@ -76333,7 +78464,7 @@ static int tolua_function_IDPProvider_virtual_IsConnected(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsConnected'", NULL); - bool returnVal = self->virtual_IsConnected(); + bool returnVal = (self->virtual_IsConnected)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -76342,7 +78473,7 @@ static int tolua_function_IDPProvider_virtual_Listen(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Listen'", NULL); - self->virtual_Listen(tolua_function_tointeger(L, 2, "virtual_Listen"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + (self->virtual_Listen)(tolua_function_tointeger(L, 2, "virtual_Listen"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); return 0; } @@ -76350,7 +78481,7 @@ static int tolua_function_IDPProvider_virtual_Pump(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Pump'", NULL); - bool returnVal = self->virtual_Pump((DP_Event*)tolua_tousertype_dynamic(L, 2, 0, "DP_Event")); + bool returnVal = (self->virtual_Pump)((DP_Event*)tolua_tousertype_dynamic(L, 2, 0, "DP_Event")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -76359,7 +78490,7 @@ static int tolua_function_IDPProvider_virtual_Close(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Close'", NULL); - self->virtual_Close(); + (self->virtual_Close)(); return 0; } @@ -76367,7 +78498,7 @@ static int tolua_function_IDPProvider_virtual_RequestSessionDetails(lua_State* L { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestSessionDetails'", NULL); - self->virtual_RequestSessionDetails(tolua_function_tointeger(L, 2, "virtual_RequestSessionDetails")); + (self->virtual_RequestSessionDetails)(tolua_function_tointeger(L, 2, "virtual_RequestSessionDetails")); return 0; } @@ -76375,7 +78506,7 @@ static int tolua_function_IDPProvider_virtual_AllowJoin(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AllowJoin'", NULL); - self->virtual_AllowJoin(tolua_function_toboolean(L, 2, "virtual_AllowJoin")); + (self->virtual_AllowJoin)(tolua_function_toboolean(L, 2, "virtual_AllowJoin")); return 0; } @@ -76383,7 +78514,7 @@ static int tolua_function_IDPProvider_virtual_SetVersion(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetVersion'", NULL); - self->virtual_SetVersion(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + (self->virtual_SetVersion)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); return 0; } @@ -76391,7 +78522,7 @@ static int tolua_function_IDPProvider_virtual_IsBackendConnected(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsBackendConnected'", NULL); - bool returnVal = self->virtual_IsBackendConnected(); + bool returnVal = (self->virtual_IsBackendConnected)(); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -76400,7 +78531,7 @@ static int tolua_function_IDPProvider_virtual_Destruct(lua_State* L) { IDPProvider* self = (IDPProvider*)tolua_tousertype_dynamic(L, 1, 0, "IDPProvider"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -76636,7 +78767,7 @@ static int tolua_function_IDPPeer_virtual_Send(lua_State* L) { IDPPeer* self = (IDPPeer*)tolua_tousertype_dynamic(L, 1, 0, "IDPPeer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Send'", NULL); - self->virtual_Send((DP_Packet*)tolua_tousertype_dynamic(L, 2, 0, "DP_Packet"), tolua_function_tointeger(L, 3, "virtual_Send")); + (self->virtual_Send)((DP_Packet*)tolua_tousertype_dynamic(L, 2, 0, "DP_Packet"), tolua_function_tointeger(L, 3, "virtual_Send")); return 0; } @@ -76644,7 +78775,7 @@ static int tolua_function_IDPPeer_virtual_GetFrontPacket(lua_State* L) { IDPPeer* self = (IDPPeer*)tolua_tousertype_dynamic(L, 1, 0, "IDPPeer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFrontPacket'", NULL); - DP_Packet* returnVal = self->virtual_GetFrontPacket(); + DP_Packet* returnVal = (self->virtual_GetFrontPacket)(); tolua_pushusertype(L, (void*)returnVal, "DP_Packet"); return 1; } @@ -76653,7 +78784,7 @@ static int tolua_function_IDPPeer_virtual_HasData(lua_State* L) { IDPPeer* self = (IDPPeer*)tolua_tousertype_dynamic(L, 1, 0, "IDPPeer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_HasData'", NULL); - int returnVal = self->virtual_HasData(); + int returnVal = (self->virtual_HasData)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -76662,7 +78793,7 @@ static int tolua_function_IDPPeer_virtual_Disconnect(lua_State* L) { IDPPeer* self = (IDPPeer*)tolua_tousertype_dynamic(L, 1, 0, "IDPPeer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Disconnect'", NULL); - self->virtual_Disconnect(); + (self->virtual_Disconnect)(); return 0; } @@ -76670,7 +78801,7 @@ static int tolua_function_IDPPeer_virtual_GetAddress(lua_State* L) { IDPPeer* self = (IDPPeer*)tolua_tousertype_dynamic(L, 1, 0, "IDPPeer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAddress'", NULL); - self->virtual_GetAddress(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString"), tolua_function_tointeger(L, 3, "virtual_GetAddress")); + (self->virtual_GetAddress)(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString"), tolua_function_tointeger(L, 3, "virtual_GetAddress")); return 0; } @@ -76678,7 +78809,7 @@ static int tolua_function_IDPPeer_virtual_Destruct(lua_State* L) { IDPPeer* self = (IDPPeer*)tolua_tousertype_dynamic(L, 1, 0, "IDPPeer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -76794,7 +78925,7 @@ static int tolua_function_ConstCharString_getChar(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -76803,7 +78934,7 @@ static int tolua_function_ConstCharString_set(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -76811,7 +78942,7 @@ static int tolua_function_ConstCharString_setL(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setL'", NULL); - self->setL(tolua_function_tostring(L, 2, "setL"), tolua_function_tointeger(L, 3, "setL")); + (self->setL)(tolua_function_tostring(L, 2, "setL"), tolua_function_tointeger(L, 3, "setL")); return 0; } @@ -76819,7 +78950,7 @@ static int tolua_function_ConstCharString_setReference(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setReference'", NULL); - self->setReference((ConstCharString*)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + (self->setReference)((ConstCharString*)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); return 0; } @@ -76827,7 +78958,7 @@ static int tolua_function_ConstCharString_pointTo(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'pointTo'", NULL); - self->pointTo(tolua_function_tointeger(L, 2, "pointTo")); + (self->pointTo)(tolua_function_tointeger(L, 2, "pointTo")); return 0; } @@ -76835,7 +78966,7 @@ static int tolua_function_ConstCharString_get(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - const char* returnVal = self->get(); + const char* returnVal = (self->get)(); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -76844,7 +78975,7 @@ static int tolua_function_ConstCharString_free(lua_State* L) { ConstCharString* self = (ConstCharString*)tolua_tousertype_dynamic(L, 1, 0, "ConstCharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'free'", NULL); - self->free(); + (self->free)(); return 0; } @@ -76852,7 +78983,7 @@ static int tolua_function_CharString_getChar(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -76861,7 +78992,7 @@ static int tolua_function_CharString_setChar(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -76869,7 +79000,7 @@ static int tolua_function_CharString_set(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -76877,7 +79008,7 @@ static int tolua_function_CharString_setL(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setL'", NULL); - self->setL(tolua_function_tostring(L, 2, "setL"), tolua_function_tointeger(L, 3, "setL")); + (self->setL)(tolua_function_tostring(L, 2, "setL"), tolua_function_tointeger(L, 3, "setL")); return 0; } @@ -76885,7 +79016,7 @@ static int tolua_function_CharString_write(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'write'", NULL); - self->write(tolua_function_tostring(L, 2, "write")); + (self->write)(tolua_function_tostring(L, 2, "write")); return 0; } @@ -76893,7 +79024,7 @@ static int tolua_function_CharString_writeL(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'writeL'", NULL); - self->writeL(tolua_function_tostring(L, 2, "writeL"), tolua_function_tointeger(L, 3, "writeL")); + (self->writeL)(tolua_function_tostring(L, 2, "writeL"), tolua_function_tointeger(L, 3, "writeL")); return 0; } @@ -76901,7 +79032,7 @@ static int tolua_function_CharString_setReference(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setReference'", NULL); - self->setReference((CharString*)tolua_tousertype_dynamic(L, 2, 0, "CharString")); + (self->setReference)((CharString*)tolua_tousertype_dynamic(L, 2, 0, "CharString")); return 0; } @@ -76909,7 +79040,7 @@ static int tolua_function_CharString_pointTo(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'pointTo'", NULL); - self->pointTo(tolua_function_tointeger(L, 2, "pointTo")); + (self->pointTo)(tolua_function_tointeger(L, 2, "pointTo")); return 0; } @@ -76917,7 +79048,7 @@ static int tolua_function_CharString_get(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char* returnVal = self->get(); + char* returnVal = (self->get)(); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -76926,7 +79057,7 @@ static int tolua_function_CharString_getL(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getL'", NULL); - self->getL(L, tolua_function_tointeger(L, 2, "getL")); + (self->getL)(L, tolua_function_tointeger(L, 2, "getL")); return 1; } @@ -76934,7 +79065,7 @@ static int tolua_function_CharString_free(lua_State* L) { CharString* self = (CharString*)tolua_tousertype_dynamic(L, 1, 0, "CharString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'free'", NULL); - self->free(); + (self->free)(); return 0; } @@ -77038,7 +79169,7 @@ static int tolua_function_CVidPoly_m_pDrawHLineFunction(lua_State* L) { CVidPoly* self = (CVidPoly*)tolua_tousertype_dynamic(L, 1, 0, "CVidPoly"); if (!self) tolua_error(L, "invalid 'self' in calling function 'm_pDrawHLineFunction'", NULL); - self->m_pDrawHLineFunction(self, (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "m_pDrawHLineFunction"), tolua_function_tointeger(L, 4, "m_pDrawHLineFunction"), tolua_function_tointeger(L, 5, "m_pDrawHLineFunction"), (const CRect*)tolua_tousertype_dynamic(L, 6, 0, "CRect"), (const CPoint*)tolua_tousertype_dynamic(L, 7, 0, "CPoint")); + (self->m_pDrawHLineFunction)(self, (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "m_pDrawHLineFunction"), tolua_function_tointeger(L, 4, "m_pDrawHLineFunction"), tolua_function_tointeger(L, 5, "m_pDrawHLineFunction"), (const CRect*)tolua_tousertype_dynamic(L, 6, 0, "CRect"), (const CPoint*)tolua_tousertype_dynamic(L, 7, 0, "CPoint")); return 0; } @@ -77142,7 +79273,7 @@ static int tolua_function_CString_Destruct(lua_State* L) { CString* self = (CString*)tolua_tousertype_dynamic(L, 1, 0, "CString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -77158,7 +79289,7 @@ static int tolua_function_CString_MakeUpper(lua_State* L) { CString* self = (CString*)tolua_tousertype_dynamic(L, 1, 0, "CString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'MakeUpper'", NULL); - self->MakeUpper(); + (self->MakeUpper)(); return 0; } @@ -77166,7 +79297,7 @@ static int tolua_function_CString_AssignmentOperator_Overload_String(lua_State* { CString* self = (CString*)tolua_tousertype_dynamic(L, 1, 0, "CString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AssignmentOperator_Overload_String'", NULL); - self->operator=(tolua_function_tostring(L, 2, "AssignmentOperator_Overload_String")); + (self->operator=)(tolua_function_tostring(L, 2, "AssignmentOperator_Overload_String")); return 0; } @@ -77174,7 +79305,7 @@ static int tolua_function_CString_AssignmentOperator_Overload_CString(lua_State* { CString* self = (CString*)tolua_tousertype_dynamic(L, 1, 0, "CString"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AssignmentOperator_Overload_CString'", NULL); - self->operator=((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->operator=)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -77470,7 +79601,7 @@ static int tolua_function_CSoundMixer_GetListenPosition(lua_State* L) { CSoundMixer* self = (CSoundMixer*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CSoundMixer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetListenPosition'", NULL); - self->GetListenPosition((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + (self->GetListenPosition)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); return 0; } @@ -77718,7 +79849,7 @@ static int tolua_function_CRes_Destruct(lua_State* L) { CRes* self = (CRes*)tolua_tousertype_dynamic(L, 1, 0, "CRes"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -77726,7 +79857,7 @@ static int tolua_function_CRes_Demand(lua_State* L) { CRes* self = (CRes*)tolua_tousertype_dynamic(L, 1, 0, "CRes"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Demand'", NULL); - void* returnVal = self->Demand(); + void* returnVal = (self->Demand)(); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -77735,7 +79866,7 @@ static int tolua_function_CRes_virtual_Parse(lua_State* L) { CRes* self = (CRes*)tolua_tousertype_dynamic(L, 1, 0, "CRes"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Parse'", NULL); - bool returnVal = self->virtual_Parse((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + bool returnVal = (self->virtual_Parse)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -77744,7 +79875,7 @@ static int tolua_function_CRes_virtual_Dump(lua_State* L) { CRes* self = (CRes*)tolua_tousertype_dynamic(L, 1, 0, "CRes"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Dump'", NULL); - self->virtual_Dump(); + (self->virtual_Dump)(); return 0; } @@ -77752,7 +79883,7 @@ static int tolua_function_CRes_virtual_GetResRef(lua_State* L) { CRes* self = (CRes*)tolua_tousertype_dynamic(L, 1, 0, "CRes"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetResRef'", NULL); - CResRef* returnVal = self->virtual_GetResRef(); + CResRef* returnVal = (self->virtual_GetResRef)(); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -78391,7 +80522,7 @@ static int tolua_function_CResPVR_Demand(lua_State* L) { CResPVR* self = (CResPVR*)tolua_tousertype_dynamic(L, 1, 0, "CResPVR"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Demand'", NULL); - void* returnVal = self->Demand(); + void* returnVal = (self->Demand)(); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -81008,7 +83139,7 @@ static int tolua_function_CSpawnPoint_virtual_Destruct(lua_State* L) { CSpawnPoint* self = (CSpawnPoint*)tolua_tousertype_dynamic(L, 1, 0, "CSpawnPoint"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -81226,7 +83357,7 @@ static int tolua_function_CPersistantEffect_virtual_Destruct(lua_State* L) { CPersistantEffect* self = (CPersistantEffect*)tolua_tousertype_dynamic(L, 1, 0, "CPersistantEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -81234,7 +83365,7 @@ static int tolua_function_CPersistantEffect_virtual_AIUpdate(lua_State* L) { CPersistantEffect* self = (CPersistantEffect*)tolua_tousertype_dynamic(L, 1, 0, "CPersistantEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AIUpdate'", NULL); - self->virtual_AIUpdate((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), tolua_function_tointeger(L, 3, "virtual_AIUpdate")); + (self->virtual_AIUpdate)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), tolua_function_tointeger(L, 3, "virtual_AIUpdate")); return 0; } @@ -81242,7 +83373,7 @@ static int tolua_function_CPersistantEffect_virtual_Copy(lua_State* L) { CPersistantEffect* self = (CPersistantEffect*)tolua_tousertype_dynamic(L, 1, 0, "CPersistantEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Copy'", NULL); - CPersistantEffect* returnVal = self->virtual_Copy(); + CPersistantEffect* returnVal = (self->virtual_Copy)(); tolua_pushusertype(L, (void*)returnVal, "CPersistantEffect"); return 1; } @@ -81305,7 +83436,7 @@ static int tolua_function_CObject_virtual_Destruct(lua_State* L) { CObject* self = (CObject*)tolua_tousertype_dynamic(L, 1, 0, "CObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(tolua_function_tointeger(L, 2, "virtual_Destruct")); + (self->virtual_Destruct)(tolua_function_tointeger(L, 2, "virtual_Destruct")); return 0; } @@ -81571,7 +83702,7 @@ static int tolua_function_CException_virtual_GetErrorMessage(lua_State* L) { CException* self = (CException*)tolua_tousertype_dynamic(L, 1, 0, "CException"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetErrorMessage'", NULL); - int returnVal = self->virtual_GetErrorMessage(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString"), tolua_function_tointeger(L, 3, "virtual_GetErrorMessage"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + int returnVal = (self->virtual_GetErrorMessage)(*(char**)tolua_tousertype_dynamic(L, 2, 0, "CharString"), tolua_function_tointeger(L, 3, "virtual_GetErrorMessage"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -82590,7 +84721,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIId___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -82599,7 +84730,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIId___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAIId*)tolua_tousertype_dynamic(L, 2, 0, "CAIId"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -82608,7 +84739,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIId___RemoveHead(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAIId* returnVal = self->RemoveHead(); + CAIId* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAIId"); return 1; } @@ -82617,7 +84748,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIId___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -82625,7 +84756,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIId___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -82633,7 +84764,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIId___RemoveAll(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -82865,7 +84996,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaUserNote___AddTail(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -82874,7 +85005,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaUserNote___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAreaUserNote*)tolua_tousertype_dynamic(L, 2, 0, "CAreaUserNote"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -82883,7 +85014,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaUserNote___RemoveHead(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAreaUserNote* returnVal = self->RemoveHead(); + CAreaUserNote* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAreaUserNote"); return 1; } @@ -82892,7 +85023,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaUserNote___RemoveAt(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -82900,7 +85031,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaUserNote___Destruct(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -82908,7 +85039,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaUserNote___RemoveAll(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -83140,7 +85271,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIAction___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83149,7 +85280,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIAction___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83158,7 +85289,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIAction___RemoveHead(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAIAction* returnVal = self->RemoveHead(); + CAIAction* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAIAction"); return 1; } @@ -83167,7 +85298,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIAction___RemoveAt(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -83175,7 +85306,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIAction___Destruct(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -83183,7 +85314,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIAction___RemoveAll(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -83415,7 +85546,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAITrigger___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83424,7 +85555,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAITrigger___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83433,7 +85564,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAITrigger___RemoveHead(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAITrigger* returnVal = self->RemoveHead(); + CAITrigger* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAITrigger"); return 1; } @@ -83442,7 +85573,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAITrigger___RemoveAt(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -83450,7 +85581,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAITrigger___Destruct(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -83458,7 +85589,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAITrigger___RemoveAll(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -83690,7 +85821,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameTimer___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83699,7 +85830,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameTimer___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameTimer*)tolua_tousertype_dynamic(L, 2, 0, "CGameTimer"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83708,7 +85839,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameTimer___RemoveHead(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameTimer* returnVal = self->RemoveHead(); + CGameTimer* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CGameTimer"); return 1; } @@ -83717,7 +85848,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameTimer___RemoveAt(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -83725,7 +85856,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameTimer___Destruct(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -83733,7 +85864,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameTimer___RemoveAll(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -83965,7 +86096,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileKnownSpell___AddTa { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83974,7 +86105,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileKnownSpell___Find( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CCreatureFileKnownSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileKnownSpell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -83983,7 +86114,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileKnownSpell___Remov { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CCreatureFileKnownSpell* returnVal = self->RemoveHead(); + CCreatureFileKnownSpell* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); return 1; } @@ -83992,7 +86123,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileKnownSpell___Remov { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -84000,7 +86131,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileKnownSpell___Destr { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -84008,7 +86139,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileKnownSpell___Remov { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -84240,7 +86371,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpell___A { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -84249,7 +86380,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpell___F { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CCreatureFileMemorizedSpell*)tolua_tousertype_dynamic(L, 2, 0, "CCreatureFileMemorizedSpell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -84258,7 +86389,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpell___R { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CCreatureFileMemorizedSpell* returnVal = self->RemoveHead(); + CCreatureFileMemorizedSpell* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpell"); return 1; } @@ -84267,7 +86398,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpell___R { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -84275,7 +86406,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpell___D { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -84283,7 +86414,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpell___R { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -84515,7 +86646,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -84524,7 +86655,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((long*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -84533,7 +86664,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long___RemoveHead(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - long* returnVal = self->RemoveHead(); + long* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -84542,7 +86673,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -84550,7 +86681,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -84558,7 +86689,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long___RemoveAll(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -84790,7 +86921,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBlood___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -84799,7 +86930,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBlood___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CBlood*)tolua_tousertype_dynamic(L, 2, 0, "CBlood"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -84808,7 +86939,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBlood___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CBlood* returnVal = self->RemoveHead(); + CBlood* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CBlood"); return 1; } @@ -84817,7 +86948,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBlood___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -84825,7 +86956,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBlood___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -84833,7 +86964,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBlood___RemoveAll(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -85065,7 +87196,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPortraitIcon___AddTail(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85074,7 +87205,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPortraitIcon___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CPortraitIcon*)tolua_tousertype_dynamic(L, 2, 0, "CPortraitIcon"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85083,7 +87214,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPortraitIcon___RemoveHead(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CPortraitIcon* returnVal = self->RemoveHead(); + CPortraitIcon* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CPortraitIcon"); return 1; } @@ -85092,7 +87223,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPortraitIcon___RemoveAt(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -85100,7 +87231,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPortraitIcon___Destruct(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -85108,7 +87239,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPortraitIcon___RemoveAll(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -85340,7 +87471,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPoint___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85349,7 +87480,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPoint___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85358,7 +87489,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPoint___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CPoint* returnVal = self->RemoveHead(); + CPoint* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -85367,7 +87498,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPoint___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -85375,7 +87506,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPoint___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -85383,7 +87514,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPoint___RemoveAll(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -85615,7 +87746,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CFeedbackEntry___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85624,7 +87755,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CFeedbackEntry___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CFeedbackEntry*)tolua_tousertype_dynamic(L, 2, 0, "CFeedbackEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85633,7 +87764,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CFeedbackEntry___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CFeedbackEntry* returnVal = self->RemoveHead(); + CFeedbackEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CFeedbackEntry"); return 1; } @@ -85642,7 +87773,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CFeedbackEntry___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -85650,7 +87781,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CFeedbackEntry___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -85658,7 +87789,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CFeedbackEntry___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -85890,7 +88021,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameSprite__GroundItem___AddTa { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85899,7 +88030,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameSprite__GroundItem___Find( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameSprite::GroundItem*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite::GroundItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -85908,7 +88039,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameSprite__GroundItem___Remov { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameSprite::GroundItem* returnVal = self->RemoveHead(); + CGameSprite::GroundItem* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CGameSprite::GroundItem"); return 1; } @@ -85917,7 +88048,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameSprite__GroundItem___Remov { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -85925,7 +88056,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameSprite__GroundItem___Destr { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -85933,7 +88064,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameSprite__GroundItem___Remov { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -86165,7 +88296,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CResRef___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86174,7 +88305,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CResRef___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86183,7 +88314,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CResRef___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CResRef* returnVal = self->RemoveHead(); + CResRef* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -86192,7 +88323,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CResRef___RemoveAt(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -86200,7 +88331,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CResRef___Destruct(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -86208,7 +88339,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CResRef___RemoveAll(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -86440,7 +88571,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSearchRequest___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86449,7 +88580,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSearchRequest___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSearchRequest*)tolua_tousertype_dynamic(L, 2, 0, "CSearchRequest"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86458,7 +88589,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSearchRequest___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSearchRequest* returnVal = self->RemoveHead(); + CSearchRequest* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSearchRequest"); return 1; } @@ -86467,7 +88598,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSearchRequest___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -86475,7 +88606,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSearchRequest___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -86483,7 +88614,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSearchRequest___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -86715,7 +88846,7 @@ static int tolua_function_CTypedPtrList_CPtrList_SAreaFileWrapper___AddTail(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86724,7 +88855,7 @@ static int tolua_function_CTypedPtrList_CPtrList_SAreaFileWrapper___Find(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((SAreaFileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SAreaFileWrapper"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86733,7 +88864,7 @@ static int tolua_function_CTypedPtrList_CPtrList_SAreaFileWrapper___RemoveHead(l { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - SAreaFileWrapper* returnVal = self->RemoveHead(); + SAreaFileWrapper* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "SAreaFileWrapper"); return 1; } @@ -86742,7 +88873,7 @@ static int tolua_function_CTypedPtrList_CPtrList_SAreaFileWrapper___RemoveAt(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -86750,7 +88881,7 @@ static int tolua_function_CTypedPtrList_CPtrList_SAreaFileWrapper___Destruct(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -86758,7 +88889,7 @@ static int tolua_function_CTypedPtrList_CPtrList_SAreaFileWrapper___RemoveAll(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -86990,7 +89121,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSavedGameStoredLocation___AddT { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -86999,7 +89130,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSavedGameStoredLocation___Find { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSavedGameStoredLocation*)tolua_tousertype_dynamic(L, 2, 0, "CSavedGameStoredLocation"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87008,7 +89139,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSavedGameStoredLocation___Remo { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSavedGameStoredLocation* returnVal = self->RemoveHead(); + CSavedGameStoredLocation* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSavedGameStoredLocation"); return 1; } @@ -87017,7 +89148,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSavedGameStoredLocation___Remo { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -87025,7 +89156,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSavedGameStoredLocation___Dest { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -87033,7 +89164,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSavedGameStoredLocation___Remo { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -87265,7 +89396,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAOEEntry___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87274,7 +89405,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAOEEntry___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAOEEntry*)tolua_tousertype_dynamic(L, 2, 0, "CAOEEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87283,7 +89414,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAOEEntry___RemoveHead(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAOEEntry* returnVal = self->RemoveHead(); + CAOEEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAOEEntry"); return 1; } @@ -87292,7 +89423,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAOEEntry___RemoveAt(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -87300,7 +89431,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAOEEntry___Destruct(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -87308,7 +89439,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAOEEntry___RemoveAll(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -87540,7 +89671,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long__AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail(tolua_function_tointeger(L, 2, "AddTail")); + CTypedPtrList::CNode* returnVal = (self->AddTail)(tolua_function_tointeger(L, 2, "AddTail")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87549,7 +89680,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long__Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find(tolua_function_tointeger(L, 2, "Find"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)(tolua_function_tointeger(L, 2, "Find"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87558,7 +89689,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long__RemoveHead(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - long returnVal = self->RemoveHead(); + long returnVal = (self->RemoveHead)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -87567,7 +89698,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long__RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -87575,7 +89706,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long__Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -87583,7 +89714,7 @@ static int tolua_function_CTypedPtrList_CPtrList_long__RemoveAll(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -87815,7 +89946,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaFileCharacterEntryPoint___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87824,7 +89955,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaFileCharacterEntryPoint___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAreaFileCharacterEntryPoint*)tolua_tousertype_dynamic(L, 2, 0, "CAreaFileCharacterEntryPoint"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -87833,7 +89964,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaFileCharacterEntryPoint___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAreaFileCharacterEntryPoint* returnVal = self->RemoveHead(); + CAreaFileCharacterEntryPoint* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAreaFileCharacterEntryPoint"); return 1; } @@ -87842,7 +89973,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaFileCharacterEntryPoint___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -87850,7 +89981,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaFileCharacterEntryPoint___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -87858,7 +89989,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAreaFileCharacterEntryPoint___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -88090,7 +90221,7 @@ static int tolua_function_CTypedPtrList_CPtrList___POSITION___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88099,7 +90230,7 @@ static int tolua_function_CTypedPtrList_CPtrList___POSITION___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88108,7 +90239,7 @@ static int tolua_function_CTypedPtrList_CPtrList___POSITION___RemoveHead(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - __POSITION* returnVal = self->RemoveHead(); + __POSITION* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "__POSITION"); return 1; } @@ -88117,7 +90248,7 @@ static int tolua_function_CTypedPtrList_CPtrList___POSITION___RemoveAt(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -88125,7 +90256,7 @@ static int tolua_function_CTypedPtrList_CPtrList___POSITION___Destruct(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -88133,7 +90264,7 @@ static int tolua_function_CTypedPtrList_CPtrList___POSITION___RemoveAll(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -88365,7 +90496,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTiledObject___AddTail(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88374,7 +90505,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTiledObject___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CTiledObject*)tolua_tousertype_dynamic(L, 2, 0, "CTiledObject"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88383,7 +90514,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTiledObject___RemoveHead(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CTiledObject* returnVal = self->RemoveHead(); + CTiledObject* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CTiledObject"); return 1; } @@ -88392,7 +90523,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTiledObject___RemoveAt(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -88400,7 +90531,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTiledObject___Destruct(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -88408,7 +90539,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTiledObject___RemoveAll(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -88640,7 +90771,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEntry___Ad { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88649,7 +90780,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEntry___Fi { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88658,7 +90789,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEntry___Re { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameAreaClairvoyanceEntry* returnVal = self->RemoveHead(); + CGameAreaClairvoyanceEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CGameAreaClairvoyanceEntry"); return 1; } @@ -88667,7 +90798,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEntry___Re { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -88675,7 +90806,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEntry___De { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -88683,7 +90814,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameAreaClairvoyanceEntry___Re { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -88915,7 +91046,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVEFEvent___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88924,7 +91055,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVEFEvent___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CVEFEvent*)tolua_tousertype_dynamic(L, 2, 0, "CVEFEvent"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -88933,7 +91064,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVEFEvent___RemoveHead(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CVEFEvent* returnVal = self->RemoveHead(); + CVEFEvent* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CVEFEvent"); return 1; } @@ -88942,7 +91073,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVEFEvent___RemoveAt(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -88950,7 +91081,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVEFEvent___Destruct(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -88958,7 +91089,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVEFEvent___RemoveAll(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -89190,7 +91321,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIObjectType___AddTail(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -89199,7 +91330,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIObjectType___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -89208,7 +91339,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIObjectType___RemoveHead(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAIObjectType* returnVal = self->RemoveHead(); + CAIObjectType* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -89217,7 +91348,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIObjectType___RemoveAt(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -89225,7 +91356,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIObjectType___Destruct(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -89233,7 +91364,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIObjectType___RemoveAll(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -89465,7 +91596,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIConditionResponse___AddTail( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -89474,7 +91605,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIConditionResponse___Find(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAIConditionResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIConditionResponse"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -89483,7 +91614,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIConditionResponse___RemoveHe { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAIConditionResponse* returnVal = self->RemoveHead(); + CAIConditionResponse* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAIConditionResponse"); return 1; } @@ -89492,7 +91623,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIConditionResponse___RemoveAt { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -89500,7 +91631,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIConditionResponse___Destruct { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -89508,7 +91639,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIConditionResponse___RemoveAl { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -89740,7 +91871,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMessage___AddTail(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -89749,7 +91880,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMessage___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -89758,7 +91889,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMessage___RemoveHead(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CMessage* returnVal = self->RemoveHead(); + CMessage* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CMessage"); return 1; } @@ -89767,7 +91898,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMessage___RemoveAt(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -89775,7 +91906,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMessage___Destruct(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -89783,7 +91914,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMessage___RemoveAll(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -90015,7 +92146,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CDeathSound___AddTail(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90024,7 +92155,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CDeathSound___Find(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CDeathSound*)tolua_tousertype_dynamic(L, 2, 0, "CDeathSound"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90033,7 +92164,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CDeathSound___RemoveHead(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CDeathSound* returnVal = self->RemoveHead(); + CDeathSound* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CDeathSound"); return 1; } @@ -90042,7 +92173,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CDeathSound___RemoveAt(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -90050,7 +92181,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CDeathSound___Destruct(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -90058,7 +92189,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CDeathSound___RemoveAll(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -90290,7 +92421,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CItem___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90299,7 +92430,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CItem___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90308,7 +92439,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CItem___RemoveHead(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CItem* returnVal = self->RemoveHead(); + CItem* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CItem"); return 1; } @@ -90317,7 +92448,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CItem___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -90325,7 +92456,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CItem___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -90333,7 +92464,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CItem___RemoveAll(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -90565,7 +92696,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CContingency___AddTail(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90574,7 +92705,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CContingency___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CContingency*)tolua_tousertype_dynamic(L, 2, 0, "CContingency"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90583,7 +92714,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CContingency___RemoveHead(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CContingency* returnVal = self->RemoveHead(); + CContingency* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CContingency"); return 1; } @@ -90592,7 +92723,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CContingency___RemoveAt(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -90600,7 +92731,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CContingency___Destruct(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -90608,7 +92739,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CContingency___RemoveAll(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -90840,7 +92971,7 @@ static int tolua_function_CTypedPtrList_CPtrList_cnetworkwindow_queueentry_st___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90849,7 +92980,7 @@ static int tolua_function_CTypedPtrList_CPtrList_cnetworkwindow_queueentry_st___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 2, 0, "cnetworkwindow_queueentry_st"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -90858,7 +92989,7 @@ static int tolua_function_CTypedPtrList_CPtrList_cnetworkwindow_queueentry_st___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - cnetworkwindow_queueentry_st* returnVal = self->RemoveHead(); + cnetworkwindow_queueentry_st* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "cnetworkwindow_queueentry_st"); return 1; } @@ -90867,7 +92998,7 @@ static int tolua_function_CTypedPtrList_CPtrList_cnetworkwindow_queueentry_st___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -90875,7 +93006,7 @@ static int tolua_function_CTypedPtrList_CPtrList_cnetworkwindow_queueentry_st___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -90883,7 +93014,7 @@ static int tolua_function_CTypedPtrList_CPtrList_cnetworkwindow_queueentry_st___ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -91115,7 +93246,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMusicPosition___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91124,7 +93255,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMusicPosition___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CMusicPosition*)tolua_tousertype_dynamic(L, 2, 0, "CMusicPosition"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91133,7 +93264,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMusicPosition___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CMusicPosition* returnVal = self->RemoveHead(); + CMusicPosition* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CMusicPosition"); return 1; } @@ -91142,7 +93273,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMusicPosition___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -91150,7 +93281,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMusicPosition___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -91158,7 +93289,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMusicPosition___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -91390,7 +93521,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameJournalEntry___AddTail(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91399,7 +93530,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameJournalEntry___Find(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameJournalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameJournalEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91408,7 +93539,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameJournalEntry___RemoveHead( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameJournalEntry* returnVal = self->RemoveHead(); + CGameJournalEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CGameJournalEntry"); return 1; } @@ -91417,7 +93548,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameJournalEntry___RemoveAt(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -91425,7 +93556,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameJournalEntry___Destruct(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -91433,7 +93564,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameJournalEntry___RemoveAll(l { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -91665,7 +93796,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMoveListEntry___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91674,7 +93805,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMoveListEntry___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CMoveListEntry*)tolua_tousertype_dynamic(L, 2, 0, "CMoveListEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91683,7 +93814,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMoveListEntry___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CMoveListEntry* returnVal = self->RemoveHead(); + CMoveListEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CMoveListEntry"); return 1; } @@ -91692,7 +93823,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMoveListEntry___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -91700,7 +93831,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMoveListEntry___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -91708,7 +93839,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMoveListEntry___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -91940,7 +94071,7 @@ static int tolua_function_CTypedPtrList_CPtrList_void___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91949,7 +94080,7 @@ static int tolua_function_CTypedPtrList_CPtrList_void___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -91958,7 +94089,7 @@ static int tolua_function_CTypedPtrList_CPtrList_void___RemoveHead(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - void* returnVal = self->RemoveHead(); + void* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -91967,7 +94098,7 @@ static int tolua_function_CTypedPtrList_CPtrList_void___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -91975,7 +94106,7 @@ static int tolua_function_CTypedPtrList_CPtrList_void___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -91983,7 +94114,7 @@ static int tolua_function_CTypedPtrList_CPtrList_void___RemoveAll(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -92215,7 +94346,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffectUsability___AddTail( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -92224,7 +94355,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffectUsability___Find(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameEffectUsability*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffectUsability"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -92233,7 +94364,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffectUsability___RemoveHe { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameEffectUsability* returnVal = self->RemoveHead(); + CGameEffectUsability* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffectUsability"); return 1; } @@ -92242,7 +94373,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffectUsability___RemoveAt { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -92250,7 +94381,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffectUsability___Destruct { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -92258,7 +94389,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffectUsability___RemoveAl { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -92490,7 +94621,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CStoreFileItem___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -92499,7 +94630,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CStoreFileItem___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CStoreFileItem*)tolua_tousertype_dynamic(L, 2, 0, "CStoreFileItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -92508,7 +94639,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CStoreFileItem___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CStoreFileItem* returnVal = self->RemoveHead(); + CStoreFileItem* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CStoreFileItem"); return 1; } @@ -92517,7 +94648,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CStoreFileItem___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -92525,7 +94656,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CStoreFileItem___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -92533,7 +94664,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CStoreFileItem___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -92765,7 +94896,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMemINIValue___AddTail(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -92774,7 +94905,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMemINIValue___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CMemINIValue*)tolua_tousertype_dynamic(L, 2, 0, "CMemINIValue"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -92783,7 +94914,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMemINIValue___RemoveHead(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CMemINIValue* returnVal = self->RemoveHead(); + CMemINIValue* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CMemINIValue"); return 1; } @@ -92792,7 +94923,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMemINIValue___RemoveAt(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -92800,7 +94931,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMemINIValue___Destruct(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -92808,7 +94939,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CMemINIValue___RemoveAll(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -93040,7 +95171,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIResponse___AddTail(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93049,7 +95180,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIResponse___Find(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CAIResponse*)tolua_tousertype_dynamic(L, 2, 0, "CAIResponse"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93058,7 +95189,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIResponse___RemoveHead(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CAIResponse* returnVal = self->RemoveHead(); + CAIResponse* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CAIResponse"); return 1; } @@ -93067,7 +95198,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIResponse___RemoveAt(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -93075,7 +95206,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIResponse___Destruct(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -93083,7 +95214,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CAIResponse___RemoveAll(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -93315,7 +95446,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSpawn___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93324,7 +95455,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSpawn___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSpawn*)tolua_tousertype_dynamic(L, 2, 0, "CSpawn"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93333,7 +95464,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSpawn___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSpawn* returnVal = self->RemoveHead(); + CSpawn* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSpawn"); return 1; } @@ -93342,7 +95473,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSpawn___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -93350,7 +95481,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSpawn___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -93358,7 +95489,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSpawn___RemoveAll(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -93590,7 +95721,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffect___AddTail(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93599,7 +95730,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffect___Find(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93608,7 +95739,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffect___RemoveHead(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameEffect* returnVal = self->RemoveHead(); + CGameEffect* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffect"); return 1; } @@ -93617,7 +95748,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffect___RemoveAt(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -93625,7 +95756,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffect___Destruct(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -93633,7 +95764,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameEffect___RemoveAll(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -93865,7 +95996,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWeaponIdentification___AddTail { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93874,7 +96005,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWeaponIdentification___Find(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CWeaponIdentification*)tolua_tousertype_dynamic(L, 2, 0, "CWeaponIdentification"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -93883,7 +96014,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWeaponIdentification___RemoveH { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CWeaponIdentification* returnVal = self->RemoveHead(); + CWeaponIdentification* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CWeaponIdentification"); return 1; } @@ -93892,7 +96023,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWeaponIdentification___RemoveA { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -93900,7 +96031,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWeaponIdentification___Destruc { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -93908,7 +96039,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWeaponIdentification___RemoveA { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -94140,7 +96271,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveBonus___AddTail(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94149,7 +96280,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveBonus___Find(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSelectiveBonus*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveBonus"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94158,7 +96289,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveBonus___RemoveHead(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSelectiveBonus* returnVal = self->RemoveHead(); + CSelectiveBonus* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSelectiveBonus"); return 1; } @@ -94167,7 +96298,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveBonus___RemoveAt(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -94175,7 +96306,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveBonus___Destruct(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -94183,7 +96314,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveBonus___RemoveAll(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -94415,7 +96546,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemEquip___AddTail( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94424,7 +96555,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemEquip___Find(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CImmunitiesItemEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemEquip"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94433,7 +96564,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemEquip___RemoveHe { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CImmunitiesItemEquip* returnVal = self->RemoveHead(); + CImmunitiesItemEquip* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemEquip"); return 1; } @@ -94442,7 +96573,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemEquip___RemoveAt { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -94450,7 +96581,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemEquip___Destruct { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -94458,7 +96589,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemEquip___RemoveAl { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -94690,7 +96821,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemTypeEquip___AddT { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94699,7 +96830,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemTypeEquip___Find { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CImmunitiesItemTypeEquip*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitiesItemTypeEquip"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94708,7 +96839,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemTypeEquip___Remo { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CImmunitiesItemTypeEquip* returnVal = self->RemoveHead(); + CImmunitiesItemTypeEquip* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CImmunitiesItemTypeEquip"); return 1; } @@ -94717,7 +96848,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemTypeEquip___Remo { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -94725,7 +96856,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemTypeEquip___Dest { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -94733,7 +96864,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitiesItemTypeEquip___Remo { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -94965,7 +97096,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitySpell___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94974,7 +97105,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitySpell___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CImmunitySpell*)tolua_tousertype_dynamic(L, 2, 0, "CImmunitySpell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -94983,7 +97114,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitySpell___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CImmunitySpell* returnVal = self->RemoveHead(); + CImmunitySpell* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CImmunitySpell"); return 1; } @@ -94992,7 +97123,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitySpell___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -95000,7 +97131,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitySpell___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -95008,7 +97139,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CImmunitySpell___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -95240,7 +97371,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecrementing { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -95249,7 +97380,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecrementing { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSchoolAndSecondaryDecrementing*)tolua_tousertype_dynamic(L, 2, 0, "CSchoolAndSecondaryDecrementing"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -95258,7 +97389,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecrementing { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSchoolAndSecondaryDecrementing* returnVal = self->RemoveHead(); + CSchoolAndSecondaryDecrementing* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSchoolAndSecondaryDecrementing"); return 1; } @@ -95267,7 +97398,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecrementing { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -95275,7 +97406,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecrementing { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -95283,7 +97414,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSchoolAndSecondaryDecrementing { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -95515,7 +97646,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPersistantEffect___AddTail(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -95524,7 +97655,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPersistantEffect___Find(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CPersistantEffect*)tolua_tousertype_dynamic(L, 2, 0, "CPersistantEffect"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -95533,7 +97664,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPersistantEffect___RemoveHead( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CPersistantEffect* returnVal = self->RemoveHead(); + CPersistantEffect* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CPersistantEffect"); return 1; } @@ -95542,7 +97673,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPersistantEffect___RemoveAt(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -95550,7 +97681,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPersistantEffect___Destruct(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -95558,7 +97689,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CPersistantEffect___RemoveAll(l { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -95790,7 +97921,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorRange___AddTail(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -95799,7 +97930,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorRange___Find(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CColorRange*)tolua_tousertype_dynamic(L, 2, 0, "CColorRange"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -95808,7 +97939,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorRange___RemoveHead(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CColorRange* returnVal = self->RemoveHead(); + CColorRange* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CColorRange"); return 1; } @@ -95817,7 +97948,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorRange___RemoveAt(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -95825,7 +97956,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorRange___Destruct(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -95833,7 +97964,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorRange___RemoveAll(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -96065,7 +98196,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorEffect___AddTail(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96074,7 +98205,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorEffect___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CColorEffect*)tolua_tousertype_dynamic(L, 2, 0, "CColorEffect"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96083,7 +98214,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorEffect___RemoveHead(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CColorEffect* returnVal = self->RemoveHead(); + CColorEffect* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CColorEffect"); return 1; } @@ -96092,7 +98223,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorEffect___RemoveAt(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -96100,7 +98231,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorEffect___Destruct(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -96108,7 +98239,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CColorEffect___RemoveAll(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -96340,7 +98471,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveWeaponType___AddTail( { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96349,7 +98480,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveWeaponType___Find(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSelectiveWeaponType*)tolua_tousertype_dynamic(L, 2, 0, "CSelectiveWeaponType"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96358,7 +98489,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveWeaponType___RemoveHe { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSelectiveWeaponType* returnVal = self->RemoveHead(); + CSelectiveWeaponType* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSelectiveWeaponType"); return 1; } @@ -96367,7 +98498,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveWeaponType___RemoveAt { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -96375,7 +98506,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveWeaponType___Destruct { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -96383,7 +98514,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSelectiveWeaponType___RemoveAl { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -96615,7 +98746,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCriticalEntry___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96624,7 +98755,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCriticalEntry___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CCriticalEntry*)tolua_tousertype_dynamic(L, 2, 0, "CCriticalEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96633,7 +98764,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCriticalEntry___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CCriticalEntry* returnVal = self->RemoveHead(); + CCriticalEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CCriticalEntry"); return 1; } @@ -96642,7 +98773,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCriticalEntry___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -96650,7 +98781,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCriticalEntry___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -96658,7 +98789,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CCriticalEntry___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -96890,7 +99021,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameOptions___AddTail(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96899,7 +99030,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameOptions___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CGameOptions*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CGameOptions"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -96908,7 +99039,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameOptions___RemoveHead(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CGameOptions* returnVal = self->RemoveHead(); + CGameOptions* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CGameOptions"); return 1; } @@ -96917,7 +99048,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameOptions___RemoveAt(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -96925,7 +99056,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameOptions___Destruct(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -96933,7 +99064,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CGameOptions___RemoveAll(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -97165,7 +99296,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CString___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97174,7 +99305,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CString___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97183,7 +99314,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CString___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CString* returnVal = self->RemoveHead(); + CString* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -97192,7 +99323,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CString___RemoveAt(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -97200,7 +99331,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CString___Destruct(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -97208,7 +99339,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CString___RemoveAll(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -97440,7 +99571,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBounceEntry___AddTail(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97449,7 +99580,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBounceEntry___Find(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CBounceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CBounceEntry"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97458,7 +99589,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBounceEntry___RemoveHead(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CBounceEntry* returnVal = self->RemoveHead(); + CBounceEntry* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CBounceEntry"); return 1; } @@ -97467,7 +99598,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBounceEntry___RemoveAt(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -97475,7 +99606,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBounceEntry___Destruct(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -97483,7 +99614,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CBounceEntry___RemoveAll(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -97715,7 +99846,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSequenceSound___AddTail(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97724,7 +99855,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSequenceSound___Find(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSequenceSound*)tolua_tousertype_dynamic(L, 2, 0, "CSequenceSound"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97733,7 +99864,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSequenceSound___RemoveHead(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSequenceSound* returnVal = self->RemoveHead(); + CSequenceSound* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSequenceSound"); return 1; } @@ -97742,7 +99873,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSequenceSound___RemoveAt(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -97750,7 +99881,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSequenceSound___Destruct(lua_S { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -97758,7 +99889,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSequenceSound___RemoveAll(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -97990,7 +100121,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CButtonData___AddTail(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -97999,7 +100130,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CButtonData___Find(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98008,7 +100139,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CButtonData___RemoveHead(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CButtonData* returnVal = self->RemoveHead(); + CButtonData* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CButtonData"); return 1; } @@ -98017,7 +100148,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CButtonData___RemoveAt(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -98025,7 +100156,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CButtonData___Destruct(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -98033,7 +100164,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CButtonData___RemoveAll(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -98265,7 +100396,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CParticle___AddTail(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98274,7 +100405,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CParticle___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CParticle*)tolua_tousertype_dynamic(L, 2, 0, "CParticle"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98283,7 +100414,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CParticle___RemoveHead(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CParticle* returnVal = self->RemoveHead(); + CParticle* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CParticle"); return 1; } @@ -98292,7 +100423,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CParticle___RemoveAt(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -98300,7 +100431,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CParticle___Destruct(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -98308,7 +100439,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CParticle___RemoveAll(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -98540,7 +100671,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVidCell___AddTail(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98549,7 +100680,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVidCell___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CVidCell*)tolua_tousertype_dynamic(L, 2, 0, "CVidCell"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98558,7 +100689,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVidCell___RemoveHead(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CVidCell* returnVal = self->RemoveHead(); + CVidCell* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CVidCell"); return 1; } @@ -98567,7 +100698,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVidCell___RemoveAt(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -98575,7 +100706,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVidCell___Destruct(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -98583,7 +100714,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVidCell___RemoveAll(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -98815,7 +100946,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CProjectile___AddTail(lua_State { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98824,7 +100955,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CProjectile___Find(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CProjectile*)tolua_tousertype_dynamic(L, 2, 0, "CProjectile"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -98833,7 +100964,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CProjectile___RemoveHead(lua_St { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CProjectile* returnVal = self->RemoveHead(); + CProjectile* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CProjectile"); return 1; } @@ -98842,7 +100973,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CProjectile___RemoveAt(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -98850,7 +100981,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CProjectile___Destruct(lua_Stat { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -98858,7 +100989,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CProjectile___RemoveAll(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -99090,7 +101221,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWarp___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99099,7 +101230,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWarp___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99108,7 +101239,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWarp___RemoveHead(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CWarp* returnVal = self->RemoveHead(); + CWarp* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "EEex_CWarp"); return 1; } @@ -99117,7 +101248,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWarp___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -99125,7 +101256,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWarp___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -99133,7 +101264,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CWarp___RemoveAll(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -99365,7 +101496,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CScreenStoreItem___AddTail(lua_ { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99374,7 +101505,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CScreenStoreItem___Find(lua_Sta { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CScreenStoreItem*)tolua_tousertype_dynamic(L, 2, 0, "CScreenStoreItem"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99383,7 +101514,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CScreenStoreItem___RemoveHead(l { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CScreenStoreItem* returnVal = self->RemoveHead(); + CScreenStoreItem* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CScreenStoreItem"); return 1; } @@ -99392,7 +101523,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CScreenStoreItem___RemoveAt(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -99400,7 +101531,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CScreenStoreItem___Destruct(lua { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -99408,7 +101539,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CScreenStoreItem___RemoveAll(lu { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -99640,7 +101771,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSound___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99649,7 +101780,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSound___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CSound*)tolua_tousertype_dynamic(L, 2, 0, "CSound"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99658,7 +101789,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSound___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CSound* returnVal = self->RemoveHead(); + CSound* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CSound"); return 1; } @@ -99667,7 +101798,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSound___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -99675,7 +101806,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSound___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -99683,7 +101814,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CSound___RemoveAll(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -99915,7 +102046,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVoice___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99924,7 +102055,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVoice___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CVoice*)tolua_tousertype_dynamic(L, 2, 0, "CVoice"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -99933,7 +102064,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVoice___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CVoice* returnVal = self->RemoveHead(); + CVoice* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CVoice"); return 1; } @@ -99942,7 +102073,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVoice___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -99950,7 +102081,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVoice___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -99958,7 +102089,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CVoice___RemoveAll(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -100190,7 +102321,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTimer___AddTail(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CTypedPtrList::CNode* returnVal = self->AddTail((CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer")); + CTypedPtrList::CNode* returnVal = (self->AddTail)((CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -100199,7 +102330,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTimer___Find(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CTypedPtrList::CNode* returnVal = self->Find((CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); + CTypedPtrList::CNode* returnVal = (self->Find)((CTimer*)tolua_tousertype_dynamic(L, 2, 0, "CTimer"), (CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -100208,7 +102339,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTimer___RemoveHead(lua_State* { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CTimer* returnVal = self->RemoveHead(); + CTimer* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CTimer"); return 1; } @@ -100217,7 +102348,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTimer___RemoveAt(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); + (self->RemoveAt)((CTypedPtrList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList::CNode")); return 0; } @@ -100225,7 +102356,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTimer___Destruct(lua_State* L) { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -100233,7 +102364,7 @@ static int tolua_function_CTypedPtrList_CPtrList_CTimer___RemoveAll(lua_State* L { CTypedPtrList* self = (CTypedPtrList*)tolua_tousertype_dynamic(L, 1, 0, "CTypedPtrList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -101633,7 +103764,7 @@ static int tolua_function_CTimer_virtual_TimerElapsed(lua_State* L) { CTimer* self = (CTimer*)tolua_tousertype_dynamic(L, 1, 0, "CTimer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_TimerElapsed'", NULL); - self->virtual_TimerElapsed(); + (self->virtual_TimerElapsed)(); return 0; } @@ -102107,7 +104238,7 @@ static int tolua_function_CMessageHandler_AddMessage(lua_State* L) { CMessageHandler* self = (CMessageHandler*)tolua_tousertype_dynamic(L, 1, 0, "CMessageHandler"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddMessage'", NULL); - short returnVal = self->AddMessage((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage"), tolua_function_tointeger(L, 3, "AddMessage")); + short returnVal = (self->AddMessage)((CMessage*)tolua_tousertype_dynamic(L, 2, 0, "CMessage"), tolua_function_tointeger(L, 3, "AddMessage")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102124,7 +104255,7 @@ static int tolua_function_CAICondition_Hold(lua_State* L) { CAICondition* self = (CAICondition*)tolua_tousertype_dynamic(L, 1, 0, "CAICondition"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Hold'", NULL); - int returnVal = self->Hold((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList"), (CGameAIBase*)tolua_tousertype_dynamic(L, 3, 0, "CGameAIBase")); + int returnVal = (self->Hold)((CTypedPtrList*)tolua_tousertype_dynamic(L, 2, 0, "CTypedPtrList"), (CGameAIBase*)tolua_tousertype_dynamic(L, 3, 0, "CGameAIBase")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102133,7 +104264,7 @@ static int tolua_function_CAICondition_TriggerHolds(lua_State* L) { CAICondition* self = (CAICondition*)tolua_tousertype_dynamic(L, 1, 0, "CAICondition"); if (!self) tolua_error(L, "invalid 'self' in calling function 'TriggerHolds'", NULL); - int returnVal = self->TriggerHolds((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList"), (CGameAIBase*)tolua_tousertype_dynamic(L, 4, 0, "CGameAIBase")); + int returnVal = (self->TriggerHolds)((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList"), (CGameAIBase*)tolua_tousertype_dynamic(L, 4, 0, "CGameAIBase")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102374,7 +104505,7 @@ static int tolua_function_CImmunitiesAIType_OnList(lua_State* L) { CImmunitiesAIType* self = (CImmunitiesAIType*)tolua_tousertype_dynamic(L, 1, 0, "CImmunitiesAIType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'OnList'", NULL); - int returnVal = self->OnList((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + int returnVal = (self->OnList)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102543,7 +104674,7 @@ static int tolua_function_CWarp_virtual_InvalidateCursorRect(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_InvalidateCursorRect'", NULL); - self->virtual_InvalidateCursorRect((const CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); + (self->virtual_InvalidateCursorRect)((const CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); return 0; } @@ -102551,7 +104682,7 @@ static int tolua_function_CWarp_virtual_NormalizePanelRect(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_NormalizePanelRect'", NULL); - self->virtual_NormalizePanelRect(tolua_function_tointeger(L, 2, "virtual_NormalizePanelRect"), (CRect*)tolua_tousertype_dynamic(L, 3, 0, "CRect")); + (self->virtual_NormalizePanelRect)(tolua_function_tointeger(L, 2, "virtual_NormalizePanelRect"), (CRect*)tolua_tousertype_dynamic(L, 3, 0, "CRect")); return 0; } @@ -102559,7 +104690,7 @@ static int tolua_function_CWarp_virtual_RequestPause(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RequestPause'", NULL); - self->virtual_RequestPause(); + (self->virtual_RequestPause)(); return 0; } @@ -102567,7 +104698,7 @@ static int tolua_function_CWarp_virtual_EngineActivated(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EngineActivated'", NULL); - self->virtual_EngineActivated(); + (self->virtual_EngineActivated)(); return 0; } @@ -102575,7 +104706,7 @@ static int tolua_function_CWarp_virtual_EngineDeactivated(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EngineDeactivated'", NULL); - self->virtual_EngineDeactivated(); + (self->virtual_EngineDeactivated)(); return 0; } @@ -102583,7 +104714,7 @@ static int tolua_function_CWarp_virtual_EngineDestroyed(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EngineDestroyed'", NULL); - self->virtual_EngineDestroyed(); + (self->virtual_EngineDestroyed)(); return 0; } @@ -102591,7 +104722,7 @@ static int tolua_function_CWarp_virtual_EngineInitialized(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EngineInitialized'", NULL); - self->virtual_EngineInitialized(); + (self->virtual_EngineInitialized)(); return 0; } @@ -102599,7 +104730,7 @@ static int tolua_function_CWarp_virtual_EngineGameInit(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EngineGameInit'", NULL); - self->virtual_EngineGameInit(); + (self->virtual_EngineGameInit)(); return 0; } @@ -102607,7 +104738,7 @@ static int tolua_function_CWarp_virtual_EngineGameUninit(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EngineGameUninit'", NULL); - self->virtual_EngineGameUninit(); + (self->virtual_EngineGameUninit)(); return 0; } @@ -102615,7 +104746,7 @@ static int tolua_function_CWarp_virtual_SelectEngine(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SelectEngine'", NULL); - self->virtual_SelectEngine((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); + (self->virtual_SelectEngine)((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); return 0; } @@ -102623,7 +104754,7 @@ static int tolua_function_CWarp_virtual_OnEvent(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnEvent'", NULL); - bool returnVal = self->virtual_OnEvent((SDL_Event*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Event")); + bool returnVal = (self->virtual_OnEvent)((SDL_Event*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Event")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -102632,7 +104763,7 @@ static int tolua_function_CWarp_virtual_GetEngineState(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetEngineState'", NULL); - int returnVal = self->virtual_GetEngineState(); + int returnVal = (self->virtual_GetEngineState)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102641,7 +104772,7 @@ static int tolua_function_CWarp_virtual_CheckSystemKeyCtrl(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckSystemKeyCtrl'", NULL); - int returnVal = self->virtual_CheckSystemKeyCtrl(); + int returnVal = (self->virtual_CheckSystemKeyCtrl)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102650,7 +104781,7 @@ static int tolua_function_CWarp_virtual_SetSystemKeyCtrl(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSystemKeyCtrl'", NULL); - self->virtual_SetSystemKeyCtrl(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyCtrl")); + (self->virtual_SetSystemKeyCtrl)(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyCtrl")); return 0; } @@ -102658,7 +104789,7 @@ static int tolua_function_CWarp_virtual_GetCtrlKey(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCtrlKey'", NULL); - int returnVal = self->virtual_GetCtrlKey(); + int returnVal = (self->virtual_GetCtrlKey)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102667,7 +104798,7 @@ static int tolua_function_CWarp_virtual_CheckSystemKeyShift(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckSystemKeyShift'", NULL); - int returnVal = self->virtual_CheckSystemKeyShift(); + int returnVal = (self->virtual_CheckSystemKeyShift)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102676,7 +104807,7 @@ static int tolua_function_CWarp_virtual_SetSystemKeyShift(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSystemKeyShift'", NULL); - self->virtual_SetSystemKeyShift(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyShift")); + (self->virtual_SetSystemKeyShift)(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyShift")); return 0; } @@ -102684,7 +104815,7 @@ static int tolua_function_CWarp_virtual_GetShiftKey(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetShiftKey'", NULL); - int returnVal = self->virtual_GetShiftKey(); + int returnVal = (self->virtual_GetShiftKey)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102693,7 +104824,7 @@ static int tolua_function_CWarp_virtual_CheckSystemKeyMenu(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckSystemKeyMenu'", NULL); - int returnVal = self->virtual_CheckSystemKeyMenu(); + int returnVal = (self->virtual_CheckSystemKeyMenu)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102702,7 +104833,7 @@ static int tolua_function_CWarp_virtual_SetSystemKeyMenu(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSystemKeyMenu'", NULL); - self->virtual_SetSystemKeyMenu(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyMenu")); + (self->virtual_SetSystemKeyMenu)(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyMenu")); return 0; } @@ -102710,7 +104841,7 @@ static int tolua_function_CWarp_virtual_CheckSystemKeyCapsLock(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckSystemKeyCapsLock'", NULL); - int returnVal = self->virtual_CheckSystemKeyCapsLock(); + int returnVal = (self->virtual_CheckSystemKeyCapsLock)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102719,7 +104850,7 @@ static int tolua_function_CWarp_virtual_SetSystemKeyCapsLock(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSystemKeyCapsLock'", NULL); - self->virtual_SetSystemKeyCapsLock(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyCapsLock")); + (self->virtual_SetSystemKeyCapsLock)(tolua_function_tointeger(L, 2, "virtual_SetSystemKeyCapsLock")); return 0; } @@ -102727,7 +104858,7 @@ static int tolua_function_CWarp_virtual_GetCapsLockKey(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCapsLockKey'", NULL); - int returnVal = self->virtual_GetCapsLockKey(); + int returnVal = (self->virtual_GetCapsLockKey)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102736,7 +104867,7 @@ static int tolua_function_CWarp_virtual_GetMenuKey(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMenuKey'", NULL); - int returnVal = self->virtual_GetMenuKey(); + int returnVal = (self->virtual_GetMenuKey)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102745,7 +104876,7 @@ static int tolua_function_CWarp_virtual_CheckMouseMove(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckMouseMove'", NULL); - int returnVal = self->virtual_CheckMouseMove(); + int returnVal = (self->virtual_CheckMouseMove)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102754,7 +104885,7 @@ static int tolua_function_CWarp_virtual_OnMouseMove(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMouseMove'", NULL); - self->virtual_OnMouseMove(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnMouseMove)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102762,7 +104893,7 @@ static int tolua_function_CWarp_virtual_CheckMouseLButton(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckMouseLButton'", NULL); - int returnVal = self->virtual_CheckMouseLButton(); + int returnVal = (self->virtual_CheckMouseLButton)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102771,7 +104902,7 @@ static int tolua_function_CWarp_virtual_OnLButtonDblClk(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnLButtonDblClk'", NULL); - self->virtual_OnLButtonDblClk(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnLButtonDblClk)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102779,7 +104910,7 @@ static int tolua_function_CWarp_virtual_OnLButtonDown(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnLButtonDown'", NULL); - self->virtual_OnLButtonDown(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnLButtonDown)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102787,7 +104918,7 @@ static int tolua_function_CWarp_virtual_OnLButtonUp(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnLButtonUp'", NULL); - self->virtual_OnLButtonUp(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnLButtonUp)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102795,7 +104926,7 @@ static int tolua_function_CWarp_virtual_CheckMouseMButton(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckMouseMButton'", NULL); - int returnVal = self->virtual_CheckMouseMButton(); + int returnVal = (self->virtual_CheckMouseMButton)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102804,7 +104935,7 @@ static int tolua_function_CWarp_virtual_OnMButtonDblClk(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMButtonDblClk'", NULL); - self->virtual_OnMButtonDblClk(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnMButtonDblClk)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102812,7 +104943,7 @@ static int tolua_function_CWarp_virtual_OnMButtonDown(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMButtonDown'", NULL); - self->virtual_OnMButtonDown(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnMButtonDown)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102820,7 +104951,7 @@ static int tolua_function_CWarp_virtual_OnMButtonUp(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMButtonUp'", NULL); - self->virtual_OnMButtonUp(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnMButtonUp)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102828,7 +104959,7 @@ static int tolua_function_CWarp_virtual_CheckMouseRButton(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckMouseRButton'", NULL); - int returnVal = self->virtual_CheckMouseRButton(); + int returnVal = (self->virtual_CheckMouseRButton)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102837,7 +104968,7 @@ static int tolua_function_CWarp_virtual_OnRButtonDblClk(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnRButtonDblClk'", NULL); - self->virtual_OnRButtonDblClk(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnRButtonDblClk)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102845,7 +104976,7 @@ static int tolua_function_CWarp_virtual_OnRButtonDown(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnRButtonDown'", NULL); - self->virtual_OnRButtonDown(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnRButtonDown)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102853,7 +104984,7 @@ static int tolua_function_CWarp_virtual_OnRButtonUp(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnRButtonUp'", NULL); - self->virtual_OnRButtonUp(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnRButtonUp)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -102861,7 +104992,7 @@ static int tolua_function_CWarp_virtual_CheckMouseWheel(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckMouseWheel'", NULL); - int returnVal = self->virtual_CheckMouseWheel(); + int returnVal = (self->virtual_CheckMouseWheel)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102870,7 +105001,7 @@ static int tolua_function_CWarp_virtual_OnMouseWheel(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMouseWheel'", NULL); - self->virtual_OnMouseWheel(tolua_function_tointeger(L, 2, "virtual_OnMouseWheel"), tolua_function_tointeger(L, 3, "virtual_OnMouseWheel"), tolua_function_tointeger(L, 4, "virtual_OnMouseWheel"), tolua_function_tointeger(L, 5, "virtual_OnMouseWheel")); + (self->virtual_OnMouseWheel)(tolua_function_tointeger(L, 2, "virtual_OnMouseWheel"), tolua_function_tointeger(L, 3, "virtual_OnMouseWheel"), tolua_function_tointeger(L, 4, "virtual_OnMouseWheel"), tolua_function_tointeger(L, 5, "virtual_OnMouseWheel")); return 0; } @@ -102878,7 +105009,7 @@ static int tolua_function_CWarp_virtual_GetNumVirtualKeys(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNumVirtualKeys'", NULL); - __int16 returnVal = self->virtual_GetNumVirtualKeys(); + __int16 returnVal = (self->virtual_GetNumVirtualKeys)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -102887,7 +105018,7 @@ static int tolua_function_CWarp_virtual_GetVirtualKeys(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetVirtualKeys'", NULL); - CKeyInfo* returnVal = self->virtual_GetVirtualKeys(); + CKeyInfo* returnVal = (self->virtual_GetVirtualKeys)(); tolua_pushusertype(L, (void*)returnVal, "CKeyInfo"); return 1; } @@ -102896,7 +105027,7 @@ static int tolua_function_CWarp_virtual_GetVirtualKeysFlags(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetVirtualKeysFlags'", NULL); - int* returnVal = self->virtual_GetVirtualKeysFlags(); + int* returnVal = (self->virtual_GetVirtualKeysFlags)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -102905,7 +105036,7 @@ static int tolua_function_CWarp_virtual_OnKeyDown(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnKeyDown'", NULL); - self->virtual_OnKeyDown(tolua_function_tointeger(L, 2, "virtual_OnKeyDown")); + (self->virtual_OnKeyDown)(tolua_function_tointeger(L, 2, "virtual_OnKeyDown")); return 0; } @@ -102913,7 +105044,7 @@ static int tolua_function_CWarp_virtual_OnKeyUp(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnKeyUp'", NULL); - self->virtual_OnKeyUp(tolua_function_tointeger(L, 2, "virtual_OnKeyUp")); + (self->virtual_OnKeyUp)(tolua_function_tointeger(L, 2, "virtual_OnKeyUp")); return 0; } @@ -102921,7 +105052,7 @@ static int tolua_function_CWarp_virtual_OnTextInput(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnTextInput'", NULL); - self->virtual_OnTextInput(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + (self->virtual_OnTextInput)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); return 0; } @@ -102929,7 +105060,7 @@ static int tolua_function_CWarp_virtual_WindowResized(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_WindowResized'", NULL); - self->virtual_WindowResized(tolua_function_tointeger(L, 2, "virtual_WindowResized"), tolua_function_tointeger(L, 3, "virtual_WindowResized")); + (self->virtual_WindowResized)(tolua_function_tointeger(L, 2, "virtual_WindowResized"), tolua_function_tointeger(L, 3, "virtual_WindowResized")); return 0; } @@ -102937,7 +105068,7 @@ static int tolua_function_CWarp_virtual_OnLowMemory(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnLowMemory'", NULL); - self->virtual_OnLowMemory(); + (self->virtual_OnLowMemory)(); return 0; } @@ -102945,7 +105076,7 @@ static int tolua_function_CWarp_virtual_EnableEditKeys(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnableEditKeys'", NULL); - self->virtual_EnableEditKeys(tolua_function_tointeger<__int16>(L, 2, "virtual_EnableEditKeys")); + (self->virtual_EnableEditKeys)(tolua_function_tointeger<__int16>(L, 2, "virtual_EnableEditKeys")); return 0; } @@ -102953,7 +105084,7 @@ static int tolua_function_CWarp_virtual_DisableEditKeys(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DisableEditKeys'", NULL); - self->virtual_DisableEditKeys(); + (self->virtual_DisableEditKeys)(); return 0; } @@ -102961,7 +105092,7 @@ static int tolua_function_CWarp_virtual_ResetControls(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ResetControls'", NULL); - self->virtual_ResetControls(); + (self->virtual_ResetControls)(); return 0; } @@ -102969,7 +105100,7 @@ static int tolua_function_CWarp_virtual_TimerAsynchronousUpdate(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_TimerAsynchronousUpdate'", NULL); - self->virtual_TimerAsynchronousUpdate(); + (self->virtual_TimerAsynchronousUpdate)(); return 0; } @@ -102977,7 +105108,7 @@ static int tolua_function_CWarp_virtual_TimerSynchronousUpdate(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_TimerSynchronousUpdate'", NULL); - self->virtual_TimerSynchronousUpdate(); + (self->virtual_TimerSynchronousUpdate)(); return 0; } @@ -102985,7 +105116,7 @@ static int tolua_function_CWarp_virtual_TimerUpdate(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_TimerUpdate'", NULL); - self->virtual_TimerUpdate(); + (self->virtual_TimerUpdate)(); return 0; } @@ -102993,7 +105124,7 @@ static int tolua_function_CWarp_virtual_RenderUI(lua_State* L) { CWarp* self = (CWarp*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CWarp"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RenderUI'", NULL); - self->virtual_RenderUI(); + (self->virtual_RenderUI)(); return 0; } @@ -105087,7 +107218,7 @@ static int tolua_function_CObList_RemoveHead(lua_State* L) { CObList* self = (CObList*)tolua_tousertype_dynamic(L, 1, 0, "CObList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveHead'", NULL); - CObject* returnVal = self->RemoveHead(); + CObject* returnVal = (self->RemoveHead)(); tolua_pushusertype(L, (void*)returnVal, "CObject"); return 1; } @@ -105096,7 +107227,7 @@ static int tolua_function_CObList_RemoveAt(lua_State* L) { CObList* self = (CObList*)tolua_tousertype_dynamic(L, 1, 0, "CObList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAt'", NULL); - self->RemoveAt((CObList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CObList::CNode")); + (self->RemoveAt)((CObList::CNode*)tolua_tousertype_dynamic(L, 2, 0, "CObList::CNode")); return 0; } @@ -105104,7 +107235,7 @@ static int tolua_function_CObList_Destruct(lua_State* L) { CObList* self = (CObList*)tolua_tousertype_dynamic(L, 1, 0, "CObList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -105112,7 +107243,7 @@ static int tolua_function_CObList_AddTail(lua_State* L) { CObList* self = (CObList*)tolua_tousertype_dynamic(L, 1, 0, "CObList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddTail'", NULL); - CObList::CNode* returnVal = self->AddTail((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + CObList::CNode* returnVal = (self->AddTail)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); tolua_pushusertype(L, (void*)returnVal, "CObList::CNode"); return 1; } @@ -105121,7 +107252,7 @@ static int tolua_function_CObList_Find(lua_State* L) { CObList* self = (CObList*)tolua_tousertype_dynamic(L, 1, 0, "CObList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find'", NULL); - CObList::CNode* returnVal = self->Find((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (CObList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CObList::CNode")); + CObList::CNode* returnVal = (self->Find)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (CObList::CNode*)tolua_tousertype_dynamic(L, 3, 0, "CObList::CNode")); tolua_pushusertype(L, (void*)returnVal, "CObList::CNode"); return 1; } @@ -105130,7 +107261,7 @@ static int tolua_function_CObList_RemoveAll(lua_State* L) { CObList* self = (CObList*)tolua_tousertype_dynamic(L, 1, 0, "CObList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveAll'", NULL); - self->RemoveAll(); + (self->RemoveAll)(); return 0; } @@ -105258,7 +107389,7 @@ static int tolua_function_CMessage_virtual_Destruct(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -105266,7 +107397,7 @@ static int tolua_function_CMessage_virtual_GetCommType(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCommType'", NULL); - __int16 returnVal = self->virtual_GetCommType(); + __int16 returnVal = (self->virtual_GetCommType)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -105275,7 +107406,7 @@ static int tolua_function_CMessage_virtual_GetMsgType(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMsgType'", NULL); - unsigned __int8 returnVal = self->virtual_GetMsgType(); + unsigned __int8 returnVal = (self->virtual_GetMsgType)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -105284,7 +107415,7 @@ static int tolua_function_CMessage_virtual_GetMsgSubType(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMsgSubType'", NULL); - unsigned __int8 returnVal = self->virtual_GetMsgSubType(); + unsigned __int8 returnVal = (self->virtual_GetMsgSubType)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -105293,7 +107424,7 @@ static int tolua_function_CMessage_virtual_MarshalMessage(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_MarshalMessage'", NULL); - self->virtual_MarshalMessage((unsigned __int8**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + (self->virtual_MarshalMessage)((unsigned __int8**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); return 0; } @@ -105301,7 +107432,7 @@ static int tolua_function_CMessage_virtual_UnmarshalMessage(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UnmarshalMessage'", NULL); - int returnVal = self->virtual_UnmarshalMessage((unsigned __int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"), tolua_function_tointeger(L, 3, "virtual_UnmarshalMessage")); + int returnVal = (self->virtual_UnmarshalMessage)((unsigned __int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"), tolua_function_tointeger(L, 3, "virtual_UnmarshalMessage")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -105310,7 +107441,7 @@ static int tolua_function_CMessage_virtual_Run(lua_State* L) { CMessage* self = (CMessage*)tolua_tousertype_dynamic(L, 1, 0, "CMessage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Run'", NULL); - self->virtual_Run(); + (self->virtual_Run)(); return 0; } @@ -109244,7 +111375,7 @@ static int tolua_function_CMemINIValue_virtual_Destruct(lua_State* L) { CMemINIValue* self = (CMemINIValue*)tolua_tousertype_dynamic(L, 1, 0, "CMemINIValue"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -109486,7 +111617,7 @@ static int tolua_function_CFile_virtual_GetPosition(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPosition'", NULL); - unsigned int returnVal = self->virtual_GetPosition(); + unsigned int returnVal = (self->virtual_GetPosition)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109495,7 +111626,7 @@ static int tolua_function_CFile_virtual_GetFileName(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFileName'", NULL); - CString* returnVal = self->virtual_GetFileName(); + CString* returnVal = (self->virtual_GetFileName)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -109504,7 +111635,7 @@ static int tolua_function_CFile_virtual_GetFileTitle(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFileTitle'", NULL); - CString* returnVal = self->virtual_GetFileTitle(); + CString* returnVal = (self->virtual_GetFileTitle)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -109513,7 +111644,7 @@ static int tolua_function_CFile_virtual_GetFilePath(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFilePath'", NULL); - CString* returnVal = self->virtual_GetFilePath(); + CString* returnVal = (self->virtual_GetFilePath)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -109522,7 +111653,7 @@ static int tolua_function_CFile_virtual_SetFilePath(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetFilePath'", NULL); - self->virtual_SetFilePath(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); + (self->virtual_SetFilePath)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString")); return 0; } @@ -109530,7 +111661,7 @@ static int tolua_function_CFile_virtual_Open(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Open'", NULL); - int returnVal = self->virtual_Open(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_Open"), (CFileException*)tolua_tousertype_dynamic(L, 4, 0, "CFileException")); + int returnVal = (self->virtual_Open)(*(const char**)tolua_tousertype_dynamic(L, 2, 0, "ConstCharString"), tolua_function_tointeger(L, 3, "virtual_Open"), (CFileException*)tolua_tousertype_dynamic(L, 4, 0, "CFileException")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109539,7 +111670,7 @@ static int tolua_function_CFile_virtual_Seek(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Seek'", NULL); - int returnVal = self->virtual_Seek(tolua_function_tointeger(L, 2, "virtual_Seek"), tolua_function_tointeger(L, 3, "virtual_Seek")); + int returnVal = (self->virtual_Seek)(tolua_function_tointeger(L, 2, "virtual_Seek"), tolua_function_tointeger(L, 3, "virtual_Seek")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109548,7 +111679,7 @@ static int tolua_function_CFile_virtual_SetLength(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetLength'", NULL); - self->virtual_SetLength(tolua_function_tointeger(L, 2, "virtual_SetLength")); + (self->virtual_SetLength)(tolua_function_tointeger(L, 2, "virtual_SetLength")); return 0; } @@ -109556,7 +111687,7 @@ static int tolua_function_CFile_virtual_GetLength(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetLength'", NULL); - unsigned int returnVal = self->virtual_GetLength(); + unsigned int returnVal = (self->virtual_GetLength)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109565,7 +111696,7 @@ static int tolua_function_CFile_virtual_Read(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Read'", NULL); - unsigned int returnVal = self->virtual_Read((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "virtual_Read")); + unsigned int returnVal = (self->virtual_Read)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "virtual_Read")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109574,7 +111705,7 @@ static int tolua_function_CFile_virtual_Write(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Write'", NULL); - unsigned int returnVal = self->virtual_Write((const void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "virtual_Write")); + unsigned int returnVal = (self->virtual_Write)((const void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_tointeger(L, 3, "virtual_Write")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109583,7 +111714,7 @@ static int tolua_function_CFile_virtual_Abort(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Abort'", NULL); - self->virtual_Abort(); + (self->virtual_Abort)(); return 0; } @@ -109591,7 +111722,7 @@ static int tolua_function_CFile_virtual_Flush(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Flush'", NULL); - self->virtual_Flush(); + (self->virtual_Flush)(); return 0; } @@ -109599,7 +111730,7 @@ static int tolua_function_CFile_virtual_Close(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Close'", NULL); - self->virtual_Close(); + (self->virtual_Close)(); return 0; } @@ -109607,7 +111738,7 @@ static int tolua_function_CFile_virtual_GetBufferPtr(lua_State* L) { CFile* self = (CFile*)tolua_tousertype_dynamic(L, 1, 0, "CFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetBufferPtr'", NULL); - unsigned int returnVal = self->virtual_GetBufferPtr(tolua_function_tointeger(L, 2, "virtual_GetBufferPtr"), tolua_function_tointeger(L, 3, "virtual_GetBufferPtr"), (void**)tolua_tousertype_dynamic(L, 4, 0, "VoidPointer"), (void**)tolua_tousertype_dynamic(L, 5, 0, "VoidPointer")); + unsigned int returnVal = (self->virtual_GetBufferPtr)(tolua_function_tointeger(L, 2, "virtual_GetBufferPtr"), tolua_function_tointeger(L, 3, "virtual_GetBufferPtr"), (void**)tolua_tousertype_dynamic(L, 4, 0, "VoidPointer"), (void**)tolua_tousertype_dynamic(L, 5, 0, "VoidPointer")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -109886,7 +112017,7 @@ static int tolua_function_CContingencyList_ProcessTrigger(lua_State* L) { CContingencyList* self = (CContingencyList*)tolua_tousertype_dynamic(L, 1, 0, "CContingencyList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ProcessTrigger'", NULL); - self->ProcessTrigger((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), (CAITrigger*)tolua_tousertype_dynamic(L, 3, 0, "CAITrigger")); + (self->ProcessTrigger)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), (CAITrigger*)tolua_tousertype_dynamic(L, 3, 0, "CAITrigger")); return 0; } @@ -109894,7 +112025,7 @@ static int tolua_function_CContingencyList_Process(lua_State* L) { CContingencyList* self = (CContingencyList*)tolua_tousertype_dynamic(L, 1, 0, "CContingencyList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Process'", NULL); - self->Process((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->Process)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -109950,7 +112081,7 @@ static int tolua_function_CCallbackBase_virtual_Run(lua_State* L) { CCallbackBase* self = (CCallbackBase*)tolua_tousertype_dynamic(L, 1, 0, "CCallbackBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Run'", NULL); - self->virtual_Run((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_toboolean(L, 3, "virtual_Run"), tolua_function_tointeger(L, 4, "virtual_Run")); + (self->virtual_Run)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), tolua_function_toboolean(L, 3, "virtual_Run"), tolua_function_tointeger(L, 4, "virtual_Run")); return 0; } @@ -109958,7 +112089,7 @@ static int tolua_function_CCallbackBase_virtual_Run_2(lua_State* L) { CCallbackBase* self = (CCallbackBase*)tolua_tousertype_dynamic(L, 1, 0, "CCallbackBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Run_2'", NULL); - self->virtual_Run_2((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); + (self->virtual_Run_2)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType")); return 0; } @@ -109966,7 +112097,7 @@ static int tolua_function_CCallbackBase_virtual_GetCallbackSizeBytes(lua_State* { CCallbackBase* self = (CCallbackBase*)tolua_tousertype_dynamic(L, 1, 0, "CCallbackBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCallbackSizeBytes'", NULL); - int returnVal = self->virtual_GetCallbackSizeBytes(); + int returnVal = (self->virtual_GetCallbackSizeBytes)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -110077,7 +112208,7 @@ static int tolua_function_CCallResult_CSteam_CreateItemResult_t__m_Func(lua_Stat { CCallResult* self = (CCallResult*)tolua_tousertype_dynamic(L, 1, 0, "CCallResult"); if (!self) tolua_error(L, "invalid 'self' in calling function 'm_Func'", NULL); - self->m_Func((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (CreateItemResult_t*)tolua_tousertype_dynamic(L, 3, 0, "CreateItemResult_t"), tolua_function_toboolean(L, 4, "m_Func")); + (self->m_Func)((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (CreateItemResult_t*)tolua_tousertype_dynamic(L, 3, 0, "CreateItemResult_t"), tolua_function_toboolean(L, 4, "m_Func")); return 0; } @@ -110133,7 +112264,7 @@ static int tolua_function_CCallResult_CSteam_SteamUGCQueryCompleted_t__m_Func(lu { CCallResult* self = (CCallResult*)tolua_tousertype_dynamic(L, 1, 0, "CCallResult"); if (!self) tolua_error(L, "invalid 'self' in calling function 'm_Func'", NULL); - self->m_Func((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (SteamUGCQueryCompleted_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamUGCQueryCompleted_t"), tolua_function_toboolean(L, 4, "m_Func")); + (self->m_Func)((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (SteamUGCQueryCompleted_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamUGCQueryCompleted_t"), tolua_function_toboolean(L, 4, "m_Func")); return 0; } @@ -110189,7 +112320,7 @@ static int tolua_function_CCallResult_CSteam_SubmitItemUpdateResult_t__m_Func(lu { CCallResult* self = (CCallResult*)tolua_tousertype_dynamic(L, 1, 0, "CCallResult"); if (!self) tolua_error(L, "invalid 'self' in calling function 'm_Func'", NULL); - self->m_Func((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (SubmitItemUpdateResult_t*)tolua_tousertype_dynamic(L, 3, 0, "SubmitItemUpdateResult_t"), tolua_function_toboolean(L, 4, "m_Func")); + (self->m_Func)((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (SubmitItemUpdateResult_t*)tolua_tousertype_dynamic(L, 3, 0, "SubmitItemUpdateResult_t"), tolua_function_toboolean(L, 4, "m_Func")); return 0; } @@ -110245,7 +112376,7 @@ static int tolua_function_CCallResult_CSteam_SteamUGCRequestUGCDetailsResult_t__ { CCallResult* self = (CCallResult*)tolua_tousertype_dynamic(L, 1, 0, "CCallResult"); if (!self) tolua_error(L, "invalid 'self' in calling function 'm_Func'", NULL); - self->m_Func((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (SteamUGCRequestUGCDetailsResult_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamUGCRequestUGCDetailsResult_t"), tolua_function_toboolean(L, 4, "m_Func")); + (self->m_Func)((CSteam*)tolua_tousertype_dynamic(L, 2, 0, "CSteam"), (SteamUGCRequestUGCDetailsResult_t*)tolua_tousertype_dynamic(L, 3, 0, "SteamUGCRequestUGCDetailsResult_t"), tolua_function_toboolean(L, 4, "m_Func")); return 0; } @@ -110301,7 +112432,7 @@ static int tolua_function_CBaldurEngine_virtual_GetSelectedCharacter(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetSelectedCharacter'", NULL); - int returnVal = self->virtual_GetSelectedCharacter(tolua_function_tointeger(L, 2, "virtual_GetSelectedCharacter")); + int returnVal = (self->virtual_GetSelectedCharacter)(tolua_function_tointeger(L, 2, "virtual_GetSelectedCharacter")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -110310,7 +112441,7 @@ static int tolua_function_CBaldurEngine_virtual_GetPickedCharacter(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPickedCharacter'", NULL); - int returnVal = self->virtual_GetPickedCharacter(); + int returnVal = (self->virtual_GetPickedCharacter)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -110319,7 +112450,7 @@ static int tolua_function_CBaldurEngine_virtual_SetSelectedCharacter(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSelectedCharacter'", NULL); - self->virtual_SetSelectedCharacter(tolua_function_tointeger(L, 2, "virtual_SetSelectedCharacter")); + (self->virtual_SetSelectedCharacter)(tolua_function_tointeger(L, 2, "virtual_SetSelectedCharacter")); return 0; } @@ -110327,7 +112458,7 @@ static int tolua_function_CBaldurEngine_virtual_SetPickedCharacter(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetPickedCharacter'", NULL); - self->virtual_SetPickedCharacter(tolua_function_tointeger(L, 2, "virtual_SetPickedCharacter")); + (self->virtual_SetPickedCharacter)(tolua_function_tointeger(L, 2, "virtual_SetPickedCharacter")); return 0; } @@ -110335,7 +112466,7 @@ static int tolua_function_CBaldurEngine_virtual_OnPortraitLClick(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnPortraitLClick'", NULL); - self->virtual_OnPortraitLClick(tolua_function_tointeger(L, 2, "virtual_OnPortraitLClick")); + (self->virtual_OnPortraitLClick)(tolua_function_tointeger(L, 2, "virtual_OnPortraitLClick")); return 0; } @@ -110343,7 +112474,7 @@ static int tolua_function_CBaldurEngine_virtual_OnPortraitLDblClick(lua_State* L { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnPortraitLDblClick'", NULL); - self->virtual_OnPortraitLDblClick(tolua_function_tointeger(L, 2, "virtual_OnPortraitLDblClick")); + (self->virtual_OnPortraitLDblClick)(tolua_function_tointeger(L, 2, "virtual_OnPortraitLDblClick")); return 0; } @@ -110351,7 +112482,7 @@ static int tolua_function_CBaldurEngine_virtual_UpdateContainerStatus(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateContainerStatus'", NULL); - self->virtual_UpdateContainerStatus(tolua_function_tointeger(L, 2, "virtual_UpdateContainerStatus"), tolua_function_tointeger<__int16>(L, 3, "virtual_UpdateContainerStatus")); + (self->virtual_UpdateContainerStatus)(tolua_function_tointeger(L, 2, "virtual_UpdateContainerStatus"), tolua_function_tointeger<__int16>(L, 3, "virtual_UpdateContainerStatus")); return 0; } @@ -110359,7 +112490,7 @@ static int tolua_function_CBaldurEngine_virtual_UpdatePersonalItemStatus(lua_Sta { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePersonalItemStatus'", NULL); - self->virtual_UpdatePersonalItemStatus(tolua_function_tointeger(L, 2, "virtual_UpdatePersonalItemStatus")); + (self->virtual_UpdatePersonalItemStatus)(tolua_function_tointeger(L, 2, "virtual_UpdatePersonalItemStatus")); return 0; } @@ -110367,7 +112498,7 @@ static int tolua_function_CBaldurEngine_virtual_OnRestButtonClick(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnRestButtonClick'", NULL); - self->virtual_OnRestButtonClick(); + (self->virtual_OnRestButtonClick)(); return 0; } @@ -110375,7 +112506,7 @@ static int tolua_function_CBaldurEngine_virtual_UpdateGroundItems(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateGroundItems'", NULL); - self->virtual_UpdateGroundItems(); + (self->virtual_UpdateGroundItems)(); return 0; } @@ -110383,7 +112514,7 @@ static int tolua_function_CBaldurEngine_virtual_UpdateCursorShape(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateCursorShape'", NULL); - self->virtual_UpdateCursorShape(tolua_function_tointeger(L, 2, "virtual_UpdateCursorShape")); + (self->virtual_UpdateCursorShape)(tolua_function_tointeger(L, 2, "virtual_UpdateCursorShape")); return 0; } @@ -110391,7 +112522,7 @@ static int tolua_function_CBaldurEngine_virtual_CheckEnablePortraits(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckEnablePortraits'", NULL); - self->virtual_CheckEnablePortraits(tolua_function_tointeger(L, 2, "virtual_CheckEnablePortraits")); + (self->virtual_CheckEnablePortraits)(tolua_function_tointeger(L, 2, "virtual_CheckEnablePortraits")); return 0; } @@ -110399,7 +112530,7 @@ static int tolua_function_CBaldurEngine_virtual_CheckEnableLeftPanel(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckEnableLeftPanel'", NULL); - self->virtual_CheckEnableLeftPanel(); + (self->virtual_CheckEnableLeftPanel)(); return 0; } @@ -110407,7 +112538,7 @@ static int tolua_function_CBaldurEngine_virtual_EnablePortrait(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EnablePortrait'", NULL); - self->virtual_EnablePortrait(tolua_function_tointeger(L, 2, "virtual_EnablePortrait"), tolua_function_tointeger(L, 3, "virtual_EnablePortrait"), tolua_function_tointeger(L, 4, "virtual_EnablePortrait")); + (self->virtual_EnablePortrait)(tolua_function_tointeger(L, 2, "virtual_EnablePortrait"), tolua_function_tointeger(L, 3, "virtual_EnablePortrait"), tolua_function_tointeger(L, 4, "virtual_EnablePortrait")); return 0; } @@ -110415,7 +112546,7 @@ static int tolua_function_CBaldurEngine_virtual_CancelEngine(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CancelEngine'", NULL); - self->virtual_CancelEngine(); + (self->virtual_CancelEngine)(); return 0; } @@ -110423,7 +112554,7 @@ static int tolua_function_CBaldurEngine_virtual_UpdateCharacterStatus(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateCharacterStatus'", NULL); - self->virtual_UpdateCharacterStatus(tolua_function_tointeger(L, 2, "virtual_UpdateCharacterStatus")); + (self->virtual_UpdateCharacterStatus)(tolua_function_tointeger(L, 2, "virtual_UpdateCharacterStatus")); return 0; } @@ -110431,7 +112562,7 @@ static int tolua_function_CBaldurEngine_virtual_UpdatePartyGoldStatus(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdatePartyGoldStatus'", NULL); - self->virtual_UpdatePartyGoldStatus(); + (self->virtual_UpdatePartyGoldStatus)(); return 0; } @@ -110439,7 +112570,7 @@ static int tolua_function_CBaldurEngine_virtual_GetChatEditBoxStatus(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetChatEditBoxStatus'", NULL); - self->virtual_GetChatEditBoxStatus((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + (self->virtual_GetChatEditBoxStatus)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); return 0; } @@ -110447,7 +112578,7 @@ static int tolua_function_CBaldurEngine_virtual_SetChatEditBoxStatus(lua_State* { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetChatEditBoxStatus'", NULL); - self->virtual_SetChatEditBoxStatus((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), tolua_function_tointeger(L, 3, "virtual_SetChatEditBoxStatus")); + (self->virtual_SetChatEditBoxStatus)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), tolua_function_tointeger(L, 3, "virtual_SetChatEditBoxStatus")); return 0; } @@ -110455,7 +112586,7 @@ static int tolua_function_CBaldurEngine_virtual_StopMusic(lua_State* L) { CBaldurEngine* self = (CBaldurEngine*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurEngine"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StopMusic'", NULL); - int returnVal = self->virtual_StopMusic(); + int returnVal = (self->virtual_StopMusic)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -110880,7 +113011,7 @@ static int tolua_function_CAIGroup_Override_GroupSetTarget(lua_State* L) { CAIGroup* self = (CAIGroup*)tolua_tousertype_dynamic(L, 1, 0, "CAIGroup"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Override_GroupSetTarget'", NULL); - self->Override_GroupSetTarget(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "Override_GroupSetTarget"), tolua_function_tointeger(L, 4, "Override_GroupSetTarget"), *(CPoint*)tolua_tousertype_dynamic(L, 5, 0, "CPoint")); + (self->Override_GroupSetTarget)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "Override_GroupSetTarget"), tolua_function_tointeger(L, 4, "Override_GroupSetTarget"), *(CPoint*)tolua_tousertype_dynamic(L, 5, 0, "CPoint")); return 0; } @@ -110888,7 +113019,7 @@ static int tolua_function_CAIGroup_FollowLeader(lua_State* L) { CAIGroup* self = (CAIGroup*)tolua_tousertype_dynamic(L, 1, 0, "CAIGroup"); if (!self) tolua_error(L, "invalid 'self' in calling function 'FollowLeader'", NULL); - self->FollowLeader(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "FollowLeader")); + (self->FollowLeader)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "FollowLeader")); return 0; } @@ -110896,7 +113027,7 @@ static int tolua_function_CAIGroup_RemoveFromSearch(lua_State* L) { CAIGroup* self = (CAIGroup*)tolua_tousertype_dynamic(L, 1, 0, "CAIGroup"); if (!self) tolua_error(L, "invalid 'self' in calling function 'RemoveFromSearch'", NULL); - self->RemoveFromSearch((CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); + (self->RemoveFromSearch)((CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); return 0; } @@ -110904,7 +113035,7 @@ static int tolua_function_CAIGroup_AddToSearch(lua_State* L) { CAIGroup* self = (CAIGroup*)tolua_tousertype_dynamic(L, 1, 0, "CAIGroup"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddToSearch'", NULL); - self->AddToSearch((CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); + (self->AddToSearch)((CSearchBitmap*)tolua_tousertype_dynamic(L, 2, 0, "CSearchBitmap")); return 0; } @@ -110912,7 +113043,7 @@ static int tolua_function_CAIGroup_GetFacings(lua_State* L) { CAIGroup* self = (CAIGroup*)tolua_tousertype_dynamic(L, 1, 0, "CAIGroup"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetFacings'", NULL); - short* returnVal = self->GetFacings(tolua_function_tointeger(L, 2, "GetFacings"), tolua_function_tointeger(L, 3, "GetFacings")); + short* returnVal = (self->GetFacings)(tolua_function_tointeger(L, 2, "GetFacings"), tolua_function_tointeger(L, 3, "GetFacings")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -110921,7 +113052,7 @@ static int tolua_function_CAIGroup_GetOffsets(lua_State* L) { CAIGroup* self = (CAIGroup*)tolua_tousertype_dynamic(L, 1, 0, "CAIGroup"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetOffsets'", NULL); - CPoint* returnVal = self->GetOffsets(tolua_function_tointeger(L, 2, "GetOffsets"), tolua_function_tointeger(L, 3, "GetOffsets"), tolua_function_tointeger(L, 4, "GetOffsets")); + CPoint* returnVal = (self->GetOffsets)(tolua_function_tointeger(L, 2, "GetOffsets"), tolua_function_tointeger(L, 3, "GetOffsets"), tolua_function_tointeger(L, 4, "GetOffsets")); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -110930,7 +113061,7 @@ static int tolua_function_Array_keyword_124__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - keyword* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + keyword* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "keyword"); return 1; } @@ -110939,7 +113070,7 @@ static int tolua_function_Array_keyword_124__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(keyword*)tolua_tousertype_dynamic(L, 3, 0, "keyword")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(keyword*)tolua_tousertype_dynamic(L, 3, 0, "keyword")); return 0; } @@ -110947,7 +113078,7 @@ static int tolua_function_Array_uiMenu_256__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - uiMenu* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + uiMenu* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "uiMenu"); return 1; } @@ -110956,7 +113087,7 @@ static int tolua_function_Array_uiMenu_256__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(uiMenu*)tolua_tousertype_dynamic(L, 3, 0, "uiMenu")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(uiMenu*)tolua_tousertype_dynamic(L, 3, 0, "uiMenu")); return 0; } @@ -110964,7 +113095,7 @@ static int tolua_function_Array_uiMenu__256__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - uiMenu* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + uiMenu* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "uiMenu"); return 1; } @@ -110973,7 +113104,7 @@ static int tolua_function_Array_uiMenu__256__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - uiMenu** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + uiMenu** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -110982,7 +113113,7 @@ static int tolua_function_Array_uiMenu__256__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (uiMenu*)tolua_tousertype_dynamic(L, 3, 0, "uiMenu")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (uiMenu*)tolua_tousertype_dynamic(L, 3, 0, "uiMenu")); return 0; } @@ -110990,7 +113121,7 @@ static int tolua_function_Array_letter_t_262144__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - letter_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + letter_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "letter_t"); return 1; } @@ -110999,7 +113130,7 @@ static int tolua_function_Array_letter_t_262144__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(letter_t*)tolua_tousertype_dynamic(L, 3, 0, "letter_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(letter_t*)tolua_tousertype_dynamic(L, 3, 0, "letter_t")); return 0; } @@ -111007,7 +113138,7 @@ static int tolua_function_Array_char_16__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -111016,7 +113147,7 @@ static int tolua_function_Array_char_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -111024,7 +113155,7 @@ static int tolua_function_Array_slicedRect_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - slicedRect* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + slicedRect* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "slicedRect"); return 1; } @@ -111033,7 +113164,7 @@ static int tolua_function_Array_slicedRect_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(slicedRect*)tolua_tousertype_dynamic(L, 3, 0, "slicedRect")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(slicedRect*)tolua_tousertype_dynamic(L, 3, 0, "slicedRect")); return 0; } @@ -111041,7 +113172,7 @@ static int tolua_function_Array_unsigned___int8_8__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111050,7 +113181,7 @@ static int tolua_function_Array_unsigned___int8_8__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111059,7 +113190,7 @@ static int tolua_function_Array_unsigned___int8_8__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111067,7 +113198,7 @@ static int tolua_function_Array_unsigned___int8_5__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111076,7 +113207,7 @@ static int tolua_function_Array_unsigned___int8_5__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111085,7 +113216,7 @@ static int tolua_function_Array_unsigned___int8_5__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111093,7 +113224,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileKnownSpell__ { Array,7>* self = (Array,7>*)tolua_tousertype_dynamic(L, 1, 0, "Array,7>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111102,7 +113233,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileKnownSpell__ { Array,7>* self = (Array,7>*)tolua_tousertype_dynamic(L, 1, 0, "Array,7>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111110,7 +113241,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileKnownSpell__ { Array,9>* self = (Array,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111119,7 +113250,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileKnownSpell__ { Array,9>* self = (Array,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111127,7 +113258,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileKnownSpell__ { Array,1>* self = (Array,1>*)tolua_tousertype_dynamic(L, 1, 0, "Array,1>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111136,7 +113267,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileKnownSpell__ { Array,1>* self = (Array,1>*)tolua_tousertype_dynamic(L, 1, 0, "Array,1>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111144,7 +113275,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__7__get(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CCreatureFileMemorizedSpellLevel* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CCreatureFileMemorizedSpellLevel* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpellLevel"); return 1; } @@ -111153,7 +113284,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__7__getReferenc { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpellLevel** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileMemorizedSpellLevel** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -111162,7 +113293,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__7__set(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -111170,7 +113301,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__9__get(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CCreatureFileMemorizedSpellLevel* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CCreatureFileMemorizedSpellLevel* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpellLevel"); return 1; } @@ -111179,7 +113310,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__9__getReferenc { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpellLevel** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileMemorizedSpellLevel** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -111188,7 +113319,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__9__set(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -111196,7 +113327,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__1__get(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CCreatureFileMemorizedSpellLevel* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CCreatureFileMemorizedSpellLevel* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpellLevel"); return 1; } @@ -111205,7 +113336,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__1__getReferenc { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpellLevel** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileMemorizedSpellLevel** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -111214,7 +113345,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel__1__set(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -111222,7 +113353,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpe { Array,7>* self = (Array,7>*)tolua_tousertype_dynamic(L, 1, 0, "Array,7>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111231,7 +113362,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpe { Array,7>* self = (Array,7>*)tolua_tousertype_dynamic(L, 1, 0, "Array,7>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111239,7 +113370,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpe { Array,9>* self = (Array,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111248,7 +113379,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpe { Array,9>* self = (Array,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111256,7 +113387,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpe { Array,1>* self = (Array,1>*)tolua_tousertype_dynamic(L, 1, 0, "Array,1>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111265,7 +113396,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CCreatureFileMemorizedSpe { Array,1>* self = (Array,1>*)tolua_tousertype_dynamic(L, 1, 0, "Array,1>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111273,7 +113404,7 @@ static int tolua_function_Array_CSound_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSound* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSound* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSound"); return 1; } @@ -111282,7 +113413,7 @@ static int tolua_function_Array_CSound_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSound*)tolua_tousertype_dynamic(L, 3, 0, "CSound")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSound*)tolua_tousertype_dynamic(L, 3, 0, "CSound")); return 0; } @@ -111290,7 +113421,7 @@ static int tolua_function_Array_int_24__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111299,7 +113430,7 @@ static int tolua_function_Array_int_24__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111308,7 +113439,7 @@ static int tolua_function_Array_int_24__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111316,7 +113447,7 @@ static int tolua_function_Array_unsigned___int8_16__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111325,7 +113456,7 @@ static int tolua_function_Array_unsigned___int8_16__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111334,7 +113465,7 @@ static int tolua_function_Array_unsigned___int8_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111342,7 +113473,7 @@ static int tolua_function_Array___int16_40__get(lua_State* L) { Array<__int16,40>* self = (Array<__int16,40>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,40>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111351,7 +113482,7 @@ static int tolua_function_Array___int16_40__getReference(lua_State* L) { Array<__int16,40>* self = (Array<__int16,40>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,40>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -111360,7 +113491,7 @@ static int tolua_function_Array___int16_40__set(lua_State* L) { Array<__int16,40>* self = (Array<__int16,40>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,40>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -111368,7 +113499,7 @@ static int tolua_function_Array_int_3__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111377,7 +113508,7 @@ static int tolua_function_Array_int_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111386,7 +113517,7 @@ static int tolua_function_Array_int_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111394,7 +113525,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel_9__getReference { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpellLevel* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileMemorizedSpellLevel* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpellLevel"); return 1; } @@ -111403,7 +113534,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel_9__set(lua_Stat { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -111411,7 +113542,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel_7__getReference { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CCreatureFileMemorizedSpellLevel* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CCreatureFileMemorizedSpellLevel* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileMemorizedSpellLevel"); return 1; } @@ -111420,7 +113551,7 @@ static int tolua_function_Array_CCreatureFileMemorizedSpellLevel_7__set(lua_Stat { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CCreatureFileMemorizedSpellLevel*)tolua_tousertype_dynamic(L, 3, 0, "CCreatureFileMemorizedSpellLevel")); return 0; } @@ -111428,7 +113559,7 @@ static int tolua_function_Array_unsigned___int8_10__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111437,7 +113568,7 @@ static int tolua_function_Array_unsigned___int8_10__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111446,7 +113577,7 @@ static int tolua_function_Array_unsigned___int8_10__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111454,7 +113585,7 @@ static int tolua_function_Array_CInfButtonSettings_12__getReference(lua_State* L { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CInfButtonSettings* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CInfButtonSettings* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CInfButtonSettings"); return 1; } @@ -111463,7 +113594,7 @@ static int tolua_function_Array_CInfButtonSettings_12__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CInfButtonSettings*)tolua_tousertype_dynamic(L, 3, 0, "CInfButtonSettings")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CInfButtonSettings*)tolua_tousertype_dynamic(L, 3, 0, "CInfButtonSettings")); return 0; } @@ -111471,7 +113602,7 @@ static int tolua_function_Array_int_12__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111480,7 +113611,7 @@ static int tolua_function_Array_int_12__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111489,7 +113620,7 @@ static int tolua_function_Array_int_12__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111497,7 +113628,7 @@ static int tolua_function_Array_CGameArea__12__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CGameArea* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CGameArea* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CGameArea"); return 1; } @@ -111506,7 +113637,7 @@ static int tolua_function_Array_CGameArea__12__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameArea** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameArea** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -111515,7 +113646,7 @@ static int tolua_function_Array_CGameArea__12__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CGameArea*)tolua_tousertype_dynamic(L, 3, 0, "CGameArea")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CGameArea*)tolua_tousertype_dynamic(L, 3, 0, "CGameArea")); return 0; } @@ -111523,7 +113654,7 @@ static int tolua_function_Array_int_6__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111532,7 +113663,7 @@ static int tolua_function_Array_int_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111541,7 +113672,7 @@ static int tolua_function_Array_int_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111549,7 +113680,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CResRef___9__getReference { Array,9>* self = (Array,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CTypedPtrList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CTypedPtrList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList"); return 1; } @@ -111558,7 +113689,7 @@ static int tolua_function_Array_CTypedPtrList_CPtrList_CResRef___9__set(lua_Stat { Array,9>* self = (Array,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CTypedPtrList*)tolua_tousertype_dynamic(L, 3, 0, "CTypedPtrList")); return 0; } @@ -111566,7 +113697,7 @@ static int tolua_function_Array_Array_CTypedPtrList_CPtrList_CResRef___9__9__get { Array,9>,9>* self = (Array,9>,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Array,9>* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Array,9>* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Array,9>"); return 1; } @@ -111575,7 +113706,7 @@ static int tolua_function_Array_Array_CTypedPtrList_CPtrList_CResRef___9__9__set { Array,9>,9>* self = (Array,9>,9>*)tolua_tousertype_dynamic(L, 1, 0, "Array,9>,9>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(Array,9>*)tolua_tousertype_dynamic(L, 3, 0, "Array,9>")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(Array,9>*)tolua_tousertype_dynamic(L, 3, 0, "Array,9>")); return 0; } @@ -111583,7 +113714,7 @@ static int tolua_function_Array_int_600__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111592,7 +113723,7 @@ static int tolua_function_Array_int_600__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111601,7 +113732,7 @@ static int tolua_function_Array_int_600__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111609,7 +113740,7 @@ static int tolua_function_Array_CStore__12__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CStore* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CStore* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CStore"); return 1; } @@ -111618,7 +113749,7 @@ static int tolua_function_Array_CStore__12__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CStore** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CStore** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -111627,7 +113758,7 @@ static int tolua_function_Array_CStore__12__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CStore*)tolua_tousertype_dynamic(L, 3, 0, "CStore")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CStore*)tolua_tousertype_dynamic(L, 3, 0, "CStore")); return 0; } @@ -111635,7 +113766,7 @@ static int tolua_function_Array_unsigned___int8_12__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111644,7 +113775,7 @@ static int tolua_function_Array_unsigned___int8_12__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111653,7 +113784,7 @@ static int tolua_function_Array_unsigned___int8_12__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111661,7 +113792,7 @@ static int tolua_function_Array_unsigned___int8_7__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111670,7 +113801,7 @@ static int tolua_function_Array_unsigned___int8_7__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111679,7 +113810,7 @@ static int tolua_function_Array_unsigned___int8_7__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111687,7 +113818,7 @@ static int tolua_function_Array_CInfTileSet__5__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CInfTileSet* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CInfTileSet* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CInfTileSet"); return 1; } @@ -111696,7 +113827,7 @@ static int tolua_function_Array_CInfTileSet__5__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CInfTileSet** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CInfTileSet** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -111705,7 +113836,7 @@ static int tolua_function_Array_CInfTileSet__5__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CInfTileSet*)tolua_tousertype_dynamic(L, 3, 0, "CInfTileSet")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CInfTileSet*)tolua_tousertype_dynamic(L, 3, 0, "CInfTileSet")); return 0; } @@ -111713,7 +113844,7 @@ static int tolua_function_Array_byte_16__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111722,7 +113853,7 @@ static int tolua_function_Array_byte_16__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + byte* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111731,7 +113862,7 @@ static int tolua_function_Array_byte_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111739,7 +113870,7 @@ static int tolua_function_Array_byte_7__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111748,7 +113879,7 @@ static int tolua_function_Array_byte_7__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + byte* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111757,7 +113888,7 @@ static int tolua_function_Array_byte_7__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111765,7 +113896,7 @@ static int tolua_function_Array_uint_256__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - uint returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + uint returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111774,7 +113905,7 @@ static int tolua_function_Array_uint_256__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - uint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + uint* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111783,7 +113914,7 @@ static int tolua_function_Array_uint_256__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111791,7 +113922,7 @@ static int tolua_function_Array_byte_8__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - byte returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + byte returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111800,7 +113931,7 @@ static int tolua_function_Array_byte_8__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - byte* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + byte* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111809,7 +113940,7 @@ static int tolua_function_Array_byte_8__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111817,7 +113948,7 @@ static int tolua_function_Array_int_15__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111826,7 +113957,7 @@ static int tolua_function_Array_int_15__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111835,7 +113966,7 @@ static int tolua_function_Array_int_15__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111843,7 +113974,7 @@ static int tolua_function_Array_int_16__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111852,7 +113983,7 @@ static int tolua_function_Array_int_16__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111861,7 +113992,7 @@ static int tolua_function_Array_int_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111869,7 +114000,7 @@ static int tolua_function_Array_unsigned_int_8__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111878,7 +114009,7 @@ static int tolua_function_Array_unsigned_int_8__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111887,7 +114018,7 @@ static int tolua_function_Array_unsigned_int_8__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111895,7 +114026,7 @@ static int tolua_function_Array_CString_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CString* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CString* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -111904,7 +114035,7 @@ static int tolua_function_Array_CString_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); return 0; } @@ -111912,7 +114043,7 @@ static int tolua_function_Array_DP_ProviderID_4__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - DP_ProviderID returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + DP_ProviderID returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111921,7 +114052,7 @@ static int tolua_function_Array_DP_ProviderID_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - DP_ProviderID* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + DP_ProviderID* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -111930,7 +114061,7 @@ static int tolua_function_Array_DP_ProviderID_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (DP_ProviderID)tolua_function_tointeger<__int32>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (DP_ProviderID)tolua_function_tointeger<__int32>(L, 3, "set")); return 0; } @@ -111938,7 +114069,7 @@ static int tolua_function_Array_CString_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CString* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CString* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -111947,7 +114078,7 @@ static int tolua_function_Array_CString_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); return 0; } @@ -111955,7 +114086,7 @@ static int tolua_function_Array_unsigned___int8_6__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -111964,7 +114095,7 @@ static int tolua_function_Array_unsigned___int8_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -111973,7 +114104,7 @@ static int tolua_function_Array_unsigned___int8_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -111981,7 +114112,7 @@ static int tolua_function_Array_CNetworkWindow_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CNetworkWindow* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CNetworkWindow* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CNetworkWindow"); return 1; } @@ -111990,7 +114121,7 @@ static int tolua_function_Array_CNetworkWindow_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CNetworkWindow*)tolua_tousertype_dynamic(L, 3, 0, "CNetworkWindow")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CNetworkWindow*)tolua_tousertype_dynamic(L, 3, 0, "CNetworkWindow")); return 0; } @@ -111998,7 +114129,7 @@ static int tolua_function_Array_unsigned_int_256__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112007,7 +114138,7 @@ static int tolua_function_Array_unsigned_int_256__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112016,7 +114147,7 @@ static int tolua_function_Array_unsigned_int_256__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112024,7 +114155,7 @@ static int tolua_function_Array_unsigned_int_6__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112033,7 +114164,7 @@ static int tolua_function_Array_unsigned_int_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112042,7 +114173,7 @@ static int tolua_function_Array_unsigned_int_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112050,7 +114181,7 @@ static int tolua_function_Array_C2DArray__256__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - C2DArray* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + C2DArray* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "C2DArray"); return 1; } @@ -112059,7 +114190,7 @@ static int tolua_function_Array_C2DArray__256__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - C2DArray** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + C2DArray** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112068,7 +114199,7 @@ static int tolua_function_Array_C2DArray__256__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (C2DArray*)tolua_tousertype_dynamic(L, 3, 0, "C2DArray")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (C2DArray*)tolua_tousertype_dynamic(L, 3, 0, "C2DArray")); return 0; } @@ -112076,7 +114207,7 @@ static int tolua_function_Array_CResRef_16__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -112085,7 +114216,7 @@ static int tolua_function_Array_CResRef_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); return 0; } @@ -112093,7 +114224,7 @@ static int tolua_function_Array_unsigned_int_16__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112102,7 +114233,7 @@ static int tolua_function_Array_unsigned_int_16__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112111,7 +114242,7 @@ static int tolua_function_Array_unsigned_int_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112119,7 +114250,7 @@ static int tolua_function_Array_int_56__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112128,7 +114259,7 @@ static int tolua_function_Array_int_56__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112137,7 +114268,7 @@ static int tolua_function_Array_int_56__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112145,7 +114276,7 @@ static int tolua_function_Array_CKeyInfo_98__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CKeyInfo* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CKeyInfo* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CKeyInfo"); return 1; } @@ -112154,7 +114285,7 @@ static int tolua_function_Array_CKeyInfo_98__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CKeyInfo*)tolua_tousertype_dynamic(L, 3, 0, "CKeyInfo")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CKeyInfo*)tolua_tousertype_dynamic(L, 3, 0, "CKeyInfo")); return 0; } @@ -112162,7 +114293,7 @@ static int tolua_function_Array_int_98__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112171,7 +114302,7 @@ static int tolua_function_Array_int_98__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112180,7 +114311,7 @@ static int tolua_function_Array_int_98__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112188,7 +114319,7 @@ static int tolua_function_Array_int_10__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112197,7 +114328,7 @@ static int tolua_function_Array_int_10__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112206,7 +114337,7 @@ static int tolua_function_Array_int_10__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112214,7 +114345,7 @@ static int tolua_function_Array_unsigned_int_3__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112223,7 +114354,7 @@ static int tolua_function_Array_unsigned_int_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112232,7 +114363,7 @@ static int tolua_function_Array_unsigned_int_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112240,7 +114371,7 @@ static int tolua_function_Array_CFileView__2__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CFileView* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CFileView* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CFileView"); return 1; } @@ -112249,7 +114380,7 @@ static int tolua_function_Array_CFileView__2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CFileView** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CFileView** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112258,7 +114389,7 @@ static int tolua_function_Array_CFileView__2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CFileView*)tolua_tousertype_dynamic(L, 3, 0, "CFileView")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CFileView*)tolua_tousertype_dynamic(L, 3, 0, "CFileView")); return 0; } @@ -112266,7 +114397,7 @@ static int tolua_function_Array___int16_5__get(lua_State* L) { Array<__int16,5>* self = (Array<__int16,5>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,5>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112275,7 +114406,7 @@ static int tolua_function_Array___int16_5__getReference(lua_State* L) { Array<__int16,5>* self = (Array<__int16,5>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,5>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -112284,7 +114415,7 @@ static int tolua_function_Array___int16_5__set(lua_State* L) { Array<__int16,5>* self = (Array<__int16,5>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,5>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -112292,7 +114423,7 @@ static int tolua_function_Array_CItem__100__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CItem* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CItem* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CItem"); return 1; } @@ -112301,7 +114432,7 @@ static int tolua_function_Array_CItem__100__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CItem** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CItem** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112310,7 +114441,7 @@ static int tolua_function_Array_CItem__100__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CItem*)tolua_tousertype_dynamic(L, 3, 0, "CItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CItem*)tolua_tousertype_dynamic(L, 3, 0, "CItem")); return 0; } @@ -112318,7 +114449,7 @@ static int tolua_function_Array_CVidCell_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVidCell* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVidCell* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVidCell"); return 1; } @@ -112327,7 +114458,7 @@ static int tolua_function_Array_CVidCell_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVidCell*)tolua_tousertype_dynamic(L, 3, 0, "CVidCell")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVidCell*)tolua_tousertype_dynamic(L, 3, 0, "CVidCell")); return 0; } @@ -112335,7 +114466,7 @@ static int tolua_function_Array_MAP_CHAR_POSITIONS_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - MAP_CHAR_POSITIONS* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + MAP_CHAR_POSITIONS* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "MAP_CHAR_POSITIONS"); return 1; } @@ -112344,7 +114475,7 @@ static int tolua_function_Array_MAP_CHAR_POSITIONS_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(MAP_CHAR_POSITIONS*)tolua_tousertype_dynamic(L, 3, 0, "MAP_CHAR_POSITIONS")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(MAP_CHAR_POSITIONS*)tolua_tousertype_dynamic(L, 3, 0, "MAP_CHAR_POSITIONS")); return 0; } @@ -112352,7 +114483,7 @@ static int tolua_function_Array_char_64__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -112361,7 +114492,7 @@ static int tolua_function_Array_char_64__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -112369,7 +114500,7 @@ static int tolua_function_Array_unsigned___int8_56__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112378,7 +114509,7 @@ static int tolua_function_Array_unsigned___int8_56__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -112387,7 +114518,7 @@ static int tolua_function_Array_unsigned___int8_56__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112395,7 +114526,7 @@ static int tolua_function_Array_program_t_18__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - program_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + program_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "program_t"); return 1; } @@ -112404,7 +114535,7 @@ static int tolua_function_Array_program_t_18__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(program_t*)tolua_tousertype_dynamic(L, 3, 0, "program_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(program_t*)tolua_tousertype_dynamic(L, 3, 0, "program_t")); return 0; } @@ -112412,7 +114543,7 @@ static int tolua_function_Array_drawCmd_t_8192__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - drawCmd_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + drawCmd_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "drawCmd_t"); return 1; } @@ -112421,7 +114552,7 @@ static int tolua_function_Array_drawCmd_t_8192__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(drawCmd_t*)tolua_tousertype_dynamic(L, 3, 0, "drawCmd_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(drawCmd_t*)tolua_tousertype_dynamic(L, 3, 0, "drawCmd_t")); return 0; } @@ -112429,7 +114560,7 @@ static int tolua_function_Array_vec4_t_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - vec4_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + vec4_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "vec4_t"); return 1; } @@ -112438,7 +114569,7 @@ static int tolua_function_Array_vec4_t_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(vec4_t*)tolua_tousertype_dynamic(L, 3, 0, "vec4_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(vec4_t*)tolua_tousertype_dynamic(L, 3, 0, "vec4_t")); return 0; } @@ -112446,7 +114577,7 @@ static int tolua_function_Array_drawState_t_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - drawState_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + drawState_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "drawState_t"); return 1; } @@ -112455,7 +114586,7 @@ static int tolua_function_Array_drawState_t_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(drawState_t*)tolua_tousertype_dynamic(L, 3, 0, "drawState_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(drawState_t*)tolua_tousertype_dynamic(L, 3, 0, "drawState_t")); return 0; } @@ -112463,7 +114594,7 @@ static int tolua_function_Array_samplerState_t_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - samplerState_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + samplerState_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "samplerState_t"); return 1; } @@ -112472,7 +114603,7 @@ static int tolua_function_Array_samplerState_t_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(samplerState_t*)tolua_tousertype_dynamic(L, 3, 0, "samplerState_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(samplerState_t*)tolua_tousertype_dynamic(L, 3, 0, "samplerState_t")); return 0; } @@ -112480,7 +114611,7 @@ static int tolua_function_Array_texture_t_512__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - texture_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + texture_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "texture_t"); return 1; } @@ -112489,7 +114620,7 @@ static int tolua_function_Array_texture_t_512__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(texture_t*)tolua_tousertype_dynamic(L, 3, 0, "texture_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(texture_t*)tolua_tousertype_dynamic(L, 3, 0, "texture_t")); return 0; } @@ -112497,7 +114628,7 @@ static int tolua_function_Array_program_t_9__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - program_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + program_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "program_t"); return 1; } @@ -112506,7 +114637,7 @@ static int tolua_function_Array_program_t_9__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(program_t*)tolua_tousertype_dynamic(L, 3, 0, "program_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(program_t*)tolua_tousertype_dynamic(L, 3, 0, "program_t")); return 0; } @@ -112514,7 +114645,7 @@ static int tolua_function_Array_vertex_t_2097120__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - vertex_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + vertex_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "vertex_t"); return 1; } @@ -112523,7 +114654,7 @@ static int tolua_function_Array_vertex_t_2097120__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(vertex_t*)tolua_tousertype_dynamic(L, 3, 0, "vertex_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(vertex_t*)tolua_tousertype_dynamic(L, 3, 0, "vertex_t")); return 0; } @@ -112531,7 +114662,7 @@ static int tolua_function_Array_lua_TValue_1__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - lua_TValue* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + lua_TValue* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "lua_TValue"); return 1; } @@ -112540,7 +114671,7 @@ static int tolua_function_Array_lua_TValue_1__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(lua_TValue*)tolua_tousertype_dynamic(L, 3, 0, "lua_TValue")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(lua_TValue*)tolua_tousertype_dynamic(L, 3, 0, "lua_TValue")); return 0; } @@ -112548,7 +114679,7 @@ static int tolua_function_Array_UpVal__1__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - UpVal* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + UpVal* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "UpVal"); return 1; } @@ -112557,7 +114688,7 @@ static int tolua_function_Array_UpVal__1__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - UpVal** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + UpVal** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112566,7 +114697,7 @@ static int tolua_function_Array_UpVal__1__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (UpVal*)tolua_tousertype_dynamic(L, 3, 0, "UpVal")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (UpVal*)tolua_tousertype_dynamic(L, 3, 0, "UpVal")); return 0; } @@ -112574,7 +114705,7 @@ static int tolua_function_Array_TString__17__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - TString* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + TString* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "TString"); return 1; } @@ -112583,7 +114714,7 @@ static int tolua_function_Array_TString__17__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - TString** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + TString** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112592,7 +114723,7 @@ static int tolua_function_Array_TString__17__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (TString*)tolua_tousertype_dynamic(L, 3, 0, "TString")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (TString*)tolua_tousertype_dynamic(L, 3, 0, "TString")); return 0; } @@ -112600,7 +114731,7 @@ static int tolua_function_Array_Table__9__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - Table* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + Table* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "Table"); return 1; } @@ -112609,7 +114740,7 @@ static int tolua_function_Array_Table__9__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - Table** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + Table** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer
"); return 1; } @@ -112618,7 +114749,7 @@ static int tolua_function_Array_Table__9__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (Table*)tolua_tousertype_dynamic(L, 3, 0, "Table")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (Table*)tolua_tousertype_dynamic(L, 3, 0, "Table")); return 0; } @@ -112626,7 +114757,7 @@ static int tolua_function_Array_char_60__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -112635,7 +114766,7 @@ static int tolua_function_Array_char_60__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -112643,7 +114774,7 @@ static int tolua_function_Array__SETJMP_FLOAT128_16__getReference(lua_State* L) { Array<_SETJMP_FLOAT128,16>* self = (Array<_SETJMP_FLOAT128,16>*)tolua_tousertype_dynamic(L, 1, 0, "Array<_SETJMP_FLOAT128,16>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - _SETJMP_FLOAT128* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + _SETJMP_FLOAT128* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "_SETJMP_FLOAT128"); return 1; } @@ -112652,7 +114783,7 @@ static int tolua_function_Array__SETJMP_FLOAT128_16__set(lua_State* L) { Array<_SETJMP_FLOAT128,16>* self = (Array<_SETJMP_FLOAT128,16>*)tolua_tousertype_dynamic(L, 1, 0, "Array<_SETJMP_FLOAT128,16>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(_SETJMP_FLOAT128*)tolua_tousertype_dynamic(L, 3, 0, "_SETJMP_FLOAT128")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(_SETJMP_FLOAT128*)tolua_tousertype_dynamic(L, 3, 0, "_SETJMP_FLOAT128")); return 0; } @@ -112660,7 +114791,7 @@ static int tolua_function_Array_unsigned___int64_2__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int64 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int64 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112669,7 +114800,7 @@ static int tolua_function_Array_unsigned___int64_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int64* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int64* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int64>"); return 1; } @@ -112678,7 +114809,7 @@ static int tolua_function_Array_unsigned___int64_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112686,7 +114817,7 @@ static int tolua_function_Array_cnetworkwindow_queueentry_st_1__getReference(lua { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - cnetworkwindow_queueentry_st* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + cnetworkwindow_queueentry_st* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "cnetworkwindow_queueentry_st"); return 1; } @@ -112695,7 +114826,7 @@ static int tolua_function_Array_cnetworkwindow_queueentry_st_1__set(lua_State* L { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 3, 0, "cnetworkwindow_queueentry_st")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(cnetworkwindow_queueentry_st*)tolua_tousertype_dynamic(L, 3, 0, "cnetworkwindow_queueentry_st")); return 0; } @@ -112703,7 +114834,7 @@ static int tolua_function_Array_unsigned___int8_1__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112712,7 +114843,7 @@ static int tolua_function_Array_unsigned___int8_1__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -112721,7 +114852,7 @@ static int tolua_function_Array_unsigned___int8_1__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112729,7 +114860,7 @@ static int tolua_function_Array_unsigned_int_1__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112738,7 +114869,7 @@ static int tolua_function_Array_unsigned_int_1__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112747,7 +114878,7 @@ static int tolua_function_Array_unsigned_int_1__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112755,7 +114886,7 @@ static int tolua_function_Array_unsigned___int64_16__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int64 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int64 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112764,7 +114895,7 @@ static int tolua_function_Array_unsigned___int64_16__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int64* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int64* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int64>"); return 1; } @@ -112773,7 +114904,7 @@ static int tolua_function_Array_unsigned___int64_16__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112781,7 +114912,7 @@ static int tolua_function_Array_unsigned_int__7__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112790,7 +114921,7 @@ static int tolua_function_Array_unsigned_int__7__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112799,7 +114930,7 @@ static int tolua_function_Array_unsigned_int__7__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); return 0; } @@ -112807,7 +114938,7 @@ static int tolua_function_Array_float_3__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - float returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + float returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushnumber(L, (lua_Number)returnVal); return 1; } @@ -112816,7 +114947,7 @@ static int tolua_function_Array_float_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - float* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + float* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -112825,7 +114956,7 @@ static int tolua_function_Array_float_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tonumber(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tonumber(L, 3, "set")); return 0; } @@ -112833,7 +114964,7 @@ static int tolua_function_Array_unsigned___int8_10001__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112842,7 +114973,7 @@ static int tolua_function_Array_unsigned___int8_10001__getReference(lua_State* L { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -112851,7 +114982,7 @@ static int tolua_function_Array_unsigned___int8_10001__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112859,7 +114990,7 @@ static int tolua_function_Array_unsigned___int8_2__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112868,7 +114999,7 @@ static int tolua_function_Array_unsigned___int8_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -112877,7 +115008,7 @@ static int tolua_function_Array_unsigned___int8_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -112885,7 +115016,7 @@ static int tolua_function_Array_CGamePermission_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGamePermission* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGamePermission* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGamePermission"); return 1; } @@ -112894,7 +115025,7 @@ static int tolua_function_Array_CGamePermission_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGamePermission*)tolua_tousertype_dynamic(L, 3, 0, "CGamePermission")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGamePermission*)tolua_tousertype_dynamic(L, 3, 0, "CGamePermission")); return 0; } @@ -112902,7 +115033,7 @@ static int tolua_function_Array_CMachineState_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CMachineState* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CMachineState* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CMachineState"); return 1; } @@ -112911,7 +115042,7 @@ static int tolua_function_Array_CMachineState_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CMachineState*)tolua_tousertype_dynamic(L, 3, 0, "CMachineState")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CMachineState*)tolua_tousertype_dynamic(L, 3, 0, "CMachineState")); return 0; } @@ -112919,7 +115050,7 @@ static int tolua_function_Array_CResTileSet__2__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CResTileSet* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CResTileSet* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CResTileSet"); return 1; } @@ -112928,7 +115059,7 @@ static int tolua_function_Array_CResTileSet__2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResTileSet** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResTileSet** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -112937,7 +115068,7 @@ static int tolua_function_Array_CResTileSet__2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CResTileSet*)tolua_tousertype_dynamic(L, 3, 0, "CResTileSet")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CResTileSet*)tolua_tousertype_dynamic(L, 3, 0, "CResTileSet")); return 0; } @@ -112945,7 +115076,7 @@ static int tolua_function_Array_CResRef_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -112954,7 +115085,7 @@ static int tolua_function_Array_CResRef_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); return 0; } @@ -112962,7 +115093,7 @@ static int tolua_function_Array___int16_6__get(lua_State* L) { Array<__int16,6>* self = (Array<__int16,6>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,6>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112971,7 +115102,7 @@ static int tolua_function_Array___int16_6__getReference(lua_State* L) { Array<__int16,6>* self = (Array<__int16,6>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,6>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -112980,7 +115111,7 @@ static int tolua_function_Array___int16_6__set(lua_State* L) { Array<__int16,6>* self = (Array<__int16,6>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,6>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -112988,7 +115119,7 @@ static int tolua_function_Array_unsigned_int_10__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -112997,7 +115128,7 @@ static int tolua_function_Array_unsigned_int_10__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113006,7 +115137,7 @@ static int tolua_function_Array_unsigned_int_10__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113014,7 +115145,7 @@ static int tolua_function_Array_unsigned_int_11__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113023,7 +115154,7 @@ static int tolua_function_Array_unsigned_int_11__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113032,7 +115163,7 @@ static int tolua_function_Array_unsigned_int_11__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113040,7 +115171,7 @@ static int tolua_function_Array_unsigned_int_9__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113049,7 +115180,7 @@ static int tolua_function_Array_unsigned_int_9__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113058,7 +115189,7 @@ static int tolua_function_Array_unsigned_int_9__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113066,7 +115197,7 @@ static int tolua_function_Array_unsigned_int_31__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113075,7 +115206,7 @@ static int tolua_function_Array_unsigned_int_31__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113084,7 +115215,7 @@ static int tolua_function_Array_unsigned_int_31__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113092,7 +115223,7 @@ static int tolua_function_Array_unsigned_int_32__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113101,7 +115232,7 @@ static int tolua_function_Array_unsigned_int_32__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113110,7 +115241,7 @@ static int tolua_function_Array_unsigned_int_32__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113118,7 +115249,7 @@ static int tolua_function_Array___int16_3__get(lua_State* L) { Array<__int16,3>* self = (Array<__int16,3>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,3>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113127,7 +115258,7 @@ static int tolua_function_Array___int16_3__getReference(lua_State* L) { Array<__int16,3>* self = (Array<__int16,3>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,3>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113136,7 +115267,7 @@ static int tolua_function_Array___int16_3__set(lua_State* L) { Array<__int16,3>* self = (Array<__int16,3>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,3>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -113144,7 +115275,7 @@ static int tolua_function_Array_unsigned___int16_6__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113153,7 +115284,7 @@ static int tolua_function_Array_unsigned___int16_6__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113162,7 +115293,7 @@ static int tolua_function_Array_unsigned___int16_6__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113170,7 +115301,7 @@ static int tolua_function_Array_CKeyInfo_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CKeyInfo* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CKeyInfo* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CKeyInfo"); return 1; } @@ -113179,7 +115310,7 @@ static int tolua_function_Array_CKeyInfo_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CKeyInfo*)tolua_tousertype_dynamic(L, 3, 0, "CKeyInfo")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CKeyInfo*)tolua_tousertype_dynamic(L, 3, 0, "CKeyInfo")); return 0; } @@ -113187,7 +115318,7 @@ static int tolua_function_Array_int_2__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113196,7 +115327,7 @@ static int tolua_function_Array_int_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113205,7 +115336,7 @@ static int tolua_function_Array_int_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113213,7 +115344,7 @@ static int tolua_function_Array_CKeyInfo_5__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CKeyInfo* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CKeyInfo* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CKeyInfo"); return 1; } @@ -113222,7 +115353,7 @@ static int tolua_function_Array_CKeyInfo_5__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CKeyInfo*)tolua_tousertype_dynamic(L, 3, 0, "CKeyInfo")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CKeyInfo*)tolua_tousertype_dynamic(L, 3, 0, "CKeyInfo")); return 0; } @@ -113230,7 +115361,7 @@ static int tolua_function_Array_int_5__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113239,7 +115370,7 @@ static int tolua_function_Array_int_5__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113248,7 +115379,7 @@ static int tolua_function_Array_int_5__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113256,7 +115387,7 @@ static int tolua_function_Array_unsigned_int_100__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113265,7 +115396,7 @@ static int tolua_function_Array_unsigned_int_100__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113274,7 +115405,7 @@ static int tolua_function_Array_unsigned_int_100__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113282,7 +115413,7 @@ static int tolua_function_Array___int16_11__get(lua_State* L) { Array<__int16,11>* self = (Array<__int16,11>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,11>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113291,7 +115422,7 @@ static int tolua_function_Array___int16_11__getReference(lua_State* L) { Array<__int16,11>* self = (Array<__int16,11>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,11>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113300,7 +115431,7 @@ static int tolua_function_Array___int16_11__set(lua_State* L) { Array<__int16,11>* self = (Array<__int16,11>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,11>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -113308,7 +115439,7 @@ static int tolua_function_Array___int16_12__get(lua_State* L) { Array<__int16,12>* self = (Array<__int16,12>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,12>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113317,7 +115448,7 @@ static int tolua_function_Array___int16_12__getReference(lua_State* L) { Array<__int16,12>* self = (Array<__int16,12>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,12>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113326,7 +115457,7 @@ static int tolua_function_Array___int16_12__set(lua_State* L) { Array<__int16,12>* self = (Array<__int16,12>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,12>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -113334,7 +115465,7 @@ static int tolua_function_Array_CSpellLevelDecrementing_10__getReference(lua_Sta { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSpellLevelDecrementing* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSpellLevelDecrementing* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSpellLevelDecrementing"); return 1; } @@ -113343,7 +115474,7 @@ static int tolua_function_Array_CSpellLevelDecrementing_10__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 3, 0, "CSpellLevelDecrementing")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSpellLevelDecrementing*)tolua_tousertype_dynamic(L, 3, 0, "CSpellLevelDecrementing")); return 0; } @@ -113351,7 +115482,7 @@ static int tolua_function_Array_int_11__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113360,7 +115491,7 @@ static int tolua_function_Array_int_11__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113369,7 +115500,7 @@ static int tolua_function_Array_int_11__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113377,7 +115508,7 @@ static int tolua_function_Array_int_9__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113386,7 +115517,7 @@ static int tolua_function_Array_int_9__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113395,7 +115526,7 @@ static int tolua_function_Array_int_9__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113403,7 +115534,7 @@ static int tolua_function_Array_int_7__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113412,7 +115543,7 @@ static int tolua_function_Array_int_7__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113421,7 +115552,7 @@ static int tolua_function_Array_int_7__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113429,7 +115560,7 @@ static int tolua_function_Array_unsigned___int8_24__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113438,7 +115569,7 @@ static int tolua_function_Array_unsigned___int8_24__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -113447,7 +115578,7 @@ static int tolua_function_Array_unsigned___int8_24__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113455,7 +115586,7 @@ static int tolua_function_Array_unsigned_int_4__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113464,7 +115595,7 @@ static int tolua_function_Array_unsigned_int_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113473,7 +115604,7 @@ static int tolua_function_Array_unsigned_int_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113481,7 +115612,7 @@ static int tolua_function_Array_tagRGBQUAD_256__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - tagRGBQUAD* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + tagRGBQUAD* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "tagRGBQUAD"); return 1; } @@ -113490,7 +115621,7 @@ static int tolua_function_Array_tagRGBQUAD_256__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(tagRGBQUAD*)tolua_tousertype_dynamic(L, 3, 0, "tagRGBQUAD")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(tagRGBQUAD*)tolua_tousertype_dynamic(L, 3, 0, "tagRGBQUAD")); return 0; } @@ -113498,7 +115629,7 @@ static int tolua_function_Array_int_4__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113507,7 +115638,7 @@ static int tolua_function_Array_int_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113516,7 +115647,7 @@ static int tolua_function_Array_int_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113524,7 +115655,7 @@ static int tolua_function_Array_unsigned_int_15__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113533,7 +115664,7 @@ static int tolua_function_Array_unsigned_int_15__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113542,7 +115673,7 @@ static int tolua_function_Array_unsigned_int_15__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113550,7 +115681,7 @@ static int tolua_function_Array_CItem__39__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - CItem* returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + CItem* returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); tolua_pushusertype(L, (void*)returnVal, "CItem"); return 1; } @@ -113559,7 +115690,7 @@ static int tolua_function_Array_CItem__39__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CItem** returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CItem** returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Pointer"); return 1; } @@ -113568,7 +115699,7 @@ static int tolua_function_Array_CItem__39__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), (CItem*)tolua_tousertype_dynamic(L, 3, 0, "CItem")); + (self->set)(tolua_function_tointeger(L, 2, "set"), (CItem*)tolua_tousertype_dynamic(L, 3, 0, "CItem")); return 0; } @@ -113576,7 +115707,7 @@ static int tolua_function_Array_CButtonData_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CButtonData* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CButtonData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CButtonData"); return 1; } @@ -113585,7 +115716,7 @@ static int tolua_function_Array_CButtonData_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CButtonData*)tolua_tousertype_dynamic(L, 3, 0, "CButtonData")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CButtonData*)tolua_tousertype_dynamic(L, 3, 0, "CButtonData")); return 0; } @@ -113593,7 +115724,7 @@ static int tolua_function_Array_CButtonData_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CButtonData* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CButtonData* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CButtonData"); return 1; } @@ -113602,7 +115733,7 @@ static int tolua_function_Array_CButtonData_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CButtonData*)tolua_tousertype_dynamic(L, 3, 0, "CButtonData")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CButtonData*)tolua_tousertype_dynamic(L, 3, 0, "CButtonData")); return 0; } @@ -113610,7 +115741,7 @@ static int tolua_function_Array_CGameStatsRes_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CGameStatsRes* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CGameStatsRes* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CGameStatsRes"); return 1; } @@ -113619,7 +115750,7 @@ static int tolua_function_Array_CGameStatsRes_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CGameStatsRes*)tolua_tousertype_dynamic(L, 3, 0, "CGameStatsRes")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CGameStatsRes*)tolua_tousertype_dynamic(L, 3, 0, "CGameStatsRes")); return 0; } @@ -113627,7 +115758,7 @@ static int tolua_function_Array_NECK_POINTS_8__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - NECK_POINTS* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + NECK_POINTS* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "NECK_POINTS"); return 1; } @@ -113636,7 +115767,7 @@ static int tolua_function_Array_NECK_POINTS_8__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(NECK_POINTS*)tolua_tousertype_dynamic(L, 3, 0, "NECK_POINTS")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(NECK_POINTS*)tolua_tousertype_dynamic(L, 3, 0, "NECK_POINTS")); return 0; } @@ -113644,7 +115775,7 @@ static int tolua_function_Array_CVidBitmap_5__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CVidBitmap* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CVidBitmap* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CVidBitmap"); return 1; } @@ -113653,7 +115784,7 @@ static int tolua_function_Array_CVidBitmap_5__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CVidBitmap*)tolua_tousertype_dynamic(L, 3, 0, "CVidBitmap")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CVidBitmap*)tolua_tousertype_dynamic(L, 3, 0, "CVidBitmap")); return 0; } @@ -113661,7 +115792,7 @@ static int tolua_function_Array_CSequenceSoundList_20__getReference(lua_State* L { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CSequenceSoundList* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CSequenceSoundList* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CSequenceSoundList"); return 1; } @@ -113670,7 +115801,7 @@ static int tolua_function_Array_CSequenceSoundList_20__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CSequenceSoundList*)tolua_tousertype_dynamic(L, 3, 0, "CSequenceSoundList")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CSequenceSoundList*)tolua_tousertype_dynamic(L, 3, 0, "CSequenceSoundList")); return 0; } @@ -113678,7 +115809,7 @@ static int tolua_function_Array___int16_4__get(lua_State* L) { Array<__int16,4>* self = (Array<__int16,4>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113687,7 +115818,7 @@ static int tolua_function_Array___int16_4__getReference(lua_State* L) { Array<__int16,4>* self = (Array<__int16,4>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113696,7 +115827,7 @@ static int tolua_function_Array___int16_4__set(lua_State* L) { Array<__int16,4>* self = (Array<__int16,4>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int16,4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int16>(L, 3, "set")); return 0; } @@ -113704,7 +115835,7 @@ static int tolua_function_Array_unsigned_int_42__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113713,7 +115844,7 @@ static int tolua_function_Array_unsigned_int_42__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113722,7 +115853,7 @@ static int tolua_function_Array_unsigned_int_42__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113730,7 +115861,7 @@ static int tolua_function_Array_unsigned_int_14__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113739,7 +115870,7 @@ static int tolua_function_Array_unsigned_int_14__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113748,7 +115879,7 @@ static int tolua_function_Array_unsigned_int_14__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113756,7 +115887,7 @@ static int tolua_function_Array_unsigned___int16_3__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113765,7 +115896,7 @@ static int tolua_function_Array_unsigned___int16_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113774,7 +115905,7 @@ static int tolua_function_Array_unsigned___int16_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113782,7 +115913,7 @@ static int tolua_function_Array_unsigned_int_45__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113791,7 +115922,7 @@ static int tolua_function_Array_unsigned_int_45__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113800,7 +115931,7 @@ static int tolua_function_Array_unsigned_int_45__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113808,7 +115939,7 @@ static int tolua_function_Array_CPoint_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CPoint* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CPoint* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -113817,7 +115948,7 @@ static int tolua_function_Array_CPoint_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); return 0; } @@ -113825,7 +115956,7 @@ static int tolua_function_Array_unsigned___int16_19__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned __int16 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned __int16 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113834,7 +115965,7 @@ static int tolua_function_Array_unsigned___int16_19__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned __int16* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned __int16* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int16>"); return 1; } @@ -113843,7 +115974,7 @@ static int tolua_function_Array_unsigned___int16_19__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113851,7 +115982,7 @@ static int tolua_function_Array_int_64__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113860,7 +115991,7 @@ static int tolua_function_Array_int_64__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113869,7 +116000,24 @@ static int tolua_function_Array_int_64__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + return 0; +} + +static int tolua_function_Array_SDL_MessageBoxColor_5__getReference(lua_State* L) +{ + Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); + SDL_MessageBoxColor* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); + tolua_pushusertype(L, (void*)returnVal, "SDL_MessageBoxColor"); + return 1; +} + +static int tolua_function_Array_SDL_MessageBoxColor_5__set(lua_State* L) +{ + Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(SDL_MessageBoxColor*)tolua_tousertype_dynamic(L, 3, 0, "SDL_MessageBoxColor")); return 0; } @@ -113877,7 +116025,7 @@ static int tolua_function_Array_unsigned_int_84__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113886,7 +116034,7 @@ static int tolua_function_Array_unsigned_int_84__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113895,7 +116043,7 @@ static int tolua_function_Array_unsigned_int_84__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113903,7 +116051,7 @@ static int tolua_function_Array_unsigned_int_49__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - unsigned int returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + unsigned int returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -113912,7 +116060,7 @@ static int tolua_function_Array_unsigned_int_49__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - unsigned int* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + unsigned int* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -113921,7 +116069,7 @@ static int tolua_function_Array_unsigned_int_49__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger(L, 3, "set")); return 0; } @@ -113929,7 +116077,7 @@ static int tolua_function_Array_stbrp_node_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - stbrp_node* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + stbrp_node* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "stbrp_node"); return 1; } @@ -113938,7 +116086,7 @@ static int tolua_function_Array_stbrp_node_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(stbrp_node*)tolua_tousertype_dynamic(L, 3, 0, "stbrp_node")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(stbrp_node*)tolua_tousertype_dynamic(L, 3, 0, "stbrp_node")); return 0; } @@ -113946,7 +116094,7 @@ static int tolua_function_Array_glyphHashEntry_t_32749__getReference(lua_State* { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - glyphHashEntry_t* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + glyphHashEntry_t* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "glyphHashEntry_t"); return 1; } @@ -113955,7 +116103,24 @@ static int tolua_function_Array_glyphHashEntry_t_32749__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(glyphHashEntry_t*)tolua_tousertype_dynamic(L, 3, 0, "glyphHashEntry_t")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(glyphHashEntry_t*)tolua_tousertype_dynamic(L, 3, 0, "glyphHashEntry_t")); + return 0; +} + +static int tolua_function_Array_char_256__get(lua_State* L) +{ + Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); + lua_pushlstring(L, (const char*)&returnVal, 1); + return 1; +} + +static int tolua_function_Array_char_256__set(lua_State* L) +{ + Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -113963,7 +116128,7 @@ static int tolua_function_Array_texture_t_DX_512__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - texture_t_DX* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + texture_t_DX* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "texture_t_DX"); return 1; } @@ -113972,7 +116137,7 @@ static int tolua_function_Array_texture_t_DX_512__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(texture_t_DX*)tolua_tousertype_dynamic(L, 3, 0, "texture_t_DX")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(texture_t_DX*)tolua_tousertype_dynamic(L, 3, 0, "texture_t_DX")); return 0; } @@ -113980,7 +116145,7 @@ static int tolua_function_Array_CResRef_10__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -113989,7 +116154,7 @@ static int tolua_function_Array_CResRef_10__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); return 0; } @@ -113997,7 +116162,7 @@ static int tolua_function_Array___int8_15__get(lua_State* L) { Array<__int8,15>* self = (Array<__int8,15>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int8,15>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -114006,7 +116171,7 @@ static int tolua_function_Array___int8_15__getReference(lua_State* L) { Array<__int8,15>* self = (Array<__int8,15>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int8,15>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -114015,7 +116180,7 @@ static int tolua_function_Array___int8_15__set(lua_State* L) { Array<__int8,15>* self = (Array<__int8,15>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int8,15>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int8>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int8>(L, 3, "set")); return 0; } @@ -114023,7 +116188,7 @@ static int tolua_function_Array_CResRef_9__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -114032,7 +116197,7 @@ static int tolua_function_Array_CResRef_9__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); return 0; } @@ -114040,7 +116205,7 @@ static int tolua_function_Array_CResRef_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -114049,7 +116214,7 @@ static int tolua_function_Array_CResRef_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); return 0; } @@ -114057,7 +116222,7 @@ static int tolua_function_Array___int8_2__get(lua_State* L) { Array<__int8,2>* self = (Array<__int8,2>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int8,2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - __int8 returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + __int8 returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -114066,7 +116231,7 @@ static int tolua_function_Array___int8_2__getReference(lua_State* L) { Array<__int8,2>* self = (Array<__int8,2>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int8,2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - __int8* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + __int8* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -114075,7 +116240,7 @@ static int tolua_function_Array___int8_2__set(lua_State* L) { Array<__int8,2>* self = (Array<__int8,2>*)tolua_tousertype_dynamic(L, 1, 0, "Array<__int8,2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int8>(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tointeger<__int8>(L, 3, "set")); return 0; } @@ -114083,7 +116248,7 @@ static int tolua_function_Array_CResRef_3__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - CResRef* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + CResRef* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushusertype(L, (void*)returnVal, "CResRef"); return 1; } @@ -114092,7 +116257,7 @@ static int tolua_function_Array_CResRef_3__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); + (self->set)(tolua_function_tointeger(L, 2, "set"), *(CResRef*)tolua_tousertype_dynamic(L, 3, 0, "CResRef")); return 0; } @@ -114100,7 +116265,7 @@ static int tolua_function_Array_char_32__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114109,7 +116274,7 @@ static int tolua_function_Array_char_32__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114118,7 +116283,7 @@ static int tolua_function_Array_char_32__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114126,7 +116291,7 @@ static int tolua_function_Array_char_4__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114135,7 +116300,7 @@ static int tolua_function_Array_char_4__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114144,7 +116309,7 @@ static int tolua_function_Array_char_4__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114152,7 +116317,7 @@ static int tolua_function_Array_char_8__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114161,7 +116326,7 @@ static int tolua_function_Array_char_8__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114170,7 +116335,7 @@ static int tolua_function_Array_char_8__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114178,7 +116343,7 @@ static int tolua_function_Array_char_2__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114187,7 +116352,7 @@ static int tolua_function_Array_char_2__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114196,7 +116361,7 @@ static int tolua_function_Array_char_2__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114204,7 +116369,7 @@ static int tolua_function_Array_char_260__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114213,7 +116378,7 @@ static int tolua_function_Array_char_260__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114222,7 +116387,7 @@ static int tolua_function_Array_char_260__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114230,7 +116395,7 @@ static int tolua_function_Array_char_8000__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114239,7 +116404,7 @@ static int tolua_function_Array_char_8000__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114248,7 +116413,7 @@ static int tolua_function_Array_char_8000__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114256,7 +116421,7 @@ static int tolua_function_Array_char_1025__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114265,7 +116430,7 @@ static int tolua_function_Array_char_1025__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114274,7 +116439,7 @@ static int tolua_function_Array_char_1025__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -114282,7 +116447,7 @@ static int tolua_function_Array_char_129__get(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); + char returnVal = (self->get)(tolua_function_tointeger(L, 2, "get")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -114291,7 +116456,7 @@ static int tolua_function_Array_char_129__getReference(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); + char* returnVal = (self->getReference)(tolua_function_tointeger(L, 2, "getReference")); tolua_pushstring(L, (const char*)returnVal); return 1; } @@ -114300,33 +116465,7 @@ static int tolua_function_Array_char_129__set(lua_State* L) { Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); - return 0; -} - -static int tolua_function_Array_char_256__get(lua_State* L) -{ - Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - char returnVal = self->get(tolua_function_tointeger(L, 2, "get")); - lua_pushlstring(L, (const char*)&returnVal, 1); - return 1; -} - -static int tolua_function_Array_char_256__getReference(lua_State* L) -{ - Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'getReference'", NULL); - char* returnVal = self->getReference(tolua_function_tointeger(L, 2, "getReference")); - tolua_pushstring(L, (const char*)returnVal); - return 1; -} - -static int tolua_function_Array_char_256__set(lua_State* L) -{ - Array* self = (Array*)tolua_tousertype_dynamic(L, 1, 0, "Array"); - if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); + (self->set)(tolua_function_tointeger(L, 2, "set"), tolua_function_tochar(L, 3, "set")); return 0; } @@ -118662,7 +120801,7 @@ static int tolua_function__734DBB4D47315AEC2910FBD1685ECB48_D3DCreate(lua_State* { _734DBB4D47315AEC2910FBD1685ECB48* self = (_734DBB4D47315AEC2910FBD1685ECB48*)tolua_tousertype_dynamic(L, 1, 0, "_734DBB4D47315AEC2910FBD1685ECB48"); if (!self) tolua_error(L, "invalid 'self' in calling function 'D3DCreate'", NULL); - IDirect3D9* returnVal = self->D3DCreate(tolua_function_tointeger(L, 2, "D3DCreate")); + IDirect3D9* returnVal = (self->D3DCreate)(tolua_function_tointeger(L, 2, "D3DCreate")); tolua_pushusertype(L, (void*)returnVal, "IDirect3D9"); return 1; } @@ -118671,7 +120810,7 @@ static int tolua_function__734DBB4D47315AEC2910FBD1685ECB48_D3DXCreateEffect(lua { _734DBB4D47315AEC2910FBD1685ECB48* self = (_734DBB4D47315AEC2910FBD1685ECB48*)tolua_tousertype_dynamic(L, 1, 0, "_734DBB4D47315AEC2910FBD1685ECB48"); if (!self) tolua_error(L, "invalid 'self' in calling function 'D3DXCreateEffect'", NULL); - HRESULT* returnVal = self->D3DXCreateEffect((IDirect3DDevice9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DDevice9"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "D3DXCreateEffect"), (const _D3DXMACRO*)tolua_tousertype_dynamic(L, 5, 0, "_D3DXMACRO"), (ID3DXInclude*)tolua_tousertype_dynamic(L, 6, 0, "ID3DXInclude"), tolua_function_tointeger(L, 7, "D3DXCreateEffect"), (ID3DXEffectPool*)tolua_tousertype_dynamic(L, 8, 0, "ID3DXEffectPool"), (ID3DXEffect**)tolua_tousertype_dynamic(L, 9, 0, "Pointer"), (ID3DXBuffer**)tolua_tousertype_dynamic(L, 10, 0, "Pointer")); + HRESULT* returnVal = (self->D3DXCreateEffect)((IDirect3DDevice9*)tolua_tousertype_dynamic(L, 2, 0, "IDirect3DDevice9"), (const void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "D3DXCreateEffect"), (const _D3DXMACRO*)tolua_tousertype_dynamic(L, 5, 0, "_D3DXMACRO"), (ID3DXInclude*)tolua_tousertype_dynamic(L, 6, 0, "ID3DXInclude"), tolua_function_tointeger(L, 7, "D3DXCreateEffect"), (ID3DXEffectPool*)tolua_tousertype_dynamic(L, 8, 0, "ID3DXEffectPool"), (ID3DXEffect**)tolua_tousertype_dynamic(L, 9, 0, "Pointer"), (ID3DXBuffer**)tolua_tousertype_dynamic(L, 10, 0, "Pointer")); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -119408,7 +121547,7 @@ static int tolua_function_global_State_frealloc(lua_State* L) { global_State* self = (global_State*)tolua_tousertype_dynamic(L, 1, 0, "global_State"); if (!self) tolua_error(L, "invalid 'self' in calling function 'frealloc'", NULL); - void* returnVal = self->frealloc((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "frealloc"), tolua_function_tointeger(L, 5, "frealloc")); + void* returnVal = (self->frealloc)((void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType"), tolua_function_tointeger(L, 4, "frealloc"), tolua_function_tointeger(L, 5, "frealloc")); tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); return 1; } @@ -119417,7 +121556,7 @@ static int tolua_function_global_State_panic(lua_State* L) { global_State* self = (global_State*)tolua_tousertype_dynamic(L, 1, 0, "global_State"); if (!self) tolua_error(L, "invalid 'self' in calling function 'panic'", NULL); - int returnVal = self->panic((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); + int returnVal = (self->panic)((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -119958,6 +122097,1493 @@ static int tolua_get__GUID_Data4(lua_State* L) return 1; } +static int tolua_get_SDL_VideoDevice_name(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'name'", NULL); + tolua_pushusertype(L, (void*)&self->name, "ConstCharString"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_shape_driver(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'shape_driver'", NULL); + tolua_pushusertype(L, (void*)&self->shape_driver, "SDL_ShapeDriver"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_suspend_screensaver(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'suspend_screensaver'", NULL); + lua_pushinteger(L, (lua_Integer)self->suspend_screensaver); + return 1; +} + +static int tolua_set_SDL_VideoDevice_suspend_screensaver(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'suspend_screensaver'", NULL); + self->suspend_screensaver = (SDL_bool)tolua_setter_tointeger<__int32>(L, "suspend_screensaver"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_suspend_screensaver(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'suspend_screensaver'", NULL); + tolua_pushusertype(L, (void*)&self->suspend_screensaver, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_num_displays(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'num_displays'", NULL); + lua_pushinteger(L, (lua_Integer)self->num_displays); + return 1; +} + +static int tolua_set_SDL_VideoDevice_num_displays(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'num_displays'", NULL); + self->num_displays = tolua_setter_tointeger(L, "num_displays"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_num_displays(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'num_displays'", NULL); + tolua_pushusertype(L, (void*)&self->num_displays, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_displays(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'displays'", NULL); + tolua_pushusertype(L, (void*)self->displays, "SDL_VideoDisplay"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_displays(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'displays'", NULL); + self->displays = (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDisplay"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_displays(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'displays'", NULL); + tolua_pushusertype(L, (void*)&self->displays, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_windows(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'windows'", NULL); + tolua_pushusertype(L, (void*)self->windows, "SDL_Window"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_windows(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'windows'", NULL); + self->windows = (SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_windows(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'windows'", NULL); + tolua_pushusertype(L, (void*)&self->windows, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_grabbed_window(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'grabbed_window'", NULL); + tolua_pushusertype(L, (void*)self->grabbed_window, "SDL_Window"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_grabbed_window(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'grabbed_window'", NULL); + self->grabbed_window = (SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_grabbed_window(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'grabbed_window'", NULL); + tolua_pushusertype(L, (void*)&self->grabbed_window, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_window_magic(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window_magic'", NULL); + lua_pushinteger(L, (lua_Integer)self->window_magic); + return 1; +} + +static int tolua_set_SDL_VideoDevice_window_magic(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window_magic'", NULL); + self->window_magic = tolua_setter_tointeger(L, "window_magic"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_window_magic(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'window_magic'", NULL); + tolua_pushusertype(L, (void*)&self->window_magic, "Primitive<__int8>"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_next_object_id(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'next_object_id'", NULL); + lua_pushinteger(L, (lua_Integer)self->next_object_id); + return 1; +} + +static int tolua_set_SDL_VideoDevice_next_object_id(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'next_object_id'", NULL); + self->next_object_id = tolua_setter_tointeger(L, "next_object_id"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_next_object_id(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'next_object_id'", NULL); + tolua_pushusertype(L, (void*)&self->next_object_id, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_clipboard_text(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'clipboard_text'", NULL); + tolua_pushusertype(L, (void*)&self->clipboard_text, "CharString"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_gl_config(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gl_config'", NULL); + tolua_pushusertype(L, (void*)&self->gl_config, "SDL_VideoDevice::gl_config_t"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_current_glwin(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glwin'", NULL); + tolua_pushusertype(L, (void*)self->current_glwin, "SDL_Window"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_current_glwin(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glwin'", NULL); + self->current_glwin = (SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_current_glwin(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glwin'", NULL); + tolua_pushusertype(L, (void*)&self->current_glwin, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_current_glctx(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glctx'", NULL); + tolua_pushusertype(L, (void*)self->current_glctx, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_current_glctx(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glctx'", NULL); + self->current_glctx = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_current_glctx(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glctx'", NULL); + tolua_pushusertype(L, (void*)&self->current_glctx, "VoidPointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_current_glwin_tls(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glwin_tls'", NULL); + lua_pushinteger(L, (lua_Integer)self->current_glwin_tls); + return 1; +} + +static int tolua_set_SDL_VideoDevice_current_glwin_tls(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glwin_tls'", NULL); + self->current_glwin_tls = tolua_setter_tointeger(L, "current_glwin_tls"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_current_glwin_tls(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glwin_tls'", NULL); + tolua_pushusertype(L, (void*)&self->current_glwin_tls, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_current_glctx_tls(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glctx_tls'", NULL); + lua_pushinteger(L, (lua_Integer)self->current_glctx_tls); + return 1; +} + +static int tolua_set_SDL_VideoDevice_current_glctx_tls(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glctx_tls'", NULL); + self->current_glctx_tls = tolua_setter_tointeger(L, "current_glctx_tls"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_current_glctx_tls(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'current_glctx_tls'", NULL); + tolua_pushusertype(L, (void*)&self->current_glctx_tls, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_driverdata(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driverdata'", NULL); + tolua_pushusertype(L, (void*)self->driverdata, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_driverdata(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driverdata'", NULL); + self->driverdata = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_driverdata(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driverdata'", NULL); + tolua_pushusertype(L, (void*)&self->driverdata, "VoidPointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_gl_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gl_data'", NULL); + tolua_pushusertype(L, (void*)self->gl_data, "SDL_GLDriverData"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_gl_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gl_data'", NULL); + self->gl_data = (SDL_GLDriverData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_GLDriverData"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_gl_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gl_data'", NULL); + tolua_pushusertype(L, (void*)&self->gl_data, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_egl_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_data'", NULL); + tolua_pushusertype(L, (void*)self->egl_data, "SDL_EGL_VideoData"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_egl_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_data'", NULL); + self->egl_data = (SDL_EGL_VideoData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_EGL_VideoData"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_egl_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'egl_data'", NULL); + tolua_pushusertype(L, (void*)&self->egl_data, "Pointer"); + return 1; +} + +static int tolua_get_SDL_VideoDevice_gles_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gles_data'", NULL); + tolua_pushusertype(L, (void*)self->gles_data, "SDL_PrivateGLESData"); + return 1; +} + +static int tolua_set_SDL_VideoDevice_gles_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gles_data'", NULL); + self->gles_data = (SDL_PrivateGLESData*)tolua_tousertype_dynamic(L, 2, 0, "SDL_PrivateGLESData"); + return 0; +} + +static int tolua_get_SDL_VideoDevice_reference_gles_data(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'gles_data'", NULL); + tolua_pushusertype(L, (void*)&self->gles_data, "Pointer"); + return 1; +} + +static int tolua_function_SDL_VideoDevice_VideoInit(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'VideoInit'", NULL); + int returnVal = (self->VideoInit)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_VideoQuit(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'VideoQuit'", NULL); + (self->VideoQuit)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_GetDisplayBounds(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GetDisplayBounds'", NULL); + int returnVal = (self->GetDisplayBounds)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 3, 0, "SDL_VideoDisplay"), (SDL_Rect*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Rect")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GetDisplayDPI(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GetDisplayDPI'", NULL); + int returnVal = (self->GetDisplayDPI)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 3, 0, "SDL_VideoDisplay"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GetDisplayModes(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GetDisplayModes'", NULL); + (self->GetDisplayModes)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 3, 0, "SDL_VideoDisplay")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetDisplayMode(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetDisplayMode'", NULL); + int returnVal = (self->SetDisplayMode)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 3, 0, "SDL_VideoDisplay"), (SDL_DisplayMode*)tolua_tousertype_dynamic(L, 4, 0, "SDL_DisplayMode")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_CreateWindowA(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'CreateWindowA'", NULL); + int returnVal = (self->CreateWindowA)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_CreateWindowFrom(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'CreateWindowFrom'", NULL); + int returnVal = (self->CreateWindowFrom)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (const void*)tolua_tousertype_dynamic(L, 4, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_SetWindowTitle(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowTitle'", NULL); + (self->SetWindowTitle)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowIcon(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowIcon'", NULL); + (self->SetWindowIcon)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (SDL_Surface*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Surface")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowPosition(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowPosition'", NULL); + (self->SetWindowPosition)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowSize(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowSize'", NULL); + (self->SetWindowSize)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowMinimumSize(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowMinimumSize'", NULL); + (self->SetWindowMinimumSize)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowMaximumSize(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowMaximumSize'", NULL); + (self->SetWindowMaximumSize)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_ShowWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'ShowWindow'", NULL); + (self->ShowWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_HideWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'HideWindow'", NULL); + (self->HideWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_RaiseWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'RaiseWindow'", NULL); + (self->RaiseWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_MaximizeWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'MaximizeWindow'", NULL); + (self->MaximizeWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_MinimizeWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'MinimizeWindow'", NULL); + (self->MinimizeWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_RestoreWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'RestoreWindow'", NULL); + (self->RestoreWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowBordered(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowBordered'", NULL); + (self->SetWindowBordered)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (SDL_bool)tolua_function_tointeger<__int32>(L, 4, "SetWindowBordered")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowFullscreen(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowFullscreen'", NULL); + (self->SetWindowFullscreen)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (SDL_VideoDisplay*)tolua_tousertype_dynamic(L, 4, 0, "SDL_VideoDisplay"), (SDL_bool)tolua_function_tointeger<__int32>(L, 5, "SetWindowFullscreen")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetWindowGammaRamp(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowGammaRamp'", NULL); + int returnVal = (self->SetWindowGammaRamp)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (const unsigned __int16*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int16>")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GetWindowGammaRamp(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GetWindowGammaRamp'", NULL); + int returnVal = (self->GetWindowGammaRamp)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (wchar_t*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_SetWindowGrab(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowGrab'", NULL); + (self->SetWindowGrab)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (SDL_bool)tolua_function_tointeger<__int32>(L, 4, "SetWindowGrab")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_DestroyWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'DestroyWindow'", NULL); + (self->DestroyWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_CreateWindowFramebuffer(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'CreateWindowFramebuffer'", NULL); + int returnVal = (self->CreateWindowFramebuffer)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (void**)tolua_tousertype_dynamic(L, 5, 0, "VoidPointer"), (int*)tolua_tousertype_dynamic(L, 6, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_UpdateWindowFramebuffer(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'UpdateWindowFramebuffer'", NULL); + int returnVal = (self->UpdateWindowFramebuffer)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (const SDL_Rect*)tolua_tousertype_dynamic(L, 4, 0, "SDL_Rect"), tolua_function_tointeger(L, 5, "UpdateWindowFramebuffer")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_DestroyWindowFramebuffer(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'DestroyWindowFramebuffer'", NULL); + (self->DestroyWindowFramebuffer)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_OnWindowEnter(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'OnWindowEnter'", NULL); + (self->OnWindowEnter)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_GetWindowWMInfo(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GetWindowWMInfo'", NULL); + SDL_bool returnVal = (self->GetWindowWMInfo)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (SDL_SysWMinfo*)tolua_tousertype_dynamic(L, 4, 0, "SDL_SysWMinfo")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_LoadLibrary(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_LoadLibrary'", NULL); + int returnVal = (self->GL_LoadLibrary)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_GetProcAddress(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_GetProcAddress'", NULL); + void* returnVal = (self->GL_GetProcAddress)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_UnloadLibrary(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_UnloadLibrary'", NULL); + (self->GL_UnloadLibrary)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_GL_CreateContext(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_CreateContext'", NULL); + void* returnVal = (self->GL_CreateContext)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + tolua_pushusertype(L, (void*)returnVal, "UnmappedUserType"); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_MakeCurrent(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_MakeCurrent'", NULL); + int returnVal = (self->GL_MakeCurrent)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (void*)tolua_tousertype_dynamic(L, 4, 0, "UnmappedUserType")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_GetDrawableSize(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_GetDrawableSize'", NULL); + (self->GL_GetDrawableSize)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_GL_SetSwapInterval(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_SetSwapInterval'", NULL); + int returnVal = (self->GL_SetSwapInterval)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), tolua_function_tointeger(L, 3, "GL_SetSwapInterval")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_GetSwapInterval(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_GetSwapInterval'", NULL); + int returnVal = (self->GL_GetSwapInterval)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_GL_SwapWindow(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_SwapWindow'", NULL); + (self->GL_SwapWindow)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_GL_DeleteContext(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'GL_DeleteContext'", NULL); + (self->GL_DeleteContext)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (void*)tolua_tousertype_dynamic(L, 3, 0, "UnmappedUserType")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_PumpEvents(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'PumpEvents'", NULL); + (self->PumpEvents)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SuspendScreenSaver(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SuspendScreenSaver'", NULL); + (self->SuspendScreenSaver)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_StartTextInput(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'StartTextInput'", NULL); + (self->StartTextInput)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_StopTextInput(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'StopTextInput'", NULL); + (self->StopTextInput)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_SetTextInputRect(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetTextInputRect'", NULL); + (self->SetTextInputRect)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Rect*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Rect")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_HasScreenKeyboardSupport(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'HasScreenKeyboardSupport'", NULL); + SDL_bool returnVal = (self->HasScreenKeyboardSupport)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_ShowScreenKeyboard(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'ShowScreenKeyboard'", NULL); + (self->ShowScreenKeyboard)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_HideScreenKeyboard(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'HideScreenKeyboard'", NULL); + (self->HideScreenKeyboard)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + return 0; +} + +static int tolua_function_SDL_VideoDevice_IsScreenKeyboardShown(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'IsScreenKeyboardShown'", NULL); + SDL_bool returnVal = (self->IsScreenKeyboardShown)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (SDL_Window*)tolua_tousertype_dynamic(L, 3, 0, "SDL_Window")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_SetClipboardText(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetClipboardText'", NULL); + int returnVal = (self->SetClipboardText)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_HasClipboardText(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'HasClipboardText'", NULL); + SDL_bool returnVal = (self->HasClipboardText)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_ShowMessageBox(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'ShowMessageBox'", NULL); + int returnVal = (self->ShowMessageBox)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice"), (const SDL_MessageBoxData*)tolua_tousertype_dynamic(L, 3, 0, "SDL_MessageBoxData"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_SetWindowHitTest(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'SetWindowHitTest'", NULL); + int returnVal = (self->SetWindowHitTest)((SDL_Window*)tolua_tousertype_dynamic(L, 2, 0, "SDL_Window"), (SDL_bool)tolua_function_tointeger<__int32>(L, 3, "SetWindowHitTest")); + lua_pushinteger(L, (lua_Integer)returnVal); + return 1; +} + +static int tolua_function_SDL_VideoDevice_free(lua_State* L) +{ + SDL_VideoDevice* self = (SDL_VideoDevice*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice"); + if (!self) tolua_error(L, "invalid 'self' in calling function 'free'", NULL); + (self->free)((SDL_VideoDevice*)tolua_tousertype_dynamic(L, 2, 0, "SDL_VideoDevice")); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_red_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'red_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->red_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_red_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'red_size'", NULL); + self->red_size = tolua_setter_tointeger(L, "red_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_red_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'red_size'", NULL); + tolua_pushusertype(L, (void*)&self->red_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_green_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'green_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->green_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_green_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'green_size'", NULL); + self->green_size = tolua_setter_tointeger(L, "green_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_green_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'green_size'", NULL); + tolua_pushusertype(L, (void*)&self->green_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_blue_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'blue_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->blue_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_blue_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'blue_size'", NULL); + self->blue_size = tolua_setter_tointeger(L, "blue_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_blue_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'blue_size'", NULL); + tolua_pushusertype(L, (void*)&self->blue_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_alpha_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'alpha_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->alpha_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_alpha_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'alpha_size'", NULL); + self->alpha_size = tolua_setter_tointeger(L, "alpha_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_alpha_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'alpha_size'", NULL); + tolua_pushusertype(L, (void*)&self->alpha_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_depth_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'depth_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->depth_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_depth_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'depth_size'", NULL); + self->depth_size = tolua_setter_tointeger(L, "depth_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_depth_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'depth_size'", NULL); + tolua_pushusertype(L, (void*)&self->depth_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_buffer_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buffer_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->buffer_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_buffer_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buffer_size'", NULL); + self->buffer_size = tolua_setter_tointeger(L, "buffer_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_buffer_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'buffer_size'", NULL); + tolua_pushusertype(L, (void*)&self->buffer_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_stencil_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'stencil_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->stencil_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_stencil_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'stencil_size'", NULL); + self->stencil_size = tolua_setter_tointeger(L, "stencil_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_stencil_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'stencil_size'", NULL); + tolua_pushusertype(L, (void*)&self->stencil_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_double_buffer(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'double_buffer'", NULL); + lua_pushinteger(L, (lua_Integer)self->double_buffer); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_double_buffer(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'double_buffer'", NULL); + self->double_buffer = tolua_setter_tointeger(L, "double_buffer"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_double_buffer(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'double_buffer'", NULL); + tolua_pushusertype(L, (void*)&self->double_buffer, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_accum_red_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_red_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->accum_red_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_accum_red_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_red_size'", NULL); + self->accum_red_size = tolua_setter_tointeger(L, "accum_red_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_red_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_red_size'", NULL); + tolua_pushusertype(L, (void*)&self->accum_red_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_accum_green_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_green_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->accum_green_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_accum_green_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_green_size'", NULL); + self->accum_green_size = tolua_setter_tointeger(L, "accum_green_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_green_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_green_size'", NULL); + tolua_pushusertype(L, (void*)&self->accum_green_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_accum_blue_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_blue_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->accum_blue_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_accum_blue_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_blue_size'", NULL); + self->accum_blue_size = tolua_setter_tointeger(L, "accum_blue_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_blue_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_blue_size'", NULL); + tolua_pushusertype(L, (void*)&self->accum_blue_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_accum_alpha_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_alpha_size'", NULL); + lua_pushinteger(L, (lua_Integer)self->accum_alpha_size); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_accum_alpha_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_alpha_size'", NULL); + self->accum_alpha_size = tolua_setter_tointeger(L, "accum_alpha_size"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_alpha_size(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accum_alpha_size'", NULL); + tolua_pushusertype(L, (void*)&self->accum_alpha_size, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_stereo(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'stereo'", NULL); + lua_pushinteger(L, (lua_Integer)self->stereo); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_stereo(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'stereo'", NULL); + self->stereo = tolua_setter_tointeger(L, "stereo"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_stereo(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'stereo'", NULL); + tolua_pushusertype(L, (void*)&self->stereo, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_multisamplebuffers(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'multisamplebuffers'", NULL); + lua_pushinteger(L, (lua_Integer)self->multisamplebuffers); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_multisamplebuffers(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'multisamplebuffers'", NULL); + self->multisamplebuffers = tolua_setter_tointeger(L, "multisamplebuffers"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_multisamplebuffers(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'multisamplebuffers'", NULL); + tolua_pushusertype(L, (void*)&self->multisamplebuffers, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_multisamplesamples(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'multisamplesamples'", NULL); + lua_pushinteger(L, (lua_Integer)self->multisamplesamples); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_multisamplesamples(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'multisamplesamples'", NULL); + self->multisamplesamples = tolua_setter_tointeger(L, "multisamplesamples"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_multisamplesamples(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'multisamplesamples'", NULL); + tolua_pushusertype(L, (void*)&self->multisamplesamples, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_accelerated(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accelerated'", NULL); + lua_pushinteger(L, (lua_Integer)self->accelerated); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_accelerated(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accelerated'", NULL); + self->accelerated = tolua_setter_tointeger(L, "accelerated"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_accelerated(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'accelerated'", NULL); + tolua_pushusertype(L, (void*)&self->accelerated, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_major_version(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'major_version'", NULL); + lua_pushinteger(L, (lua_Integer)self->major_version); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_major_version(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'major_version'", NULL); + self->major_version = tolua_setter_tointeger(L, "major_version"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_major_version(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'major_version'", NULL); + tolua_pushusertype(L, (void*)&self->major_version, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_minor_version(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'minor_version'", NULL); + lua_pushinteger(L, (lua_Integer)self->minor_version); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_minor_version(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'minor_version'", NULL); + self->minor_version = tolua_setter_tointeger(L, "minor_version"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_minor_version(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'minor_version'", NULL); + tolua_pushusertype(L, (void*)&self->minor_version, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_flags(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + lua_pushinteger(L, (lua_Integer)self->flags); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_flags(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + self->flags = tolua_setter_tointeger(L, "flags"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_flags(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'flags'", NULL); + tolua_pushusertype(L, (void*)&self->flags, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_profile_mask(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'profile_mask'", NULL); + lua_pushinteger(L, (lua_Integer)self->profile_mask); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_profile_mask(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'profile_mask'", NULL); + self->profile_mask = tolua_setter_tointeger(L, "profile_mask"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_profile_mask(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'profile_mask'", NULL); + tolua_pushusertype(L, (void*)&self->profile_mask, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_share_with_current_context(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'share_with_current_context'", NULL); + lua_pushinteger(L, (lua_Integer)self->share_with_current_context); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_share_with_current_context(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'share_with_current_context'", NULL); + self->share_with_current_context = tolua_setter_tointeger(L, "share_with_current_context"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_share_with_current_context(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'share_with_current_context'", NULL); + tolua_pushusertype(L, (void*)&self->share_with_current_context, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_release_behavior(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'release_behavior'", NULL); + lua_pushinteger(L, (lua_Integer)self->release_behavior); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_release_behavior(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'release_behavior'", NULL); + self->release_behavior = tolua_setter_tointeger(L, "release_behavior"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_release_behavior(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'release_behavior'", NULL); + tolua_pushusertype(L, (void*)&self->release_behavior, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_framebuffer_srgb_capable(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'framebuffer_srgb_capable'", NULL); + lua_pushinteger(L, (lua_Integer)self->framebuffer_srgb_capable); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_framebuffer_srgb_capable(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'framebuffer_srgb_capable'", NULL); + self->framebuffer_srgb_capable = tolua_setter_tointeger(L, "framebuffer_srgb_capable"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_framebuffer_srgb_capable(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'framebuffer_srgb_capable'", NULL); + tolua_pushusertype(L, (void*)&self->framebuffer_srgb_capable, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_retained_backing(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'retained_backing'", NULL); + lua_pushinteger(L, (lua_Integer)self->retained_backing); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_retained_backing(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'retained_backing'", NULL); + self->retained_backing = tolua_setter_tointeger(L, "retained_backing"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_retained_backing(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'retained_backing'", NULL); + tolua_pushusertype(L, (void*)&self->retained_backing, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_driver_loaded(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driver_loaded'", NULL); + lua_pushinteger(L, (lua_Integer)self->driver_loaded); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_driver_loaded(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driver_loaded'", NULL); + self->driver_loaded = tolua_setter_tointeger(L, "driver_loaded"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_driver_loaded(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driver_loaded'", NULL); + tolua_pushusertype(L, (void*)&self->driver_loaded, "Primitive"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_driver_path(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'driver_path'", NULL); + tolua_pushusertype(L, (void*)&self->driver_path, "Array"); + return 1; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_dll_handle(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dll_handle'", NULL); + tolua_pushusertype(L, (void*)self->dll_handle, "UnmappedUserType"); + return 1; +} + +static int tolua_set_SDL_VideoDevice__gl_config_t_dll_handle(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dll_handle'", NULL); + self->dll_handle = (void*)tolua_tousertype_dynamic(L, 2, 0, "UnmappedUserType"); + return 0; +} + +static int tolua_get_SDL_VideoDevice__gl_config_t_reference_dll_handle(lua_State* L) +{ + SDL_VideoDevice::gl_config_t* self = (SDL_VideoDevice::gl_config_t*)tolua_tousertype_dynamic(L, 1, 0, "SDL_VideoDevice::gl_config_t"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'dll_handle'", NULL); + tolua_pushusertype(L, (void*)&self->dll_handle, "VoidPointer"); + return 1; +} + static int tolua_get_SDL_PixelFormat_format(lua_State* L) { SDL_PixelFormat* self = (SDL_PixelFormat*)tolua_tousertype_dynamic(L, 1, 0, "SDL_PixelFormat"); @@ -120398,6 +124024,14 @@ static int tolua_get_SDL_PixelFormat_reference_next(lua_State* L) return 1; } +static int tolua_get_SDL_MessageBoxColorScheme_colors(lua_State* L) +{ + SDL_MessageBoxColorScheme* self = (SDL_MessageBoxColorScheme*)tolua_tousertype_dynamic(L, 1, 0, "SDL_MessageBoxColorScheme"); + if (!self) tolua_error(L, "invalid 'self' in accessing variable 'colors'", NULL); + tolua_pushusertype(L, (void*)&self->colors, "Array"); + return 1; +} + static int tolua_get_LClosure_next(lua_State* L) { LClosure* self = (LClosure*)tolua_tousertype_dynamic(L, 1, 0, "LClosure"); @@ -120554,7 +124188,7 @@ static int tolua_function_LCharString_32__getChar(lua_State* L) { LCharString<32>* self = (LCharString<32>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<32>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120563,7 +124197,7 @@ static int tolua_function_LCharString_32__setChar(lua_State* L) { LCharString<32>* self = (LCharString<32>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<32>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120571,7 +124205,7 @@ static int tolua_function_LCharString_32__set(lua_State* L) { LCharString<32>* self = (LCharString<32>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<32>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120579,7 +124213,7 @@ static int tolua_function_LCharString_32__get(lua_State* L) { LCharString<32>* self = (LCharString<32>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<32>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120587,7 +124221,7 @@ static int tolua_function_LCharString_4__getChar(lua_State* L) { LCharString<4>* self = (LCharString<4>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120596,7 +124230,7 @@ static int tolua_function_LCharString_4__setChar(lua_State* L) { LCharString<4>* self = (LCharString<4>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120604,7 +124238,7 @@ static int tolua_function_LCharString_4__set(lua_State* L) { LCharString<4>* self = (LCharString<4>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120612,7 +124246,7 @@ static int tolua_function_LCharString_4__get(lua_State* L) { LCharString<4>* self = (LCharString<4>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<4>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120620,7 +124254,7 @@ static int tolua_function_LCharString_8__getChar(lua_State* L) { LCharString<8>* self = (LCharString<8>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120629,7 +124263,7 @@ static int tolua_function_LCharString_8__setChar(lua_State* L) { LCharString<8>* self = (LCharString<8>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120637,7 +124271,7 @@ static int tolua_function_LCharString_8__set(lua_State* L) { LCharString<8>* self = (LCharString<8>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120645,7 +124279,7 @@ static int tolua_function_LCharString_8__get(lua_State* L) { LCharString<8>* self = (LCharString<8>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120653,7 +124287,7 @@ static int tolua_function_LCharString_2__getChar(lua_State* L) { LCharString<2>* self = (LCharString<2>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120662,7 +124296,7 @@ static int tolua_function_LCharString_2__setChar(lua_State* L) { LCharString<2>* self = (LCharString<2>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120670,7 +124304,7 @@ static int tolua_function_LCharString_2__set(lua_State* L) { LCharString<2>* self = (LCharString<2>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120678,7 +124312,7 @@ static int tolua_function_LCharString_2__get(lua_State* L) { LCharString<2>* self = (LCharString<2>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<2>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120686,7 +124320,7 @@ static int tolua_function_LCharString_260__getChar(lua_State* L) { LCharString<260>* self = (LCharString<260>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<260>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120695,7 +124329,7 @@ static int tolua_function_LCharString_260__setChar(lua_State* L) { LCharString<260>* self = (LCharString<260>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<260>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120703,7 +124337,7 @@ static int tolua_function_LCharString_260__set(lua_State* L) { LCharString<260>* self = (LCharString<260>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<260>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120711,7 +124345,7 @@ static int tolua_function_LCharString_260__get(lua_State* L) { LCharString<260>* self = (LCharString<260>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<260>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120719,7 +124353,7 @@ static int tolua_function_LCharString_8000__getChar(lua_State* L) { LCharString<8000>* self = (LCharString<8000>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8000>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120728,7 +124362,7 @@ static int tolua_function_LCharString_8000__setChar(lua_State* L) { LCharString<8000>* self = (LCharString<8000>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8000>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120736,7 +124370,7 @@ static int tolua_function_LCharString_8000__set(lua_State* L) { LCharString<8000>* self = (LCharString<8000>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8000>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120744,7 +124378,7 @@ static int tolua_function_LCharString_8000__get(lua_State* L) { LCharString<8000>* self = (LCharString<8000>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<8000>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120752,7 +124386,7 @@ static int tolua_function_LCharString_1025__getChar(lua_State* L) { LCharString<1025>* self = (LCharString<1025>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<1025>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120761,7 +124395,7 @@ static int tolua_function_LCharString_1025__setChar(lua_State* L) { LCharString<1025>* self = (LCharString<1025>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<1025>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120769,7 +124403,7 @@ static int tolua_function_LCharString_1025__set(lua_State* L) { LCharString<1025>* self = (LCharString<1025>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<1025>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120777,7 +124411,7 @@ static int tolua_function_LCharString_1025__get(lua_State* L) { LCharString<1025>* self = (LCharString<1025>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<1025>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120785,7 +124419,7 @@ static int tolua_function_LCharString_129__getChar(lua_State* L) { LCharString<129>* self = (LCharString<129>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<129>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120794,7 +124428,7 @@ static int tolua_function_LCharString_129__setChar(lua_State* L) { LCharString<129>* self = (LCharString<129>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<129>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120802,7 +124436,7 @@ static int tolua_function_LCharString_129__set(lua_State* L) { LCharString<129>* self = (LCharString<129>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<129>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120810,7 +124444,7 @@ static int tolua_function_LCharString_129__get(lua_State* L) { LCharString<129>* self = (LCharString<129>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<129>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -120818,7 +124452,7 @@ static int tolua_function_LCharString_256__getChar(lua_State* L) { LCharString<256>* self = (LCharString<256>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<256>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'getChar'", NULL); - char returnVal = self->getChar(tolua_function_tointeger(L, 2, "getChar")); + char returnVal = (self->getChar)(tolua_function_tointeger(L, 2, "getChar")); lua_pushlstring(L, (const char*)&returnVal, 1); return 1; } @@ -120827,7 +124461,7 @@ static int tolua_function_LCharString_256__setChar(lua_State* L) { LCharString<256>* self = (LCharString<256>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<256>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'setChar'", NULL); - self->setChar(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); + (self->setChar)(tolua_function_tointeger(L, 2, "setChar"), tolua_function_tochar(L, 3, "setChar")); return 0; } @@ -120835,7 +124469,7 @@ static int tolua_function_LCharString_256__set(lua_State* L) { LCharString<256>* self = (LCharString<256>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<256>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -120843,7 +124477,7 @@ static int tolua_function_LCharString_256__get(lua_State* L) { LCharString<256>* self = (LCharString<256>*)tolua_tousertype_dynamic(L, 1, 0, "LCharString<256>"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -122688,6 +126322,19 @@ static int tolua_get_reference_saveMenuStack(lua_State* L) return 1; } +static int tolua_function_SDL_GetDisplayForWindow(lua_State* L) +{ + SDL_VideoDisplay* returnVal = p_SDL_GetDisplayForWindow((SDL_Window*)tolua_tousertype_dynamic(L, 1, 0, "SDL_Window")); + tolua_pushusertype(L, (void*)returnVal, "SDL_VideoDisplay"); + return 1; +} + +static int tolua_get_reference_SDL_GetDisplayForWindow(lua_State* L) +{ + tolua_pushusertype(L, *p_SDL_GetDisplayForWindow, "UnmappedUserType"); + return 1; +} + static int tolua_function_SDL_GetKeyFromName(lua_State* L) { int returnVal = p_SDL_GetKeyFromName(tolua_function_tostring(L, 1, "SDL_GetKeyFromName")); @@ -123576,7 +127223,7 @@ static int tolua_function_CVidPalette_GetAdd(lua_State* L) { CVidPalette* self = (CVidPalette*)tolua_tousertype_dynamic(L, 1, 0, "CVidPalette"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAdd'", NULL); - int returnVal = self->GetAdd((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR"), (CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetAdd")); + int returnVal = (self->GetAdd)((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR"), (CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetAdd")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -123585,7 +127232,7 @@ static int tolua_function_CVidPalette_GetLight(lua_State* L) { CVidPalette* self = (CVidPalette*)tolua_tousertype_dynamic(L, 1, 0, "CVidPalette"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetLight'", NULL); - int returnVal = self->GetLight((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR"), (CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT"), tolua_function_tointeger(L, 4, "GetLight")); + int returnVal = (self->GetLight)((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR"), (CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT"), tolua_function_tointeger(L, 4, "GetLight")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -123594,7 +127241,7 @@ static int tolua_function_CVidPalette_GetReservedEntries(lua_State* L) { CVidPalette* self = (CVidPalette*)tolua_tousertype_dynamic(L, 1, 0, "CVidPalette"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetReservedEntries'", NULL); - int returnVal = self->GetReservedEntries(tolua_function_tointeger(L, 2, "GetReservedEntries")); + int returnVal = (self->GetReservedEntries)(tolua_function_tointeger(L, 2, "GetReservedEntries")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -123603,7 +127250,7 @@ static int tolua_function_CVidPalette_GetTint(lua_State* L) { CVidPalette* self = (CVidPalette*)tolua_tousertype_dynamic(L, 1, 0, "CVidPalette"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetTint'", NULL); - int returnVal = self->GetTint((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR"), (CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "GetTint")); + int returnVal = (self->GetTint)((CVIDPALETTE_COLOR*)tolua_tousertype_dynamic(L, 2, 0, "CVIDPALETTE_COLOR"), (CVIDIMG_PALETTEAFFECT*)tolua_tousertype_dynamic(L, 3, 0, "CVIDIMG_PALETTEAFFECT"), (int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "GetTint")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -123612,7 +127259,7 @@ static int tolua_function_CVidPalette_SetAUCounter(lua_State* L) { CVidPalette* self = (CVidPalette*)tolua_tousertype_dynamic(L, 1, 0, "CVidPalette"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetAUCounter'", NULL); - self->SetAUCounter(); + (self->SetAUCounter)(); return 0; } @@ -123948,7 +127595,7 @@ static int tolua_function_CTlkTable_Fetch(lua_State* L) { CTlkTable* self = (CTlkTable*)tolua_tousertype_dynamic(L, 1, 0, "CTlkTable"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Fetch'", NULL); - byte returnVal = self->Fetch(tolua_function_tointeger(L, 2, "Fetch"), (STR_RES*)tolua_tousertype_dynamic(L, 3, 0, "STR_RES"), tolua_function_tointeger(L, 4, "Fetch")); + byte returnVal = (self->Fetch)(tolua_function_tointeger(L, 2, "Fetch"), (STR_RES*)tolua_tousertype_dynamic(L, 3, 0, "STR_RES"), tolua_function_tointeger(L, 4, "Fetch")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -126269,7 +129916,7 @@ static int tolua_function_CResRef_get(lua_State* L) { CResRef* self = (CResRef*)tolua_tousertype_dynamic(L, 1, 0, "CResRef"); if (!self) tolua_error(L, "invalid 'self' in calling function 'get'", NULL); - self->get(L); + (self->get)(L); return 1; } @@ -126277,7 +129924,7 @@ static int tolua_function_CResRef_set(lua_State* L) { CResRef* self = (CResRef*)tolua_tousertype_dynamic(L, 1, 0, "CResRef"); if (!self) tolua_error(L, "invalid 'self' in calling function 'set'", NULL); - self->set(tolua_function_tostring(L, 2, "set")); + (self->set)(tolua_function_tostring(L, 2, "set")); return 0; } @@ -126285,7 +129932,7 @@ static int tolua_function_CResRef_copy(lua_State* L) { CResRef* self = (CResRef*)tolua_tousertype_dynamic(L, 1, 0, "CResRef"); if (!self) tolua_error(L, "invalid 'self' in calling function 'copy'", NULL); - self->copy((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); + (self->copy)((CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); return 0; } @@ -126317,7 +129964,7 @@ static int tolua_function_CAIScript_Destruct(lua_State* L) { CAIScript* self = (CAIScript*)tolua_tousertype_dynamic(L, 1, 0, "CAIScript"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -127733,7 +131380,7 @@ static int tolua_function_CResHelper_CResText_1012__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -127781,7 +131428,7 @@ static int tolua_function_CResHelper_CResText_1008__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -127829,7 +131476,7 @@ static int tolua_function_CResHelper_CResSpell_1006__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -127877,7 +131524,7 @@ static int tolua_function_CResHelper_CResItem_1005__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -127925,7 +131572,7 @@ static int tolua_function_CResHelper_CResWave_4__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -127973,7 +131620,7 @@ static int tolua_function_CResHelper_CResBitmap_1__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128021,7 +131668,7 @@ static int tolua_function_CResHelper_CResFont_1034__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128069,7 +131716,7 @@ static int tolua_function_CResHelper_CResCell_1000__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128117,7 +131764,7 @@ static int tolua_function_CResHelper_CResGame_1013__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128165,7 +131812,7 @@ static int tolua_function_CResHelper_CResMosaic_1004__Destruct(lua_State* L) { CResHelper* self = (CResHelper*)tolua_tousertype_dynamic(L, 1, 0, "CResHelper"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128309,7 +131956,7 @@ static int tolua_function_C2DArray_Destruct(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128317,7 +131964,7 @@ static int tolua_function_C2DArray_FindColumnLabel(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'FindColumnLabel'", NULL); - int returnVal = self->FindColumnLabel(tolua_function_tostring(L, 2, "FindColumnLabel")); + int returnVal = (self->FindColumnLabel)(tolua_function_tostring(L, 2, "FindColumnLabel")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -128326,7 +131973,7 @@ static int tolua_function_C2DArray_FindRowLabel(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'FindRowLabel'", NULL); - int returnVal = self->FindRowLabel(tolua_function_tostring(L, 2, "FindRowLabel")); + int returnVal = (self->FindRowLabel)(tolua_function_tostring(L, 2, "FindRowLabel")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -128335,7 +131982,7 @@ static int tolua_function_C2DArray_GetAtPoint(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAtPoint'", NULL); - const CString* returnVal = self->GetAt(tolua_function_tointeger(L, 2, "GetAtPoint"), tolua_function_tointeger(L, 3, "GetAtPoint")); + const CString* returnVal = (self->GetAt)(tolua_function_tointeger(L, 2, "GetAtPoint"), tolua_function_tointeger(L, 3, "GetAtPoint")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -128344,7 +131991,7 @@ static int tolua_function_C2DArray_GetAtLabels(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAtLabels'", NULL); - const CString* returnVal = self->GetAt(tolua_function_tostring(L, 2, "GetAtLabels"), tolua_function_tostring(L, 3, "GetAtLabels")); + const CString* returnVal = (self->GetAt)(tolua_function_tostring(L, 2, "GetAtLabels"), tolua_function_tostring(L, 3, "GetAtLabels")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -128353,7 +132000,7 @@ static int tolua_function_C2DArray_GetAtCStringLabels(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAtCStringLabels'", NULL); - const CString* returnVal = self->GetAt((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (const CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + const CString* returnVal = (self->GetAt)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (const CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -128362,7 +132009,7 @@ static int tolua_function_C2DArray_Load(lua_State* L) { C2DArray* self = (C2DArray*)tolua_tousertype_dynamic(L, 1, 0, "C2DArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Load'", NULL); - self->Load((const CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); + (self->Load)((const CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); return 0; } @@ -128466,7 +132113,7 @@ static int tolua_function_CAIIdList_Destruct(lua_State* L) { CAIIdList* self = (CAIIdList*)tolua_tousertype_dynamic(L, 1, 0, "CAIIdList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128474,7 +132121,7 @@ static int tolua_function_CAIIdList_LoadList_Overload_Resref(lua_State* L) { CAIIdList* self = (CAIIdList*)tolua_tousertype_dynamic(L, 1, 0, "CAIIdList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'LoadList_Overload_Resref'", NULL); - self->LoadList(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "LoadList_Overload_Resref")); + (self->LoadList)(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "LoadList_Overload_Resref")); return 0; } @@ -128482,7 +132129,7 @@ static int tolua_function_CAIIdList_Find_Overload_ID(lua_State* L) { CAIIdList* self = (CAIIdList*)tolua_tousertype_dynamic(L, 1, 0, "CAIIdList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Find_Overload_ID'", NULL); - CAIId* returnVal = self->Find(tolua_function_tointeger(L, 2, "Find_Overload_ID")); + CAIId* returnVal = (self->Find)(tolua_function_tointeger(L, 2, "Find_Overload_ID")); tolua_pushusertype(L, (void*)returnVal, "CAIId"); return 1; } @@ -128491,7 +132138,7 @@ static int tolua_function_CAIIdList_virtual_Destruct(lua_State* L) { CAIIdList* self = (CAIIdList*)tolua_tousertype_dynamic(L, 1, 0, "CAIIdList"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -128725,7 +132372,7 @@ static int tolua_function_CAIScriptFile_Destruct(lua_State* L) { CAIScriptFile* self = (CAIScriptFile*)tolua_tousertype_dynamic(L, 1, 0, "CAIScriptFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -128733,7 +132380,7 @@ static int tolua_function_CAIScriptFile_ParseConditionalString(lua_State* L) { CAIScriptFile* self = (CAIScriptFile*)tolua_tousertype_dynamic(L, 1, 0, "CAIScriptFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ParseConditionalString'", NULL); - self->ParseConditionalString((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->ParseConditionalString)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -128741,7 +132388,7 @@ static int tolua_function_CAIScriptFile_ParseObjectType(lua_State* L) { CAIScriptFile* self = (CAIScriptFile*)tolua_tousertype_dynamic(L, 1, 0, "CAIScriptFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ParseObjectType'", NULL); - CAIObjectType* returnVal = self->ParseObjectType((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + CAIObjectType* returnVal = (self->ParseObjectType)((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -128750,7 +132397,7 @@ static int tolua_function_CAIScriptFile_ParseResponseString(lua_State* L) { CAIScriptFile* self = (CAIScriptFile*)tolua_tousertype_dynamic(L, 1, 0, "CAIScriptFile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ParseResponseString'", NULL); - self->ParseResponseString((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->ParseResponseString)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -128790,7 +132437,7 @@ static int tolua_function_CSound_Destruct(lua_State* L) { CSound* self = (CSound*)tolua_tousertype_dynamic(L, 1, 0, "CSound"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -129270,7 +132917,7 @@ static int tolua_function_STR_RES_Destruct(lua_State* L) { STR_RES* self = (STR_RES*)tolua_tousertype_dynamic(L, 1, 0, "STR_RES"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -129918,7 +133565,7 @@ static int tolua_function_CVidBitmap_Destruct(lua_State* L) { CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -129926,7 +133573,7 @@ static int tolua_function_CVidBitmap_GetPixelColor(lua_State* L) { CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetPixelColor'", NULL); - int returnVal = self->GetPixelColor((tagRGBQUAD*)tolua_tousertype_dynamic(L, 2, 0, "tagRGBQUAD"), tolua_function_tointeger(L, 3, "GetPixelColor"), tolua_function_tointeger(L, 4, "GetPixelColor")); + int returnVal = (self->GetPixelColor)((tagRGBQUAD*)tolua_tousertype_dynamic(L, 2, 0, "tagRGBQUAD"), tolua_function_tointeger(L, 3, "GetPixelColor"), tolua_function_tointeger(L, 4, "GetPixelColor")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -129935,7 +133582,7 @@ static int tolua_function_CVidBitmap_GetPixelValueOrZero(lua_State* L) { CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetPixelValueOrZero'", NULL); - byte returnVal = self->GetPixelValue(tolua_function_tointeger(L, 2, "GetPixelValueOrZero"), tolua_function_tointeger(L, 3, "GetPixelValueOrZero")); + byte returnVal = (self->GetPixelValue)(tolua_function_tointeger(L, 2, "GetPixelValueOrZero"), tolua_function_tointeger(L, 3, "GetPixelValueOrZero")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -129944,7 +133591,7 @@ static int tolua_function_CVidBitmap_SetResRef(lua_State* L) { CVidBitmap* self = (CVidBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CVidBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetResRef'", NULL); - self->SetResRef((const CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "SetResRef"), tolua_function_tointeger(L, 4, "SetResRef")); + (self->SetResRef)((const CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "SetResRef"), tolua_function_tointeger(L, 4, "SetResRef")); return 0; } @@ -130264,7 +133911,7 @@ static int tolua_function_CSearchBitmap_GetCost(lua_State* L) { CSearchBitmap* self = (CSearchBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CSearchBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetCost'", NULL); - byte returnVal = self->GetCost((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), tolua_function_tointeger(L, 4, "GetCost"), (ushort*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "GetCost")); + byte returnVal = (self->GetCost)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), tolua_function_tointeger(L, 4, "GetCost"), (ushort*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "GetCost")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -130273,7 +133920,7 @@ static int tolua_function_CSearchBitmap_GetLOSCost(lua_State* L) { CSearchBitmap* self = (CSearchBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CSearchBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetLOSCost'", NULL); - byte returnVal = self->GetLOSCost((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (short*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetLOSCost")); + byte returnVal = (self->GetLOSCost)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (short*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetLOSCost")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -130282,7 +133929,7 @@ static int tolua_function_CSearchBitmap_GetNearestOpenSquare(lua_State* L) { CSearchBitmap* self = (CSearchBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CSearchBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetNearestOpenSquare'", NULL); - CPoint* returnVal = self->GetNearestOpenSquare((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), *(CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetNearestOpenSquare"), tolua_function_tointeger(L, 6, "GetNearestOpenSquare")); + CPoint* returnVal = (self->GetNearestOpenSquare)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), *(CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetNearestOpenSquare"), tolua_function_tointeger(L, 6, "GetNearestOpenSquare")); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -130291,7 +133938,7 @@ static int tolua_function_CSearchBitmap_GetStructureHeight(lua_State* L) { CSearchBitmap* self = (CSearchBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CSearchBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetStructureHeight'", NULL); - short returnVal = self->GetStructureHeight(tolua_function_tointeger(L, 2, "GetStructureHeight")); + short returnVal = (self->GetStructureHeight)(tolua_function_tointeger(L, 2, "GetStructureHeight")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -130300,7 +133947,7 @@ static int tolua_function_CSearchBitmap_GetNearestOpenSquare_clashing1(lua_State { CSearchBitmap* self = (CSearchBitmap*)tolua_tousertype_dynamic(L, 1, 0, "CSearchBitmap"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetNearestOpenSquare'", NULL); - self->Lua_GetNearestOpenSquare(L, tolua_function_tointeger(L, 2, "GetNearestOpenSquare"), tolua_function_tointeger(L, 3, "GetNearestOpenSquare"), (byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetNearestOpenSquare"), tolua_function_tointeger(L, 6, "GetNearestOpenSquare")); + (self->Lua_GetNearestOpenSquare)(L, tolua_function_tointeger(L, 2, "GetNearestOpenSquare"), tolua_function_tointeger(L, 3, "GetNearestOpenSquare"), (byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "GetNearestOpenSquare"), tolua_function_tointeger(L, 6, "GetNearestOpenSquare")); return 2; } @@ -131272,7 +134919,7 @@ static int tolua_function_CVidMode_ApplyBrightnessContrast(lua_State* L) { CVidMode* self = (CVidMode*)tolua_tousertype_dynamic(L, 1, 0, "CVidMode"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ApplyBrightnessContrast'", NULL); - uint returnVal = self->ApplyBrightnessContrast(tolua_function_tointeger(L, 2, "ApplyBrightnessContrast")); + uint returnVal = (self->ApplyBrightnessContrast)(tolua_function_tointeger(L, 2, "ApplyBrightnessContrast")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -131281,7 +134928,7 @@ static int tolua_function_CVidMode_Flip(lua_State* L) { CVidMode* self = (CVidMode*)tolua_tousertype_dynamic(L, 1, 0, "CVidMode"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Flip'", NULL); - self->Flip(tolua_function_tointeger(L, 2, "Flip")); + (self->Flip)(tolua_function_tointeger(L, 2, "Flip")); return 0; } @@ -131433,7 +135080,7 @@ static int tolua_function_CVidCell_virtual_FrameAdvance(lua_State* L) { CVidCell* self = (CVidCell*)tolua_tousertype_dynamic(L, 1, 0, "CVidCell"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FrameAdvance'", NULL); - int returnVal = self->virtual_FrameAdvance(); + int returnVal = (self->virtual_FrameAdvance)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -131442,7 +135089,7 @@ static int tolua_function_CVidCell_virtual_Render(lua_State* L) { CVidCell* self = (CVidCell*)tolua_tousertype_dynamic(L, 1, 0, "CVidCell"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Render'", NULL); - int returnVal = self->virtual_Render((unsigned int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), tolua_function_tointeger(L, 3, "virtual_Render"), tolua_function_tointeger(L, 4, "virtual_Render"), tolua_function_tointeger(L, 5, "virtual_Render"), (const CRect*)tolua_tousertype_dynamic(L, 6, 0, "CRect"), tolua_function_tointeger(L, 7, "virtual_Render"), (const CPoint*)tolua_tousertype_dynamic(L, 8, 0, "CPoint")); + int returnVal = (self->virtual_Render)((unsigned int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), tolua_function_tointeger(L, 3, "virtual_Render"), tolua_function_tointeger(L, 4, "virtual_Render"), tolua_function_tointeger(L, 5, "virtual_Render"), (const CRect*)tolua_tousertype_dynamic(L, 6, 0, "CRect"), tolua_function_tointeger(L, 7, "virtual_Render"), (const CPoint*)tolua_tousertype_dynamic(L, 8, 0, "CPoint")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -131451,7 +135098,7 @@ static int tolua_function_CVidCell_virtual_Render_2(lua_State* L) { CVidCell* self = (CVidCell*)tolua_tousertype_dynamic(L, 1, 0, "CVidCell"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Render_2'", NULL); - int returnVal = self->virtual_Render_2(tolua_function_tointeger(L, 2, "virtual_Render_2"), tolua_function_tointeger(L, 3, "virtual_Render_2"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect"), (CVidPoly*)tolua_tousertype_dynamic(L, 5, 0, "CVidPoly"), tolua_function_tointeger(L, 6, "virtual_Render_2"), tolua_function_tointeger(L, 7, "virtual_Render_2"), tolua_function_tointeger(L, 8, "virtual_Render_2")); + int returnVal = (self->virtual_Render_2)(tolua_function_tointeger(L, 2, "virtual_Render_2"), tolua_function_tointeger(L, 3, "virtual_Render_2"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect"), (CVidPoly*)tolua_tousertype_dynamic(L, 5, 0, "CVidPoly"), tolua_function_tointeger(L, 6, "virtual_Render_2"), tolua_function_tointeger(L, 7, "virtual_Render_2"), tolua_function_tointeger(L, 8, "virtual_Render_2")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -131460,7 +135107,7 @@ static int tolua_function_CVidCell_virtual_StoreBackground(lua_State* L) { CVidCell* self = (CVidCell*)tolua_tousertype_dynamic(L, 1, 0, "CVidCell"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_StoreBackground'", NULL); - self->virtual_StoreBackground(tolua_function_tointeger(L, 2, "virtual_StoreBackground"), tolua_function_tointeger(L, 3, "virtual_StoreBackground"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect"), (CRect*)tolua_tousertype_dynamic(L, 5, 0, "CRect"), tolua_function_tointeger(L, 6, "virtual_StoreBackground")); + (self->virtual_StoreBackground)(tolua_function_tointeger(L, 2, "virtual_StoreBackground"), tolua_function_tointeger(L, 3, "virtual_StoreBackground"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect"), (CRect*)tolua_tousertype_dynamic(L, 5, 0, "CRect"), tolua_function_tointeger(L, 6, "virtual_StoreBackground")); return 0; } @@ -131468,7 +135115,7 @@ static int tolua_function_CVidCell_virtual_GetFrame(lua_State* L) { CVidCell* self = (CVidCell*)tolua_tousertype_dynamic(L, 1, 0, "CVidCell"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetFrame'", NULL); - int returnVal = self->virtual_GetFrame(); + int returnVal = (self->virtual_GetFrame)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -137937,7 +141584,7 @@ static int tolua_function_CInfCursor_SetCursor(lua_State* L) { CInfCursor* self = (CInfCursor*)tolua_tousertype_dynamic(L, 1, 0, "CInfCursor"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetCursor'", NULL); - self->SetCursor(tolua_function_tointeger(L, 2, "SetCursor"), tolua_function_tointeger(L, 3, "SetCursor"), tolua_function_tointeger(L, 4, "SetCursor")); + (self->SetCursor)(tolua_function_tointeger(L, 2, "SetCursor"), tolua_function_tointeger(L, 3, "SetCursor"), tolua_function_tointeger(L, 4, "SetCursor")); return 0; } @@ -149889,7 +153536,7 @@ static int tolua_function_CScreenWorld_TogglePauseGame(lua_State* L) { CScreenWorld* self = (CScreenWorld*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CScreenWorld"); if (!self) tolua_error(L, "invalid 'self' in calling function 'TogglePauseGame'", NULL); - int returnVal = self->TogglePauseGame(tolua_function_tointeger(L, 2, "TogglePauseGame"), tolua_function_tointeger(L, 3, "TogglePauseGame"), tolua_function_tointeger(L, 4, "TogglePauseGame"), tolua_function_tointeger(L, 5, "TogglePauseGame"), tolua_function_tointeger(L, 6, "TogglePauseGame")); + int returnVal = (self->TogglePauseGame)(tolua_function_tointeger(L, 2, "TogglePauseGame"), tolua_function_tointeger(L, 3, "TogglePauseGame"), tolua_function_tointeger(L, 4, "TogglePauseGame"), tolua_function_tointeger(L, 5, "TogglePauseGame"), tolua_function_tointeger(L, 6, "TogglePauseGame")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -155378,7 +159025,7 @@ static int tolua_function_CRuleTables_MapCharacterSpecializationToSchool(lua_Sta { CRuleTables* self = (CRuleTables*)tolua_tousertype_dynamic(L, 1, 0, "CRuleTables"); if (!self) tolua_error(L, "invalid 'self' in calling function 'MapCharacterSpecializationToSchool'", NULL); - byte returnVal = self->MapCharacterSpecializationToSchool(tolua_function_tointeger(L, 2, "MapCharacterSpecializationToSchool")); + byte returnVal = (self->MapCharacterSpecializationToSchool)(tolua_function_tointeger(L, 2, "MapCharacterSpecializationToSchool")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -155387,7 +159034,7 @@ static int tolua_function_CRuleTables_IsProtectedFromSpell(lua_State* L) { CRuleTables* self = (CRuleTables*)tolua_tousertype_dynamic(L, 1, 0, "CRuleTables"); if (!self) tolua_error(L, "invalid 'self' in calling function 'IsProtectedFromSpell'", NULL); - int returnVal = self->IsProtectedFromSpell(tolua_function_tointeger(L, 2, "IsProtectedFromSpell"), (CGameSprite*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite"), (CGameSprite*)tolua_tousertype_dynamic(L, 4, 0, "CGameSprite"), tolua_function_tointeger(L, 5, "IsProtectedFromSpell")); + int returnVal = (self->IsProtectedFromSpell)(tolua_function_tointeger(L, 2, "IsProtectedFromSpell"), (CGameSprite*)tolua_tousertype_dynamic(L, 3, 0, "CGameSprite"), (CGameSprite*)tolua_tousertype_dynamic(L, 4, 0, "CGameSprite"), tolua_function_tointeger(L, 5, "IsProtectedFromSpell")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160574,7 +164221,7 @@ static int tolua_function_CChitin_OnResizeWindow(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'OnResizeWindow'", NULL); - self->OnResizeWindow(tolua_function_tointeger(L, 2, "OnResizeWindow"), tolua_function_tointeger(L, 3, "OnResizeWindow")); + (self->OnResizeWindow)(tolua_function_tointeger(L, 2, "OnResizeWindow"), tolua_function_tointeger(L, 3, "OnResizeWindow")); return 0; } @@ -160582,7 +164229,7 @@ static int tolua_function_CChitin_virtual_SynchronousUpdate(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SynchronousUpdate'", NULL); - self->virtual_SynchronousUpdate(); + (self->virtual_SynchronousUpdate)(); return 0; } @@ -160590,7 +164237,7 @@ static int tolua_function_CChitin_virtual_SetupPanels(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetupPanels'", NULL); - self->virtual_SetupPanels(); + (self->virtual_SetupPanels)(); return 0; } @@ -160598,7 +164245,7 @@ static int tolua_function_CChitin_virtual_GetIDSInvalidVideoMode(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSInvalidVideoMode'", NULL); - unsigned int returnVal = self->virtual_GetIDSInvalidVideoMode(); + unsigned int returnVal = (self->virtual_GetIDSInvalidVideoMode)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160607,7 +164254,7 @@ static int tolua_function_CChitin_virtual_GetIDSOpenGLDll(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSOpenGLDll'", NULL); - unsigned int returnVal = self->virtual_GetIDSOpenGLDll(); + unsigned int returnVal = (self->virtual_GetIDSOpenGLDll)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160616,7 +164263,7 @@ static int tolua_function_CChitin_virtual_GetIDSExclusiveMode(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSExclusiveMode'", NULL); - unsigned int returnVal = self->virtual_GetIDSExclusiveMode(); + unsigned int returnVal = (self->virtual_GetIDSExclusiveMode)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160625,7 +164272,7 @@ static int tolua_function_CChitin_virtual_GetIDSChoosePixelFormat(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSChoosePixelFormat'", NULL); - unsigned int returnVal = self->virtual_GetIDSChoosePixelFormat(); + unsigned int returnVal = (self->virtual_GetIDSChoosePixelFormat)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160634,7 +164281,7 @@ static int tolua_function_CChitin_virtual_GetIDSSetPixelFormat(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSSetPixelFormat'", NULL); - unsigned int returnVal = self->virtual_GetIDSSetPixelFormat(); + unsigned int returnVal = (self->virtual_GetIDSSetPixelFormat)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160643,7 +164290,7 @@ static int tolua_function_CChitin_virtual_GetIDSSetGameResolution(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSSetGameResolution'", NULL); - unsigned int returnVal = self->virtual_GetIDSSetGameResolution(); + unsigned int returnVal = (self->virtual_GetIDSSetGameResolution)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160652,7 +164299,7 @@ static int tolua_function_CChitin_virtual_GetIDSSetGameBitDepth(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSSetGameBitDepth'", NULL); - unsigned int returnVal = self->virtual_GetIDSSetGameBitDepth(); + unsigned int returnVal = (self->virtual_GetIDSSetGameBitDepth)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160661,7 +164308,7 @@ static int tolua_function_CChitin_virtual_GetIDSBadDeskTopBitDepth(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSBadDeskTopBitDepth'", NULL); - unsigned int returnVal = self->virtual_GetIDSBadDeskTopBitDepth(); + unsigned int returnVal = (self->virtual_GetIDSBadDeskTopBitDepth)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160670,7 +164317,7 @@ static int tolua_function_CChitin_virtual_GetIDSWindowsFonts(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIDSWindowsFonts'", NULL); - unsigned int returnVal = self->virtual_GetIDSWindowsFonts(); + unsigned int returnVal = (self->virtual_GetIDSWindowsFonts)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160679,7 +164326,7 @@ static int tolua_function_CChitin_virtual_AllocResObject(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AllocResObject'", NULL); - CRes* returnVal = self->virtual_AllocResObject(tolua_function_tointeger(L, 2, "virtual_AllocResObject")); + CRes* returnVal = (self->virtual_AllocResObject)(tolua_function_tointeger(L, 2, "virtual_AllocResObject")); tolua_pushusertype(L, (void*)returnVal, "CRes"); return 1; } @@ -160688,7 +164335,7 @@ static int tolua_function_CChitin_virtual_GetIconRes(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetIconRes'", NULL); - const CString* returnVal = self->virtual_GetIconRes(); + const CString* returnVal = (self->virtual_GetIconRes)(); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -160697,7 +164344,7 @@ static int tolua_function_CChitin_virtual_GetScreenShotFilePrefix(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetScreenShotFilePrefix'", NULL); - self->virtual_GetScreenShotFilePrefix((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->virtual_GetScreenShotFilePrefix)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -160705,7 +164352,7 @@ static int tolua_function_CChitin_virtual_FontRectOutline(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_FontRectOutline'", NULL); - int returnVal = self->virtual_FontRectOutline(); + int returnVal = (self->virtual_FontRectOutline)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160714,7 +164361,7 @@ static int tolua_function_CChitin_virtual_InitializeServices(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_InitializeServices'", NULL); - int returnVal = self->virtual_InitializeServices(); + int returnVal = (self->virtual_InitializeServices)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160723,7 +164370,7 @@ static int tolua_function_CChitin_virtual_SetProgressBar(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetProgressBar'", NULL); - self->virtual_SetProgressBar(tolua_function_tointeger(L, 2, "virtual_SetProgressBar"), tolua_function_tointeger(L, 3, "virtual_SetProgressBar"), tolua_function_tointeger(L, 4, "virtual_SetProgressBar"), tolua_function_tointeger(L, 5, "virtual_SetProgressBar"), tolua_function_tointeger(L, 6, "virtual_SetProgressBar"), tolua_function_tointeger(L, 7, "virtual_SetProgressBar"), tolua_function_tointeger(L, 8, "virtual_SetProgressBar"), tolua_function_tointeger(L, 9, "virtual_SetProgressBar"), tolua_function_tointeger(L, 10, "virtual_SetProgressBar"), tolua_function_tointeger(L, 11, "virtual_SetProgressBar"), tolua_function_tointeger(L, 12, "virtual_SetProgressBar")); + (self->virtual_SetProgressBar)(tolua_function_tointeger(L, 2, "virtual_SetProgressBar"), tolua_function_tointeger(L, 3, "virtual_SetProgressBar"), tolua_function_tointeger(L, 4, "virtual_SetProgressBar"), tolua_function_tointeger(L, 5, "virtual_SetProgressBar"), tolua_function_tointeger(L, 6, "virtual_SetProgressBar"), tolua_function_tointeger(L, 7, "virtual_SetProgressBar"), tolua_function_tointeger(L, 8, "virtual_SetProgressBar"), tolua_function_tointeger(L, 9, "virtual_SetProgressBar"), tolua_function_tointeger(L, 10, "virtual_SetProgressBar"), tolua_function_tointeger(L, 11, "virtual_SetProgressBar"), tolua_function_tointeger(L, 12, "virtual_SetProgressBar")); return 0; } @@ -160731,7 +164378,7 @@ static int tolua_function_CChitin_virtual_SetProgressBarActivateEngine(lua_State { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetProgressBarActivateEngine'", NULL); - self->virtual_SetProgressBarActivateEngine(tolua_function_tointeger(L, 2, "virtual_SetProgressBarActivateEngine")); + (self->virtual_SetProgressBarActivateEngine)(tolua_function_tointeger(L, 2, "virtual_SetProgressBarActivateEngine")); return 0; } @@ -160739,7 +164386,7 @@ static int tolua_function_CChitin_virtual_BroadcastMultiplayerProgressBarInfo(lu { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_BroadcastMultiplayerProgressBarInfo'", NULL); - self->virtual_BroadcastMultiplayerProgressBarInfo(); + (self->virtual_BroadcastMultiplayerProgressBarInfo)(); return 0; } @@ -160747,7 +164394,7 @@ static int tolua_function_CChitin_virtual_SetCDSwitchStatus(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetCDSwitchStatus'", NULL); - self->virtual_SetCDSwitchStatus(tolua_function_tointeger(L, 2, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 3, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 4, "virtual_SetCDSwitchStatus"), (const CString*)tolua_tousertype_dynamic(L, 5, 0, "CString"), tolua_function_tointeger(L, 6, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 7, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 8, "virtual_SetCDSwitchStatus")); + (self->virtual_SetCDSwitchStatus)(tolua_function_tointeger(L, 2, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 3, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 4, "virtual_SetCDSwitchStatus"), (const CString*)tolua_tousertype_dynamic(L, 5, 0, "CString"), tolua_function_tointeger(L, 6, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 7, "virtual_SetCDSwitchStatus"), tolua_function_tointeger(L, 8, "virtual_SetCDSwitchStatus")); return 0; } @@ -160755,7 +164402,7 @@ static int tolua_function_CChitin_virtual_SetCDSwitchActivateEngine(lua_State* L { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetCDSwitchActivateEngine'", NULL); - self->virtual_SetCDSwitchActivateEngine(tolua_function_tointeger(L, 2, "virtual_SetCDSwitchActivateEngine")); + (self->virtual_SetCDSwitchActivateEngine)(tolua_function_tointeger(L, 2, "virtual_SetCDSwitchActivateEngine")); return 0; } @@ -160763,7 +164410,7 @@ static int tolua_function_CChitin_virtual_OnMultiplayerSessionOpen(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMultiplayerSessionOpen'", NULL); - self->virtual_OnMultiplayerSessionOpen((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString")); + (self->virtual_OnMultiplayerSessionOpen)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString")); return 0; } @@ -160771,7 +164418,7 @@ static int tolua_function_CChitin_virtual_OnMultiplayerSessionToClose(lua_State* { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMultiplayerSessionToClose'", NULL); - self->virtual_OnMultiplayerSessionToClose(); + (self->virtual_OnMultiplayerSessionToClose)(); return 0; } @@ -160779,7 +164426,7 @@ static int tolua_function_CChitin_virtual_OnMultiplayerSessionClose(lua_State* L { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMultiplayerSessionClose'", NULL); - self->virtual_OnMultiplayerSessionClose(); + (self->virtual_OnMultiplayerSessionClose)(); return 0; } @@ -160787,7 +164434,7 @@ static int tolua_function_CChitin_virtual_OnMultiplayerPlayerJoin(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMultiplayerPlayerJoin'", NULL); - self->virtual_OnMultiplayerPlayerJoin(tolua_function_tointeger(L, 2, "virtual_OnMultiplayerPlayerJoin"), (const CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + (self->virtual_OnMultiplayerPlayerJoin)(tolua_function_tointeger(L, 2, "virtual_OnMultiplayerPlayerJoin"), (const CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); return 0; } @@ -160795,7 +164442,7 @@ static int tolua_function_CChitin_virtual_OnMultiplayerPlayerVisible(lua_State* { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMultiplayerPlayerVisible'", NULL); - self->virtual_OnMultiplayerPlayerVisible(tolua_function_tointeger(L, 2, "virtual_OnMultiplayerPlayerVisible")); + (self->virtual_OnMultiplayerPlayerVisible)(tolua_function_tointeger(L, 2, "virtual_OnMultiplayerPlayerVisible")); return 0; } @@ -160803,7 +164450,7 @@ static int tolua_function_CChitin_virtual_OnMultiplayerPlayerLeave(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMultiplayerPlayerLeave'", NULL); - self->virtual_OnMultiplayerPlayerLeave(tolua_function_tointeger(L, 2, "virtual_OnMultiplayerPlayerLeave"), (const CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); + (self->virtual_OnMultiplayerPlayerLeave)(tolua_function_tointeger(L, 2, "virtual_OnMultiplayerPlayerLeave"), (const CString*)tolua_tousertype_dynamic(L, 3, 0, "CString")); return 0; } @@ -160811,7 +164458,7 @@ static int tolua_function_CChitin_virtual_MessageCallback(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_MessageCallback'", NULL); - int returnVal = self->virtual_MessageCallback((unsigned __int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"), tolua_function_tointeger(L, 3, "virtual_MessageCallback")); + int returnVal = (self->virtual_MessageCallback)((unsigned __int8*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int8>"), tolua_function_tointeger(L, 3, "virtual_MessageCallback")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160820,7 +164467,7 @@ static int tolua_function_CChitin_virtual_GetGamespyResponse(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGamespyResponse'", NULL); - unsigned __int8 returnVal = self->virtual_GetGamespyResponse(tolua_function_tointeger(L, 2, "virtual_GetGamespyResponse"), (unsigned __int8**)tolua_tousertype_dynamic(L, 3, 0, "Pointer"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); + unsigned __int8 returnVal = (self->virtual_GetGamespyResponse)(tolua_function_tointeger(L, 2, "virtual_GetGamespyResponse"), (unsigned __int8**)tolua_tousertype_dynamic(L, 3, 0, "Pointer"), (unsigned int*)tolua_tousertype_dynamic(L, 4, 0, "Primitive")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160829,7 +164476,7 @@ static int tolua_function_CChitin_virtual_AsynchronousUpdate(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AsynchronousUpdate'", NULL); - self->virtual_AsynchronousUpdate(tolua_function_tointeger(L, 2, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 3, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 4, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 5, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 6, "virtual_AsynchronousUpdate")); + (self->virtual_AsynchronousUpdate)(tolua_function_tointeger(L, 2, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 3, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 4, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 5, "virtual_AsynchronousUpdate"), tolua_function_tointeger(L, 6, "virtual_AsynchronousUpdate")); return 0; } @@ -160837,7 +164484,7 @@ static int tolua_function_CChitin_virtual_SelectEngine(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SelectEngine'", NULL); - self->virtual_SelectEngine((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); + (self->virtual_SelectEngine)((CWarp*)tolua_tousertype_dynamic(L, 2, 0, "EEex_CWarp")); return 0; } @@ -160845,7 +164492,7 @@ static int tolua_function_CChitin_virtual_ShutDown(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ShutDown'", NULL); - self->virtual_ShutDown(tolua_function_tointeger(L, 2, "virtual_ShutDown"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); + (self->virtual_ShutDown)(tolua_function_tointeger(L, 2, "virtual_ShutDown"), *(const char**)tolua_tousertype_dynamic(L, 3, 0, "ConstCharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); return 0; } @@ -160853,7 +164500,7 @@ static int tolua_function_CChitin_virtual_GetNumberSoundChannels(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNumberSoundChannels'", NULL); - unsigned __int8 returnVal = self->virtual_GetNumberSoundChannels(); + unsigned __int8 returnVal = (self->virtual_GetNumberSoundChannels)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160862,7 +164509,7 @@ static int tolua_function_CChitin_virtual_GetMovieVolume(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMovieVolume'", NULL); - int returnVal = self->virtual_GetMovieVolume(); + int returnVal = (self->virtual_GetMovieVolume)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160871,7 +164518,7 @@ static int tolua_function_CChitin_virtual_LoadOptions(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_LoadOptions'", NULL); - self->virtual_LoadOptions(); + (self->virtual_LoadOptions)(); return 0; } @@ -160879,7 +164526,7 @@ static int tolua_function_CChitin_virtual_PreLoadFonts(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_PreLoadFonts'", NULL); - self->virtual_PreLoadFonts(); + (self->virtual_PreLoadFonts)(); return 0; } @@ -160887,7 +164534,7 @@ static int tolua_function_CChitin_virtual_SetSoundVolumes(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSoundVolumes'", NULL); - self->virtual_SetSoundVolumes(); + (self->virtual_SetSoundVolumes)(); return 0; } @@ -160895,7 +164542,7 @@ static int tolua_function_CChitin_virtual_GetMultiplayerGameSpyPort(lua_State* L { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMultiplayerGameSpyPort'", NULL); - unsigned __int16 returnVal = self->virtual_GetMultiplayerGameSpyPort(); + unsigned __int16 returnVal = (self->virtual_GetMultiplayerGameSpyPort)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160904,7 +164551,7 @@ static int tolua_function_CChitin_virtual_GetMultiplayerDirectPlayPort(lua_State { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMultiplayerDirectPlayPort'", NULL); - unsigned __int16 returnVal = self->virtual_GetMultiplayerDirectPlayPort(); + unsigned __int16 returnVal = (self->virtual_GetMultiplayerDirectPlayPort)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160913,7 +164560,7 @@ static int tolua_function_CChitin_virtual_SetRenderCount(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetRenderCount'", NULL); - self->virtual_SetRenderCount(tolua_function_tointeger(L, 2, "virtual_SetRenderCount")); + (self->virtual_SetRenderCount)(tolua_function_tointeger(L, 2, "virtual_SetRenderCount")); return 0; } @@ -160921,7 +164568,7 @@ static int tolua_function_CChitin_virtual_ConfirmQuit(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ConfirmQuit'", NULL); - int returnVal = self->virtual_ConfirmQuit(); + int returnVal = (self->virtual_ConfirmQuit)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160930,7 +164577,7 @@ static int tolua_function_CChitin_virtual_GetGameSpyGameName(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGameSpyGameName'", NULL); - self->virtual_GetGameSpyGameName((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->virtual_GetGameSpyGameName)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -160938,7 +164585,7 @@ static int tolua_function_CChitin_virtual_GetGameSpyCode(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetGameSpyCode'", NULL); - self->virtual_GetGameSpyCode((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); + (self->virtual_GetGameSpyCode)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString")); return 0; } @@ -160946,7 +164593,7 @@ static int tolua_function_CChitin_virtual_GetPanicCDStrings(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPanicCDStrings'", NULL); - self->virtual_GetPanicCDStrings((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString")); + (self->virtual_GetPanicCDStrings)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString")); return 0; } @@ -160954,7 +164601,7 @@ static int tolua_function_CChitin_virtual_OnMixerInitialize(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnMixerInitialize'", NULL); - self->virtual_OnMixerInitialize(); + (self->virtual_OnMixerInitialize)(); return 0; } @@ -160962,7 +164609,7 @@ static int tolua_function_CChitin_virtual_Is3DSound(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Is3DSound'", NULL); - int returnVal = self->virtual_Is3DSound(tolua_function_tointeger(L, 2, "virtual_Is3DSound")); + int returnVal = (self->virtual_Is3DSound)(tolua_function_tointeger(L, 2, "virtual_Is3DSound")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160971,7 +164618,7 @@ static int tolua_function_CChitin_virtual_GetEAXActive(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetEAXActive'", NULL); - int returnVal = self->virtual_GetEAXActive(); + int returnVal = (self->virtual_GetEAXActive)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160980,7 +164627,7 @@ static int tolua_function_CChitin_virtual_RedrawScreen(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RedrawScreen'", NULL); - self->virtual_RedrawScreen(); + (self->virtual_RedrawScreen)(); return 0; } @@ -160988,7 +164635,7 @@ static int tolua_function_CChitin_virtual_GetSoundEnvironment(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetSoundEnvironment'", NULL); - unsigned __int8 returnVal = self->virtual_GetSoundEnvironment(*(CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 6, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 7, 0, "Primitive")); + unsigned __int8 returnVal = (self->virtual_GetSoundEnvironment)(*(CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 6, 0, "Primitive"), (float*)tolua_tousertype_dynamic(L, 7, 0, "Primitive")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -160997,7 +164644,7 @@ static int tolua_function_CChitin_virtual_CutsceneModeActive(lua_State* L) { CChitin* self = (CChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CutsceneModeActive'", NULL); - unsigned __int8 returnVal = self->virtual_CutsceneModeActive(); + unsigned __int8 returnVal = (self->virtual_CutsceneModeActive)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -162956,7 +166603,7 @@ static int tolua_function_CItem_GetAbility(lua_State* L) { CItem* self = (CItem*)tolua_tousertype_dynamic(L, 1, 0, "CItem"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAbility'", NULL); - Item_ability_st* returnVal = self->GetAbility(tolua_function_tointeger(L, 2, "GetAbility")); + Item_ability_st* returnVal = (self->GetAbility)(tolua_function_tointeger(L, 2, "GetAbility")); tolua_pushusertype(L, (void*)returnVal, "Item_ability_st"); return 1; } @@ -162965,7 +166612,7 @@ static int tolua_function_CItem_virtual_Destruct(lua_State* L) { CItem* self = (CItem*)tolua_tousertype_dynamic(L, 1, 0, "CItem"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -165009,7 +168656,7 @@ static int tolua_function_CInfinity_FitViewPosition(lua_State* L) { CInfinity* self = (CInfinity*)tolua_tousertype_dynamic(L, 1, 0, "CInfinity"); if (!self) tolua_error(L, "invalid 'self' in calling function 'FitViewPosition'", NULL); - self->FitViewPosition((int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect")); + (self->FitViewPosition)((int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), (int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect")); return 0; } @@ -165017,7 +168664,7 @@ static int tolua_function_CInfinity_ScreenToViewport(lua_State* L) { CInfinity* self = (CInfinity*)tolua_tousertype_dynamic(L, 1, 0, "CInfinity"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ScreenToViewport'", NULL); - CPoint* returnVal = self->ScreenToViewport((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); + CPoint* returnVal = (self->ScreenToViewport)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -165026,7 +168673,7 @@ static int tolua_function_CInfinity_ScreenToWorld(lua_State* L) { CInfinity* self = (CInfinity*)tolua_tousertype_dynamic(L, 1, 0, "CInfinity"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ScreenToWorld'", NULL); - CPoint* returnVal = self->ScreenToWorld((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); + CPoint* returnVal = (self->ScreenToWorld)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -165035,7 +168682,7 @@ static int tolua_function_CInfinity_SetScrollDest(lua_State* L) { CInfinity* self = (CInfinity*)tolua_tousertype_dynamic(L, 1, 0, "CInfinity"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetScrollDest'", NULL); - self->SetScrollDest((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->SetScrollDest)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -165043,7 +168690,7 @@ static int tolua_function_CInfinity_SetViewPosition(lua_State* L) { CInfinity* self = (CInfinity*)tolua_tousertype_dynamic(L, 1, 0, "CInfinity"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetViewPosition'", NULL); - int returnVal = self->SetViewPosition(tolua_function_tointeger(L, 2, "SetViewPosition"), tolua_function_tointeger(L, 3, "SetViewPosition"), tolua_function_tointeger(L, 4, "SetViewPosition")); + int returnVal = (self->SetViewPosition)(tolua_function_tointeger(L, 2, "SetViewPosition"), tolua_function_tointeger(L, 3, "SetViewPosition"), tolua_function_tointeger(L, 4, "SetViewPosition")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -165052,7 +168699,7 @@ static int tolua_function_CInfinity_SetZoom(lua_State* L) { CInfinity* self = (CInfinity*)tolua_tousertype_dynamic(L, 1, 0, "CInfinity"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetZoom'", NULL); - self->SetZoom(tolua_function_tonumber(L, 2, "SetZoom")); + (self->SetZoom)(tolua_function_tonumber(L, 2, "SetZoom")); return 0; } @@ -165428,7 +169075,7 @@ static int tolua_function_CInfButtonArray_SetState(lua_State* L) { CInfButtonArray* self = (CInfButtonArray*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfButtonArray"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetState'", NULL); - int returnVal = self->SetState(tolua_function_tointeger(L, 2, "SetState")); + int returnVal = (self->SetState)(tolua_function_tointeger(L, 2, "SetState")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -169561,7 +173208,7 @@ static int tolua_function_CInfGame_GetCharacterPortraitNum(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetCharacterPortraitNum'", NULL); - short returnVal = self->GetCharacterPortraitNum(tolua_function_tointeger(L, 2, "GetCharacterPortraitNum")); + short returnVal = (self->GetCharacterPortraitNum)(tolua_function_tointeger(L, 2, "GetCharacterPortraitNum")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -169570,7 +173217,7 @@ static int tolua_function_CInfGame_GetFamiliar(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetFamiliar'", NULL); - self->GetFamiliar(tolua_function_tointeger(L, 2, "GetFamiliar"), tolua_function_tointeger(L, 3, "GetFamiliar"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString")); + (self->GetFamiliar)(tolua_function_tointeger(L, 2, "GetFamiliar"), tolua_function_tointeger(L, 3, "GetFamiliar"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString")); return 0; } @@ -169578,7 +173225,7 @@ static int tolua_function_CInfGame_GetScrollSpeed(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetScrollSpeed'", NULL); - uint returnVal = self->GetScrollSpeed(); + uint returnVal = (self->GetScrollSpeed)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -169587,7 +173234,7 @@ static int tolua_function_CInfGame_OnPortraitLDblClick(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'OnPortraitLDblClick'", NULL); - self->OnPortraitLDblClick(tolua_function_tointeger(L, 2, "OnPortraitLDblClick")); + (self->OnPortraitLDblClick)(tolua_function_tointeger(L, 2, "OnPortraitLDblClick")); return 0; } @@ -169595,7 +173242,7 @@ static int tolua_function_CInfGame_SelectCharacter(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SelectCharacter'", NULL); - bool returnVal = self->SelectCharacter(tolua_function_tointeger(L, 2, "SelectCharacter"), tolua_function_toboolean(L, 3, "SelectCharacter")); + bool returnVal = (self->SelectCharacter)(tolua_function_tointeger(L, 2, "SelectCharacter"), tolua_function_toboolean(L, 3, "SelectCharacter")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -169604,7 +173251,7 @@ static int tolua_function_CInfGame_SelectToolbar(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SelectToolbar'", NULL); - self->SelectToolbar(); + (self->SelectToolbar)(); return 0; } @@ -169612,7 +173259,7 @@ static int tolua_function_CInfGame_SetIconIndex(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetIconIndex'", NULL); - self->SetIconIndex(tolua_function_tointeger(L, 2, "SetIconIndex")); + (self->SetIconIndex)(tolua_function_tointeger(L, 2, "SetIconIndex")); return 0; } @@ -169620,7 +173267,7 @@ static int tolua_function_CInfGame_SetState(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetState'", NULL); - self->SetState(tolua_function_tointeger<__int16>(L, 2, "SetState"), tolua_function_toboolean(L, 3, "SetState")); + (self->SetState)(tolua_function_tointeger<__int16>(L, 2, "SetState"), tolua_function_toboolean(L, 3, "SetState")); return 0; } @@ -169628,7 +173275,7 @@ static int tolua_function_CInfGame_UnselectAll(lua_State* L) { CInfGame* self = (CInfGame*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CInfGame"); if (!self) tolua_error(L, "invalid 'self' in calling function 'UnselectAll'", NULL); - self->UnselectAll(); + (self->UnselectAll)(); return 0; } @@ -170678,7 +174325,7 @@ static int tolua_function_CGameEffect_virtual_Destruct(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(tolua_function_tointeger(L, 2, "virtual_Destruct")); + (self->virtual_Destruct)(tolua_function_tointeger(L, 2, "virtual_Destruct")); return 0; } @@ -170686,7 +174333,7 @@ static int tolua_function_CGameEffect_virtual_Copy(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Copy'", NULL); - CGameEffect* returnVal = self->virtual_Copy(); + CGameEffect* returnVal = (self->virtual_Copy)(); tolua_pushusertype(L, (void*)returnVal, "CGameEffect"); return 1; } @@ -170695,7 +174342,7 @@ static int tolua_function_CGameEffect_virtual_ApplyEffect(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ApplyEffect'", NULL); - int returnVal = self->virtual_ApplyEffect((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + int returnVal = (self->virtual_ApplyEffect)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -170704,7 +174351,7 @@ static int tolua_function_CGameEffect_virtual_ResolveEffect(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ResolveEffect'", NULL); - int returnVal = self->virtual_ResolveEffect((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + int returnVal = (self->virtual_ResolveEffect)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -170713,7 +174360,7 @@ static int tolua_function_CGameEffect_virtual_OnAdd(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnAdd'", NULL); - self->virtual_OnAdd((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->virtual_OnAdd)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -170721,7 +174368,7 @@ static int tolua_function_CGameEffect_virtual_OnAddSpecific(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnAddSpecific'", NULL); - self->virtual_OnAddSpecific((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->virtual_OnAddSpecific)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -170729,7 +174376,7 @@ static int tolua_function_CGameEffect_virtual_OnLoad(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnLoad'", NULL); - self->virtual_OnLoad((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->virtual_OnLoad)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -170737,7 +174384,7 @@ static int tolua_function_CGameEffect_virtual_CheckSave(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CheckSave'", NULL); - int returnVal = self->virtual_CheckSave((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 5, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 6, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 7, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 8, 0, "Primitive<__int8>")); + int returnVal = (self->virtual_CheckSave)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 4, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 5, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 6, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 7, 0, "Primitive<__int8>"), (unsigned __int8*)tolua_tousertype_dynamic(L, 8, 0, "Primitive<__int8>")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -170746,7 +174393,7 @@ static int tolua_function_CGameEffect_virtual_UsesDice(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UsesDice'", NULL); - int returnVal = self->virtual_UsesDice(); + int returnVal = (self->virtual_UsesDice)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -170755,7 +174402,7 @@ static int tolua_function_CGameEffect_virtual_DisplayString(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DisplayString'", NULL); - self->virtual_DisplayString((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->virtual_DisplayString)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -170763,7 +174410,7 @@ static int tolua_function_CGameEffect_virtual_OnRemove(lua_State* L) { CGameEffect* self = (CGameEffect*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffect"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnRemove'", NULL); - self->virtual_OnRemove((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + (self->virtual_OnRemove)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); return 0; } @@ -170969,7 +174616,7 @@ static int tolua_function_CGameEffectDamage_virtual_DisplayDamageAmount(lua_Stat { CGameEffectDamage* self = (CGameEffectDamage*)tolua_tousertype_dynamic(L, 1, 0, "CGameEffectDamage"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DisplayDamageAmount'", NULL); - self->virtual_DisplayDamageAmount((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), tolua_function_tointeger(L, 3, "virtual_DisplayDamageAmount")); + (self->virtual_DisplayDamageAmount)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite"), tolua_function_tointeger(L, 3, "virtual_DisplayDamageAmount")); return 0; } @@ -171419,7 +175066,7 @@ static int tolua_function_CGameAnimationType_virtual_Destruct(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -171427,7 +175074,7 @@ static int tolua_function_CGameAnimationType_virtual_CalculateFxRect(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CalculateFxRect'", NULL); - self->virtual_CalculateFxRect((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_CalculateFxRect")); + (self->virtual_CalculateFxRect)((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_CalculateFxRect")); return 0; } @@ -171435,7 +175082,7 @@ static int tolua_function_CGameAnimationType_virtual_CalculateGCBoundsRect(lua_S { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CalculateGCBoundsRect'", NULL); - self->virtual_CalculateGCBoundsRect((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (const CPoint*)tolua_tousertype_dynamic(L, 4, 0, "CPoint"), tolua_function_tointeger(L, 5, "virtual_CalculateGCBoundsRect"), tolua_function_tointeger(L, 6, "virtual_CalculateGCBoundsRect"), tolua_function_tointeger(L, 7, "virtual_CalculateGCBoundsRect")); + (self->virtual_CalculateGCBoundsRect)((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (const CPoint*)tolua_tousertype_dynamic(L, 4, 0, "CPoint"), tolua_function_tointeger(L, 5, "virtual_CalculateGCBoundsRect"), tolua_function_tointeger(L, 6, "virtual_CalculateGCBoundsRect"), tolua_function_tointeger(L, 7, "virtual_CalculateGCBoundsRect")); return 0; } @@ -171443,7 +175090,7 @@ static int tolua_function_CGameAnimationType_virtual_ChangeDirection(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ChangeDirection'", NULL); - self->virtual_ChangeDirection(tolua_function_tointeger<__int16>(L, 2, "virtual_ChangeDirection")); + (self->virtual_ChangeDirection)(tolua_function_tointeger<__int16>(L, 2, "virtual_ChangeDirection")); return 0; } @@ -171451,7 +175098,7 @@ static int tolua_function_CGameAnimationType_virtual_EquipArmor(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EquipArmor'", NULL); - self->virtual_EquipArmor(tolua_function_tochar(L, 2, "virtual_EquipArmor"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); + (self->virtual_EquipArmor)(tolua_function_tochar(L, 2, "virtual_EquipArmor"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); return 0; } @@ -171459,7 +175106,7 @@ static int tolua_function_CGameAnimationType_virtual_EquipHelmet(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EquipHelmet'", NULL); - self->virtual_EquipHelmet((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); + (self->virtual_EquipHelmet)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); return 0; } @@ -171467,7 +175114,7 @@ static int tolua_function_CGameAnimationType_virtual_EquipShield(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EquipShield'", NULL); - self->virtual_EquipShield((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); + (self->virtual_EquipShield)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>")); return 0; } @@ -171475,7 +175122,7 @@ static int tolua_function_CGameAnimationType_virtual_EquipWeapon(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EquipWeapon'", NULL); - self->virtual_EquipWeapon((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>"), tolua_function_tointeger(L, 4, "virtual_EquipWeapon"), (const unsigned __int16*)tolua_tousertype_dynamic(L, 5, 0, "Primitive<__int16>")); + (self->virtual_EquipWeapon)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (unsigned __int8*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int8>"), tolua_function_tointeger(L, 4, "virtual_EquipWeapon"), (const unsigned __int16*)tolua_tousertype_dynamic(L, 5, 0, "Primitive<__int16>")); return 0; } @@ -171483,7 +175130,7 @@ static int tolua_function_CGameAnimationType_virtual_GetAnimationPalette(lua_Sta { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAnimationPalette'", NULL); - CVidPalette* returnVal = self->virtual_GetAnimationPalette(tolua_function_tointeger(L, 2, "virtual_GetAnimationPalette")); + CVidPalette* returnVal = (self->virtual_GetAnimationPalette)(tolua_function_tointeger(L, 2, "virtual_GetAnimationPalette")); tolua_pushusertype(L, (void*)returnVal, "CVidPalette"); return 1; } @@ -171492,7 +175139,7 @@ static int tolua_function_CGameAnimationType_virtual_GetAnimationResRef(lua_Stat { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAnimationResRef'", NULL); - self->virtual_GetAnimationResRef((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), tolua_function_tointeger(L, 3, "virtual_GetAnimationResRef")); + (self->virtual_GetAnimationResRef)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), tolua_function_tointeger(L, 3, "virtual_GetAnimationResRef")); return 0; } @@ -171500,7 +175147,7 @@ static int tolua_function_CGameAnimationType_virtual_CanLieDown(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CanLieDown'", NULL); - unsigned __int8 returnVal = self->virtual_CanLieDown(); + unsigned __int8 returnVal = (self->virtual_CanLieDown)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171509,7 +175156,7 @@ static int tolua_function_CGameAnimationType_virtual_DetectedByInfravision(lua_S { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DetectedByInfravision'", NULL); - unsigned __int8 returnVal = self->virtual_DetectedByInfravision(); + unsigned __int8 returnVal = (self->virtual_DetectedByInfravision)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171518,7 +175165,7 @@ static int tolua_function_CGameAnimationType_virtual_GetCastFrame(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCastFrame'", NULL); - unsigned __int16 returnVal = self->virtual_GetCastFrame(); + unsigned __int16 returnVal = (self->virtual_GetCastFrame)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171527,7 +175174,7 @@ static int tolua_function_CGameAnimationType_virtual_GetColorBlood(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetColorBlood'", NULL); - unsigned __int8 returnVal = self->virtual_GetColorBlood(); + unsigned __int8 returnVal = (self->virtual_GetColorBlood)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171536,7 +175183,7 @@ static int tolua_function_CGameAnimationType_virtual_GetColorChunks(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetColorChunks'", NULL); - unsigned __int8 returnVal = self->virtual_GetColorChunks(); + unsigned __int8 returnVal = (self->virtual_GetColorChunks)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171545,7 +175192,7 @@ static int tolua_function_CGameAnimationType_virtual_GetListType(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetListType'", NULL); - unsigned __int8 returnVal = self->virtual_GetListType(); + unsigned __int8 returnVal = (self->virtual_GetListType)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171554,7 +175201,7 @@ static int tolua_function_CGameAnimationType_virtual_SetListType(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetListType'", NULL); - self->virtual_SetListType(tolua_function_tointeger(L, 2, "virtual_SetListType")); + (self->virtual_SetListType)(tolua_function_tointeger(L, 2, "virtual_SetListType")); return 0; } @@ -171562,7 +175209,7 @@ static int tolua_function_CGameAnimationType_virtual_GetMoveScale(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMoveScale'", NULL); - unsigned __int8 returnVal = self->virtual_GetMoveScale(); + unsigned __int8 returnVal = (self->virtual_GetMoveScale)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171571,7 +175218,7 @@ static int tolua_function_CGameAnimationType_virtual_SetMoveScale(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetMoveScale'", NULL); - self->virtual_SetMoveScale(tolua_function_tointeger(L, 2, "virtual_SetMoveScale")); + (self->virtual_SetMoveScale)(tolua_function_tointeger(L, 2, "virtual_SetMoveScale")); return 0; } @@ -171579,7 +175226,7 @@ static int tolua_function_CGameAnimationType_virtual_ResetMoveScale(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ResetMoveScale'", NULL); - self->virtual_ResetMoveScale(); + (self->virtual_ResetMoveScale)(); return 0; } @@ -171587,7 +175234,7 @@ static int tolua_function_CGameAnimationType_virtual_GetMoveScaleDefault(lua_Sta { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetMoveScaleDefault'", NULL); - unsigned __int8 returnVal = self->virtual_GetMoveScaleDefault(); + unsigned __int8 returnVal = (self->virtual_GetMoveScaleDefault)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171596,7 +175243,7 @@ static int tolua_function_CGameAnimationType_virtual_GetEllipseRect(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetEllipseRect'", NULL); - const CRect* returnVal = self->virtual_GetEllipseRect(); + const CRect* returnVal = (self->virtual_GetEllipseRect)(); tolua_pushusertype(L, (void*)returnVal, "CRect"); return 1; } @@ -171605,7 +175252,7 @@ static int tolua_function_CGameAnimationType_virtual_GetPathSmooth(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPathSmooth'", NULL); - int returnVal = self->virtual_GetPathSmooth(); + int returnVal = (self->virtual_GetPathSmooth)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171614,7 +175261,7 @@ static int tolua_function_CGameAnimationType_virtual_GetPersonalSpace(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPersonalSpace'", NULL); - unsigned __int8 returnVal = self->virtual_GetPersonalSpace(); + unsigned __int8 returnVal = (self->virtual_GetPersonalSpace)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171623,7 +175270,7 @@ static int tolua_function_CGameAnimationType_virtual_GetSndWalkFreq(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetSndWalkFreq'", NULL); - unsigned int returnVal = self->virtual_GetSndWalkFreq(); + unsigned int returnVal = (self->virtual_GetSndWalkFreq)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171632,7 +175279,7 @@ static int tolua_function_CGameAnimationType_virtual_IsFalseColor(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsFalseColor'", NULL); - int returnVal = self->virtual_IsFalseColor(); + int returnVal = (self->virtual_IsFalseColor)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171641,7 +175288,7 @@ static int tolua_function_CGameAnimationType_virtual_IsInvulnerable(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsInvulnerable'", NULL); - int returnVal = self->virtual_IsInvulnerable(); + int returnVal = (self->virtual_IsInvulnerable)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171650,7 +175297,7 @@ static int tolua_function_CGameAnimationType_virtual_IsMirroring(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsMirroring'", NULL); - int returnVal = self->virtual_IsMirroring(); + int returnVal = (self->virtual_IsMirroring)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171659,7 +175306,7 @@ static int tolua_function_CGameAnimationType_virtual_IsBeginningOfSequence(lua_S { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsBeginningOfSequence'", NULL); - int returnVal = self->virtual_IsBeginningOfSequence(); + int returnVal = (self->virtual_IsBeginningOfSequence)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171668,7 +175315,7 @@ static int tolua_function_CGameAnimationType_virtual_IsEndOfSequence(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsEndOfSequence'", NULL); - int returnVal = self->virtual_IsEndOfSequence(); + int returnVal = (self->virtual_IsEndOfSequence)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171677,7 +175324,7 @@ static int tolua_function_CGameAnimationType_virtual_IsEndOfTwitchSequence(lua_S { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsEndOfTwitchSequence'", NULL); - int returnVal = self->virtual_IsEndOfTwitchSequence(); + int returnVal = (self->virtual_IsEndOfTwitchSequence)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171686,7 +175333,7 @@ static int tolua_function_CGameAnimationType_virtual_IncrementFrame(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IncrementFrame'", NULL); - self->virtual_IncrementFrame(); + (self->virtual_IncrementFrame)(); return 0; } @@ -171694,7 +175341,7 @@ static int tolua_function_CGameAnimationType_virtual_DecrementFrame(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DecrementFrame'", NULL); - self->virtual_DecrementFrame(); + (self->virtual_DecrementFrame)(); return 0; } @@ -171702,7 +175349,7 @@ static int tolua_function_CGameAnimationType_virtual_Render(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Render'", NULL); - self->virtual_Render((CInfinity*)tolua_tousertype_dynamic(L, 2, 0, "CInfinity"), (CVidMode*)tolua_tousertype_dynamic(L, 3, 0, "CVidMode"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect"), (const CPoint*)tolua_tousertype_dynamic(L, 5, 0, "CPoint"), (const CPoint*)tolua_tousertype_dynamic(L, 6, 0, "CPoint"), tolua_function_tointeger(L, 7, "virtual_Render"), tolua_function_tointeger(L, 8, "virtual_Render"), (const CRect*)tolua_tousertype_dynamic(L, 9, 0, "CRect"), tolua_function_tointeger(L, 10, "virtual_Render"), tolua_function_tointeger(L, 11, "virtual_Render"), tolua_function_tointeger(L, 12, "virtual_Render"), tolua_function_tointeger(L, 13, "virtual_Render"), (CGameSprite*)tolua_tousertype_dynamic(L, 14, 0, "CGameSprite")); + (self->virtual_Render)((CInfinity*)tolua_tousertype_dynamic(L, 2, 0, "CInfinity"), (CVidMode*)tolua_tousertype_dynamic(L, 3, 0, "CVidMode"), (const CRect*)tolua_tousertype_dynamic(L, 4, 0, "CRect"), (const CPoint*)tolua_tousertype_dynamic(L, 5, 0, "CPoint"), (const CPoint*)tolua_tousertype_dynamic(L, 6, 0, "CPoint"), tolua_function_tointeger(L, 7, "virtual_Render"), tolua_function_tointeger(L, 8, "virtual_Render"), (const CRect*)tolua_tousertype_dynamic(L, 9, 0, "CRect"), tolua_function_tointeger(L, 10, "virtual_Render"), tolua_function_tointeger(L, 11, "virtual_Render"), tolua_function_tointeger(L, 12, "virtual_Render"), tolua_function_tointeger(L, 13, "virtual_Render"), (CGameSprite*)tolua_tousertype_dynamic(L, 14, 0, "CGameSprite")); return 0; } @@ -171710,7 +175357,7 @@ static int tolua_function_CGameAnimationType_virtual_ClearColorEffects(lua_State { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ClearColorEffects'", NULL); - self->virtual_ClearColorEffects(tolua_function_tointeger(L, 2, "virtual_ClearColorEffects")); + (self->virtual_ClearColorEffects)(tolua_function_tointeger(L, 2, "virtual_ClearColorEffects")); return 0; } @@ -171718,7 +175365,7 @@ static int tolua_function_CGameAnimationType_virtual_ClearColorEffectsAll(lua_St { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ClearColorEffectsAll'", NULL); - self->virtual_ClearColorEffectsAll(); + (self->virtual_ClearColorEffectsAll)(); return 0; } @@ -171726,7 +175373,7 @@ static int tolua_function_CGameAnimationType_virtual_SetColorEffect(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetColorEffect'", NULL); - self->virtual_SetColorEffect(tolua_function_tointeger(L, 2, "virtual_SetColorEffect"), tolua_function_tointeger(L, 3, "virtual_SetColorEffect"), tolua_function_tointeger(L, 4, "virtual_SetColorEffect"), tolua_function_tointeger(L, 5, "virtual_SetColorEffect")); + (self->virtual_SetColorEffect)(tolua_function_tointeger(L, 2, "virtual_SetColorEffect"), tolua_function_tointeger(L, 3, "virtual_SetColorEffect"), tolua_function_tointeger(L, 4, "virtual_SetColorEffect"), tolua_function_tointeger(L, 5, "virtual_SetColorEffect")); return 0; } @@ -171734,7 +175381,7 @@ static int tolua_function_CGameAnimationType_virtual_SetColorEffectAll(lua_State { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetColorEffectAll'", NULL); - self->virtual_SetColorEffectAll(tolua_function_tointeger(L, 2, "virtual_SetColorEffectAll"), tolua_function_tointeger(L, 3, "virtual_SetColorEffectAll"), tolua_function_tointeger(L, 4, "virtual_SetColorEffectAll")); + (self->virtual_SetColorEffectAll)(tolua_function_tointeger(L, 2, "virtual_SetColorEffectAll"), tolua_function_tointeger(L, 3, "virtual_SetColorEffectAll"), tolua_function_tointeger(L, 4, "virtual_SetColorEffectAll")); return 0; } @@ -171742,7 +175389,7 @@ static int tolua_function_CGameAnimationType_virtual_SetColorRange(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetColorRange'", NULL); - self->virtual_SetColorRange(tolua_function_tointeger(L, 2, "virtual_SetColorRange"), tolua_function_tointeger(L, 3, "virtual_SetColorRange")); + (self->virtual_SetColorRange)(tolua_function_tointeger(L, 2, "virtual_SetColorRange"), tolua_function_tointeger(L, 3, "virtual_SetColorRange")); return 0; } @@ -171750,7 +175397,7 @@ static int tolua_function_CGameAnimationType_virtual_SetColorRangeAll(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetColorRangeAll'", NULL); - self->virtual_SetColorRangeAll(tolua_function_tointeger(L, 2, "virtual_SetColorRangeAll")); + (self->virtual_SetColorRangeAll)(tolua_function_tointeger(L, 2, "virtual_SetColorRangeAll")); return 0; } @@ -171758,7 +175405,7 @@ static int tolua_function_CGameAnimationType_virtual_SetSequence(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetSequence'", NULL); - __int16 returnVal = self->virtual_SetSequence(tolua_function_tointeger<__int16>(L, 2, "virtual_SetSequence")); + __int16 returnVal = (self->virtual_SetSequence)(tolua_function_tointeger<__int16>(L, 2, "virtual_SetSequence")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171767,7 +175414,7 @@ static int tolua_function_CGameAnimationType_virtual_GetHeightOffset(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetHeightOffset'", NULL); - int returnVal = self->virtual_GetHeightOffset(); + int returnVal = (self->virtual_GetHeightOffset)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171776,7 +175423,7 @@ static int tolua_function_CGameAnimationType_virtual_CalculateFxRectMax(lua_Stat { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CalculateFxRectMax'", NULL); - self->virtual_CalculateFxRectMax((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_CalculateFxRectMax")); + (self->virtual_CalculateFxRectMax)((CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_CalculateFxRectMax")); return 0; } @@ -171784,7 +175431,7 @@ static int tolua_function_CGameAnimationType_virtual_CalculateEllipseRect(lua_St { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CalculateEllipseRect'", NULL); - self->virtual_CalculateEllipseRect(); + (self->virtual_CalculateEllipseRect)(); return 0; } @@ -171792,7 +175439,7 @@ static int tolua_function_CGameAnimationType_virtual_SetNeckOffsets(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetNeckOffsets'", NULL); - self->virtual_SetNeckOffsets(tolua_function_tointeger<__int16>(L, 2, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 3, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 4, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 5, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 6, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 7, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 8, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 9, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 10, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 11, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 12, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 13, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 14, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 15, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 16, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 17, "virtual_SetNeckOffsets")); + (self->virtual_SetNeckOffsets)(tolua_function_tointeger<__int16>(L, 2, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 3, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 4, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 5, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 6, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 7, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 8, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 9, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 10, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 11, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 12, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 13, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 14, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 15, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 16, "virtual_SetNeckOffsets"), tolua_function_tointeger<__int16>(L, 17, "virtual_SetNeckOffsets")); return 0; } @@ -171800,7 +175447,7 @@ static int tolua_function_CGameAnimationType_virtual_GetAttackFrameType(lua_Stat { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAttackFrameType'", NULL); - unsigned __int8 returnVal = self->virtual_GetAttackFrameType(tolua_function_tointeger(L, 2, "virtual_GetAttackFrameType"), tolua_function_tointeger(L, 3, "virtual_GetAttackFrameType"), tolua_function_tointeger(L, 4, "virtual_GetAttackFrameType")); + unsigned __int8 returnVal = (self->virtual_GetAttackFrameType)(tolua_function_tointeger(L, 2, "virtual_GetAttackFrameType"), tolua_function_tointeger(L, 3, "virtual_GetAttackFrameType"), tolua_function_tointeger(L, 4, "virtual_GetAttackFrameType")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171809,7 +175456,7 @@ static int tolua_function_CGameAnimationType_virtual_GetAboveGround(lua_State* L { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAboveGround'", NULL); - int returnVal = self->virtual_GetAboveGround(); + int returnVal = (self->virtual_GetAboveGround)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171818,7 +175465,7 @@ static int tolua_function_CGameAnimationType_virtual_GetAwakePlayInReverse(lua_S { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAwakePlayInReverse'", NULL); - __int16 returnVal = self->virtual_GetAwakePlayInReverse(); + __int16 returnVal = (self->virtual_GetAwakePlayInReverse)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171827,7 +175474,7 @@ static int tolua_function_CGameAnimationType_virtual_SetBrightest(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetBrightest'", NULL); - self->virtual_SetBrightest(tolua_function_tointeger(L, 2, "virtual_SetBrightest")); + (self->virtual_SetBrightest)(tolua_function_tointeger(L, 2, "virtual_SetBrightest")); return 0; } @@ -171835,7 +175482,7 @@ static int tolua_function_CGameAnimationType_virtual_SetBrightestDesired(lua_Sta { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetBrightestDesired'", NULL); - self->virtual_SetBrightestDesired(tolua_function_tointeger(L, 2, "virtual_SetBrightestDesired")); + (self->virtual_SetBrightestDesired)(tolua_function_tointeger(L, 2, "virtual_SetBrightestDesired")); return 0; } @@ -171843,7 +175490,7 @@ static int tolua_function_CGameAnimationType_virtual_GetCastHeight(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCastHeight'", NULL); - __int16 returnVal = self->virtual_GetCastHeight(); + __int16 returnVal = (self->virtual_GetCastHeight)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171852,7 +175499,7 @@ static int tolua_function_CGameAnimationType_virtual_GetCastingOffset(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCastingOffset'", NULL); - self->virtual_GetCastingOffset((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_GetCastingOffset)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -171860,7 +175507,7 @@ static int tolua_function_CGameAnimationType_virtual_GetCurrentSequenceAndFrame( { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCurrentSequenceAndFrame'", NULL); - unsigned __int8 returnVal = self->virtual_GetCurrentSequenceAndFrame((__int16*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"), (__int16*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int16>")); + unsigned __int8 returnVal = (self->virtual_GetCurrentSequenceAndFrame)((__int16*)tolua_tousertype_dynamic(L, 2, 0, "Primitive<__int16>"), (__int16*)tolua_tousertype_dynamic(L, 3, 0, "Primitive<__int16>")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171869,7 +175516,7 @@ static int tolua_function_CGameAnimationType_virtual_GetCurrentResRef(lua_State* { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCurrentResRef'", NULL); - unsigned __int8 returnVal = self->virtual_GetCurrentResRef((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 5, 0, "CString")); + unsigned __int8 returnVal = (self->virtual_GetCurrentResRef)((CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 3, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 4, 0, "CString"), (CString*)tolua_tousertype_dynamic(L, 5, 0, "CString")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -171878,7 +175525,7 @@ static int tolua_function_CGameAnimationType_virtual_OverrideAnimation(lua_State { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OverrideAnimation'", NULL); - self->virtual_OverrideAnimation(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "virtual_OverrideAnimation")); + (self->virtual_OverrideAnimation)(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef"), tolua_function_tointeger(L, 3, "virtual_OverrideAnimation")); return 0; } @@ -171886,7 +175533,7 @@ static int tolua_function_CGameAnimationType_virtual_Marshal(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Marshal'", NULL); - self->virtual_Marshal((unsigned __int8**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + (self->virtual_Marshal)((unsigned __int8**)tolua_tousertype_dynamic(L, 2, 0, "Pointer"), (unsigned int*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); return 0; } @@ -171894,7 +175541,7 @@ static int tolua_function_CGameAnimationType_virtual_Unmarshal(lua_State* L) { CGameAnimationType* self = (CGameAnimationType*)tolua_tousertype_dynamic(L, 1, 0, "CGameAnimationType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Unmarshal'", NULL); - bool returnVal = self->virtual_Unmarshal(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); + bool returnVal = (self->virtual_Unmarshal)(*(CResRef*)tolua_tousertype_dynamic(L, 2, 0, "CResRef")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -178131,7 +181778,7 @@ static int tolua_function_CDerivedStats_Destruct(lua_State* L) { CDerivedStats* self = (CDerivedStats*)tolua_tousertype_dynamic(L, 1, 0, "CDerivedStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -178139,7 +181786,7 @@ static int tolua_function_CDerivedStats_GetAtOffset(lua_State* L) { CDerivedStats* self = (CDerivedStats*)tolua_tousertype_dynamic(L, 1, 0, "CDerivedStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAtOffset'", NULL); - long returnVal = self->GetAtOffset(tolua_function_tointeger(L, 2, "GetAtOffset")); + long returnVal = (self->GetAtOffset)(tolua_function_tointeger(L, 2, "GetAtOffset")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -178148,7 +181795,7 @@ static int tolua_function_CDerivedStats_GetSpellState(lua_State* L) { CDerivedStats* self = (CDerivedStats*)tolua_tousertype_dynamic(L, 1, 0, "CDerivedStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetSpellState'", NULL); - int returnVal = self->GetSpellState(tolua_function_tointeger(L, 2, "GetSpellState")); + int returnVal = (self->GetSpellState)(tolua_function_tointeger(L, 2, "GetSpellState")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -178157,7 +181804,7 @@ static int tolua_function_CDerivedStats_GetWizardLevelCast(lua_State* L) { CDerivedStats* self = (CDerivedStats*)tolua_tousertype_dynamic(L, 1, 0, "CDerivedStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetWizardLevelCast'", NULL); - byte returnVal = self->GetWizardLevelCast(tolua_function_tointeger(L, 2, "GetWizardLevelCast")); + byte returnVal = (self->GetWizardLevelCast)(tolua_function_tointeger(L, 2, "GetWizardLevelCast")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -178166,7 +181813,7 @@ static int tolua_function_CDerivedStats_GetPriestLevelCast(lua_State* L) { CDerivedStats* self = (CDerivedStats*)tolua_tousertype_dynamic(L, 1, 0, "CDerivedStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetPriestLevelCast'", NULL); - byte returnVal = self->GetPriestLevelCast(tolua_function_tointeger(L, 2, "GetPriestLevelCast")); + byte returnVal = (self->GetPriestLevelCast)(tolua_function_tointeger(L, 2, "GetPriestLevelCast")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -178175,7 +181822,7 @@ static int tolua_function_CDerivedStats_GetAverageLevel(lua_State* L) { CDerivedStats* self = (CDerivedStats*)tolua_tousertype_dynamic(L, 1, 0, "CDerivedStats"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAverageLevel'", NULL); - byte returnVal = self->GetAverageLevel(tolua_function_tointeger(L, 2, "GetAverageLevel")); + byte returnVal = (self->GetAverageLevel)(tolua_function_tointeger(L, 2, "GetAverageLevel")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -180248,7 +183895,7 @@ static int tolua_function_CClosure_f(lua_State* L) { CClosure* self = (CClosure*)tolua_tousertype_dynamic(L, 1, 0, "CClosure"); if (!self) tolua_error(L, "invalid 'self' in calling function 'f'", NULL); - int returnVal = self->f((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); + int returnVal = (self->f)((lua_State*)tolua_tousertype_dynamic(L, 2, 0, "lua_State")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -182825,7 +186472,7 @@ static int tolua_function_CBaldurChitin_virtual_ShutDown_2(lua_State* L) { CBaldurChitin* self = (CBaldurChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ShutDown_2'", NULL); - self->virtual_ShutDown_2(tolua_function_tointeger(L, 2, "virtual_ShutDown_2"), *(char**)tolua_tousertype_dynamic(L, 3, 0, "CharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); + (self->virtual_ShutDown_2)(tolua_function_tointeger(L, 2, "virtual_ShutDown_2"), *(char**)tolua_tousertype_dynamic(L, 3, 0, "CharString"), *(const char**)tolua_tousertype_dynamic(L, 4, 0, "ConstCharString")); return 0; } @@ -182833,7 +186480,7 @@ static int tolua_function_CBaldurChitin_virtual_UnloadFonts(lua_State* L) { CBaldurChitin* self = (CBaldurChitin*)tolua_tousertype_dynamic(L, 1, 0, "EEex_CBaldurChitin"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UnloadFonts'", NULL); - self->virtual_UnloadFonts(); + (self->virtual_UnloadFonts)(); return 0; } @@ -183173,7 +186820,7 @@ static int tolua_function_CGameAreaNotes_UpdateButtonPositions(lua_State* L) { CGameAreaNotes* self = (CGameAreaNotes*)tolua_tousertype_dynamic(L, 1, 0, "CGameAreaNotes"); if (!self) tolua_error(L, "invalid 'self' in calling function 'UpdateButtonPositions'", NULL); - self->UpdateButtonPositions(); + (self->UpdateButtonPositions)(); return 0; } @@ -185925,7 +189572,7 @@ static int tolua_function_CGameArea_Override_AdjustTarget(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Override_AdjustTarget'", NULL); - int returnVal = self->Override_AdjustTarget(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "Override_AdjustTarget"), tolua_function_tointeger(L, 5, "Override_AdjustTarget")); + int returnVal = (self->Override_AdjustTarget)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "Override_AdjustTarget"), tolua_function_tointeger(L, 5, "Override_AdjustTarget")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185934,7 +189581,7 @@ static int tolua_function_CGameArea_Override_GetNearest(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Override_GetNearest'", NULL); - int returnVal = self->Override_GetNearest(tolua_function_tointeger(L, 2, "Override_GetNearest"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "Override_GetNearest"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "Override_GetNearest"), tolua_function_tointeger(L, 7, "Override_GetNearest"), tolua_function_tointeger(L, 8, "Override_GetNearest"), tolua_function_tointeger(L, 9, "Override_GetNearest"), tolua_function_tointeger(L, 10, "Override_GetNearest")); + int returnVal = (self->Override_GetNearest)(tolua_function_tointeger(L, 2, "Override_GetNearest"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "Override_GetNearest"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "Override_GetNearest"), tolua_function_tointeger(L, 7, "Override_GetNearest"), tolua_function_tointeger(L, 8, "Override_GetNearest"), tolua_function_tointeger(L, 9, "Override_GetNearest"), tolua_function_tointeger(L, 10, "Override_GetNearest")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185943,7 +189590,7 @@ static int tolua_function_CGameArea_Override_GetNearest2(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Override_GetNearest2'", NULL); - int returnVal = self->Override_GetNearest2(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "Override_GetNearest2"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "Override_GetNearest2"), tolua_function_tointeger(L, 7, "Override_GetNearest2"), tolua_function_tointeger(L, 8, "Override_GetNearest2")); + int returnVal = (self->Override_GetNearest2)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "Override_GetNearest2"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "Override_GetNearest2"), tolua_function_tointeger(L, 7, "Override_GetNearest2"), tolua_function_tointeger(L, 8, "Override_GetNearest2")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185952,7 +189599,7 @@ static int tolua_function_CGameArea_GetNearest_Overload_Point(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetNearest_Overload_Point'", NULL); - int returnVal = self->GetNearest(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "GetNearest_Overload_Point"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "GetNearest_Overload_Point"), tolua_function_tointeger(L, 7, "GetNearest_Overload_Point"), tolua_function_tointeger(L, 8, "GetNearest_Overload_Point")); + int returnVal = (self->GetNearest)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "GetNearest_Overload_Point"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), tolua_function_tointeger(L, 6, "GetNearest_Overload_Point"), tolua_function_tointeger(L, 7, "GetNearest_Overload_Point"), tolua_function_tointeger(L, 8, "GetNearest_Overload_Point")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185961,7 +189608,7 @@ static int tolua_function_CGameArea_AdjustTarget(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AdjustTarget'", NULL); - int returnVal = self->AdjustTarget(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "AdjustTarget"), tolua_function_tointeger(L, 5, "AdjustTarget")); + int returnVal = (self->AdjustTarget)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "AdjustTarget"), tolua_function_tointeger(L, 5, "AdjustTarget")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185970,7 +189617,7 @@ static int tolua_function_CGameArea_CheckWalkable(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'CheckWalkable'", NULL); - int returnVal = self->CheckWalkable((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "CheckWalkable"), tolua_function_tointeger(L, 6, "CheckWalkable")); + int returnVal = (self->CheckWalkable)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "CheckWalkable"), tolua_function_tointeger(L, 6, "CheckWalkable")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185979,7 +189626,7 @@ static int tolua_function_CGameArea_CheckLOS(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'CheckLOS'", NULL); - int returnVal = self->CheckLOS((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (const byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "CheckLOS"), tolua_function_tointeger(L, 6, "CheckLOS")); + int returnVal = (self->CheckLOS)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (const byte*)tolua_tousertype_dynamic(L, 4, 0, "Primitive"), tolua_function_tointeger(L, 5, "CheckLOS"), tolua_function_tointeger(L, 6, "CheckLOS")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -185988,7 +189635,7 @@ static int tolua_function_CGameArea_GetAllInRange_Overload_Point(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAllInRange_Overload_Point'", NULL); - self->GetAllInRange((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "GetAllInRange_Overload_Point"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 6, 0, "CTypedPtrList"), tolua_function_tointeger(L, 7, "GetAllInRange_Overload_Point"), tolua_function_tointeger(L, 8, "GetAllInRange_Overload_Point")); + (self->GetAllInRange)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 3, 0, "CAIObjectType"), tolua_function_tointeger(L, 4, "GetAllInRange_Overload_Point"), (const byte*)tolua_tousertype_dynamic(L, 5, 0, "Primitive"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 6, 0, "CTypedPtrList"), tolua_function_tointeger(L, 7, "GetAllInRange_Overload_Point"), tolua_function_tointeger(L, 8, "GetAllInRange_Overload_Point")); return 0; } @@ -185996,7 +189643,7 @@ static int tolua_function_CGameArea_GetAllInRange_Overload_VertListPos(lua_State { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetAllInRange_Overload_VertListPos'", NULL); - self->GetAllInRange((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 4, 0, "CAIObjectType"), tolua_function_tointeger(L, 5, "GetAllInRange_Overload_VertListPos"), (const byte*)tolua_tousertype_dynamic(L, 6, 0, "Primitive"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 7, 0, "CTypedPtrList"), tolua_function_tointeger(L, 8, "GetAllInRange_Overload_VertListPos"), tolua_function_tointeger(L, 9, "GetAllInRange_Overload_VertListPos")); + (self->GetAllInRange)((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), (const CAIObjectType*)tolua_tousertype_dynamic(L, 4, 0, "CAIObjectType"), tolua_function_tointeger(L, 5, "GetAllInRange_Overload_VertListPos"), (const byte*)tolua_tousertype_dynamic(L, 6, 0, "Primitive"), (CTypedPtrList*)tolua_tousertype_dynamic(L, 7, 0, "CTypedPtrList"), tolua_function_tointeger(L, 8, "GetAllInRange_Overload_VertListPos"), tolua_function_tointeger(L, 9, "GetAllInRange_Overload_VertListPos")); return 0; } @@ -186004,7 +189651,7 @@ static int tolua_function_CGameArea_ApplyEffect(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ApplyEffect'", NULL); - self->ApplyEffect((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect"), tolua_function_tointeger(L, 3, "ApplyEffect"), tolua_function_tointeger(L, 4, "ApplyEffect"), tolua_function_tointeger(L, 5, "ApplyEffect"), (CGameObject*)tolua_tousertype_dynamic(L, 6, 0, "CGameObject")); + (self->ApplyEffect)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect"), tolua_function_tointeger(L, 3, "ApplyEffect"), tolua_function_tointeger(L, 4, "ApplyEffect"), tolua_function_tointeger(L, 5, "ApplyEffect"), (CGameObject*)tolua_tousertype_dynamic(L, 6, 0, "CGameObject")); return 0; } @@ -186012,7 +189659,7 @@ static int tolua_function_CGameArea_OnActionButtonClickGround(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'OnActionButtonClickGround'", NULL); - self->OnActionButtonClickGround((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->OnActionButtonClickGround)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -186020,7 +189667,7 @@ static int tolua_function_CGameArea_ShowMonstersInArea(lua_State* L) { CGameArea* self = (CGameArea*)tolua_tousertype_dynamic(L, 1, 0, "CGameArea"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ShowMonstersInArea'", NULL); - self->ShowMonstersInArea((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); + (self->ShowMonstersInArea)((CGameAreaClairvoyanceEntry*)tolua_tousertype_dynamic(L, 2, 0, "CGameAreaClairvoyanceEntry")); return 0; } @@ -187424,7 +191071,7 @@ static int tolua_function_CAIObjectType_Decode(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Decode'", NULL); - self->Decode((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); + (self->Decode)((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); return 0; } @@ -187432,7 +191079,7 @@ static int tolua_function_CAIObjectType_GetShare(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetShare'", NULL); - CGameObject* returnVal = self->GetShare((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase"), tolua_function_tointeger(L, 3, "GetShare")); + CGameObject* returnVal = (self->GetShare)((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase"), tolua_function_tointeger(L, 3, "GetShare")); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -187441,7 +191088,7 @@ static int tolua_function_CAIObjectType_GetShareType(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetShareType'", NULL); - CGameObject* returnVal = self->GetShareType((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase"), (CGameObjectType)tolua_function_tointeger<__int8>(L, 3, "GetShareType"), tolua_function_tointeger(L, 4, "GetShareType")); + CGameObject* returnVal = (self->GetShareType)((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase"), (CGameObjectType)tolua_function_tointeger<__int8>(L, 3, "GetShareType"), tolua_function_tointeger(L, 4, "GetShareType")); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -187450,7 +191097,7 @@ static int tolua_function_CAIObjectType_OfType(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'OfType'", NULL); - byte returnVal = self->OfType((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "OfType"), tolua_function_tointeger(L, 4, "OfType"), tolua_function_tointeger(L, 5, "OfType")); + byte returnVal = (self->OfType)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "OfType"), tolua_function_tointeger(L, 4, "OfType"), tolua_function_tointeger(L, 5, "OfType")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -187459,7 +191106,7 @@ static int tolua_function_CAIObjectType_Set(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Set'", NULL); - self->Set((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + (self->Set)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); return 0; } @@ -187467,7 +191114,7 @@ static int tolua_function_CAIObjectType_Equals(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Equals'", NULL); - bool returnVal = self->operator==((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + bool returnVal = (self->operator==)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); tolua_pushboolean(L, (bool)returnVal); return 1; } @@ -187484,7 +191131,7 @@ static int tolua_function_CAIObjectType_Destruct(lua_State* L) { CAIObjectType* self = (CAIObjectType*)tolua_tousertype_dynamic(L, 1, 0, "CAIObjectType"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -187684,7 +191331,7 @@ static int tolua_function_CAIAction_Destruct(lua_State* L) { CAIAction* self = (CAIAction*)tolua_tousertype_dynamic(L, 1, 0, "CAIAction"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Destruct'", NULL); - self->Destruct(); + (self->Destruct)(); return 0; } @@ -187692,7 +191339,7 @@ static int tolua_function_CAIAction_AssignmentOperator(lua_State* L) { CAIAction* self = (CAIAction*)tolua_tousertype_dynamic(L, 1, 0, "CAIAction"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AssignmentOperator'", NULL); - CAIAction* returnVal = self->operator=((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + CAIAction* returnVal = (self->operator=)((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); tolua_pushusertype(L, (void*)returnVal, "CAIAction"); return 1; } @@ -187701,7 +191348,7 @@ static int tolua_function_CAIAction_Decode(lua_State* L) { CAIAction* self = (CAIAction*)tolua_tousertype_dynamic(L, 1, 0, "CAIAction"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Decode'", NULL); - self->Decode((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); + (self->Decode)((CGameAIBase*)tolua_tousertype_dynamic(L, 2, 0, "CGameAIBase")); return 0; } @@ -188789,7 +192436,7 @@ static int tolua_function_CSpawn_virtual_Destruct(lua_State* L) { CSpawn* self = (CSpawn*)tolua_tousertype_dynamic(L, 1, 0, "CSpawn"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(); + (self->virtual_Destruct)(); return 0; } @@ -190147,7 +193794,7 @@ static int tolua_function_CGameObject_InControl(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'InControl'", NULL); - byte returnVal = self->InControl(); + byte returnVal = (self->InControl)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190156,7 +193803,7 @@ static int tolua_function_CGameObject_virtual_Destruct(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Destruct'", NULL); - self->virtual_Destruct(tolua_function_tointeger(L, 2, "virtual_Destruct")); + (self->virtual_Destruct)(tolua_function_tointeger(L, 2, "virtual_Destruct")); return 0; } @@ -190164,7 +193811,7 @@ static int tolua_function_CGameObject_virtual_GetObjectType(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetObjectType'", NULL); - CGameObjectType returnVal = self->virtual_GetObjectType(); + CGameObjectType returnVal = (self->virtual_GetObjectType)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190173,7 +193820,7 @@ static int tolua_function_CGameObject_virtual_AddToArea(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddToArea'", NULL); - self->virtual_AddToArea((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_AddToArea"), tolua_function_tointeger(L, 5, "virtual_AddToArea")); + (self->virtual_AddToArea)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_AddToArea"), tolua_function_tointeger(L, 5, "virtual_AddToArea")); return 0; } @@ -190181,7 +193828,7 @@ static int tolua_function_CGameObject_virtual_AIUpdate(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AIUpdate'", NULL); - self->virtual_AIUpdate(); + (self->virtual_AIUpdate)(); return 0; } @@ -190189,7 +193836,7 @@ static int tolua_function_CGameObject_virtual_GetAIType(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAIType'", NULL); - const CAIObjectType* returnVal = self->virtual_GetAIType(); + const CAIObjectType* returnVal = (self->virtual_GetAIType)(); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -190198,7 +193845,7 @@ static int tolua_function_CGameObject_virtual_GetTargetId(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetTargetId'", NULL); - int returnVal = self->virtual_GetTargetId(); + int returnVal = (self->virtual_GetTargetId)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190207,7 +193854,7 @@ static int tolua_function_CGameObject_virtual_GetNextWaypoint(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNextWaypoint'", NULL); - self->virtual_GetNextWaypoint((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_GetNextWaypoint)((CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -190215,7 +193862,7 @@ static int tolua_function_CGameObject_virtual_GetVertListPos(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetVertListPos'", NULL); - CTypedPtrList::CNode* returnVal = self->virtual_GetVertListPos(); + CTypedPtrList::CNode* returnVal = (self->virtual_GetVertListPos)(); tolua_pushusertype(L, (void*)returnVal, "CTypedPtrList::CNode"); return 1; } @@ -190224,7 +193871,7 @@ static int tolua_function_CGameObject_virtual_GetVertListType(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetVertListType'", NULL); - VertListType returnVal = self->virtual_GetVertListType(); + VertListType returnVal = (self->virtual_GetVertListType)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190233,7 +193880,7 @@ static int tolua_function_CGameObject_virtual_SetVertListType(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetVertListType'", NULL); - self->virtual_SetVertListType(tolua_function_tointeger(L, 2, "virtual_SetVertListType")); + (self->virtual_SetVertListType)(tolua_function_tointeger(L, 2, "virtual_SetVertListType")); return 0; } @@ -190241,7 +193888,7 @@ static int tolua_function_CGameObject_virtual_CanSaveGame(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CanSaveGame'", NULL); - unsigned __int8 returnVal = self->virtual_CanSaveGame((unsigned int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), tolua_function_tointeger(L, 3, "virtual_CanSaveGame"), tolua_function_tointeger(L, 4, "virtual_CanSaveGame")); + unsigned __int8 returnVal = (self->virtual_CanSaveGame)((unsigned int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), tolua_function_tointeger(L, 3, "virtual_CanSaveGame"), tolua_function_tointeger(L, 4, "virtual_CanSaveGame")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190250,7 +193897,7 @@ static int tolua_function_CGameObject_virtual_CompressTime(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CompressTime'", NULL); - unsigned __int8 returnVal = self->virtual_CompressTime(tolua_function_tointeger(L, 2, "virtual_CompressTime")); + unsigned __int8 returnVal = (self->virtual_CompressTime)(tolua_function_tointeger(L, 2, "virtual_CompressTime")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190259,7 +193906,7 @@ static int tolua_function_CGameObject_virtual_DebugDump(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DebugDump'", NULL); - self->virtual_DebugDump((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), tolua_function_tointeger(L, 3, "virtual_DebugDump")); + (self->virtual_DebugDump)((const CString*)tolua_tousertype_dynamic(L, 2, 0, "CString"), tolua_function_tointeger(L, 3, "virtual_DebugDump")); return 0; } @@ -190267,7 +193914,7 @@ static int tolua_function_CGameObject_virtual_IsOver(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsOver'", NULL); - int returnVal = self->virtual_IsOver((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + int returnVal = (self->virtual_IsOver)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190276,7 +193923,7 @@ static int tolua_function_CGameObject_virtual_DoesIntersect(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DoesIntersect'", NULL); - int returnVal = self->virtual_DoesIntersect(*(CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); + int returnVal = (self->virtual_DoesIntersect)(*(CRect*)tolua_tousertype_dynamic(L, 2, 0, "CRect")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190285,7 +193932,7 @@ static int tolua_function_CGameObject_virtual_OnSearchMap(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnSearchMap'", NULL); - int returnVal = self->virtual_OnSearchMap(); + int returnVal = (self->virtual_OnSearchMap)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190294,7 +193941,7 @@ static int tolua_function_CGameObject_virtual_OnActionButton(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnActionButton'", NULL); - self->virtual_OnActionButton((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnActionButton)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -190302,7 +193949,7 @@ static int tolua_function_CGameObject_virtual_OnFormationButton(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnFormationButton'", NULL); - self->virtual_OnFormationButton((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_OnFormationButton)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -190310,7 +193957,7 @@ static int tolua_function_CGameObject_virtual_RemoveFromArea(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveFromArea'", NULL); - self->virtual_RemoveFromArea(); + (self->virtual_RemoveFromArea)(); return 0; } @@ -190318,7 +193965,7 @@ static int tolua_function_CGameObject_virtual_Render(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Render'", NULL); - self->virtual_Render((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), (CVidMode*)tolua_tousertype_dynamic(L, 3, 0, "CVidMode")); + (self->virtual_Render)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), (CVidMode*)tolua_tousertype_dynamic(L, 3, 0, "CVidMode")); return 0; } @@ -190326,7 +193973,7 @@ static int tolua_function_CGameObject_virtual_DoAIUpdate(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DoAIUpdate'", NULL); - unsigned __int8 returnVal = self->virtual_DoAIUpdate(tolua_function_tointeger(L, 2, "virtual_DoAIUpdate"), tolua_function_tointeger(L, 3, "virtual_DoAIUpdate")); + unsigned __int8 returnVal = (self->virtual_DoAIUpdate)(tolua_function_tointeger(L, 2, "virtual_DoAIUpdate"), tolua_function_tointeger(L, 3, "virtual_DoAIUpdate")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -190335,7 +193982,7 @@ static int tolua_function_CGameObject_virtual_SetAIType(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetAIType'", NULL); - self->virtual_SetAIType((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "virtual_SetAIType")); + (self->virtual_SetAIType)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "virtual_SetAIType")); return 0; } @@ -190343,7 +193990,7 @@ static int tolua_function_CGameObject_virtual_SetCursor(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetCursor'", NULL); - self->virtual_SetCursor(tolua_function_tointeger(L, 2, "virtual_SetCursor")); + (self->virtual_SetCursor)(tolua_function_tointeger(L, 2, "virtual_SetCursor")); return 0; } @@ -190351,7 +193998,7 @@ static int tolua_function_CGameObject_virtual_SetTarget(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetTarget'", NULL); - self->virtual_SetTarget(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "virtual_SetTarget")); + (self->virtual_SetTarget)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "virtual_SetTarget")); return 0; } @@ -190359,7 +194006,7 @@ static int tolua_function_CGameObject_virtual_SetVertListPos(lua_State* L) { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetVertListPos'", NULL); - self->virtual_SetVertListPos((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); + (self->virtual_SetVertListPos)((__POSITION*)tolua_tousertype_dynamic(L, 2, 0, "__POSITION")); return 0; } @@ -190367,7 +194014,7 @@ static int tolua_function_CGameObject_virtual_EvaluateStatusTrigger(lua_State* L { CGameObject* self = (CGameObject*)tolua_tousertype_dynamic(L, 1, 0, "CGameObject"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_EvaluateStatusTrigger'", NULL); - int returnVal = self->virtual_EvaluateStatusTrigger((const CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); + int returnVal = (self->virtual_EvaluateStatusTrigger)((const CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -193586,7 +197233,7 @@ static int tolua_function_CProjectile_AddEffect(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'AddEffect'", NULL); - self->AddEffect((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); + (self->AddEffect)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); return 0; } @@ -193594,7 +197241,7 @@ static int tolua_function_CProjectile_ClearEffects(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ClearEffects'", NULL); - self->ClearEffects(); + (self->ClearEffects)(); return 0; } @@ -193602,7 +197249,7 @@ static int tolua_function_CProjectile_DetermineHeight(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'DetermineHeight'", NULL); - int returnVal = self->DetermineHeight((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); + int returnVal = (self->DetermineHeight)((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -193611,7 +197258,7 @@ static int tolua_function_CProjectile_virtual_Fire(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Fire'", NULL); - self->virtual_Fire((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), tolua_function_tointeger(L, 3, "virtual_Fire"), tolua_function_tointeger(L, 4, "virtual_Fire"), *(CPoint*)tolua_tousertype_dynamic(L, 5, 0, "CPoint"), tolua_function_tointeger(L, 6, "virtual_Fire"), tolua_function_tointeger<__int16>(L, 7, "virtual_Fire")); + (self->virtual_Fire)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), tolua_function_tointeger(L, 3, "virtual_Fire"), tolua_function_tointeger(L, 4, "virtual_Fire"), *(CPoint*)tolua_tousertype_dynamic(L, 5, 0, "CPoint"), tolua_function_tointeger(L, 6, "virtual_Fire"), tolua_function_tointeger<__int16>(L, 7, "virtual_Fire")); return 0; } @@ -193619,7 +197266,7 @@ static int tolua_function_CProjectile_virtual_OnArrival(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnArrival'", NULL); - self->virtual_OnArrival(); + (self->virtual_OnArrival)(); return 0; } @@ -193627,7 +197274,7 @@ static int tolua_function_CProjectile_virtual_RemoveSelf(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_RemoveSelf'", NULL); - self->virtual_RemoveSelf(); + (self->virtual_RemoveSelf)(); return 0; } @@ -193635,7 +197282,7 @@ static int tolua_function_CProjectile_virtual_DeliverEffects(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DeliverEffects'", NULL); - self->virtual_DeliverEffects(); + (self->virtual_DeliverEffects)(); return 0; } @@ -193643,7 +197290,7 @@ static int tolua_function_CProjectile_virtual_CallBack(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_CallBack'", NULL); - self->virtual_CallBack(); + (self->virtual_CallBack)(); return 0; } @@ -193651,7 +197298,7 @@ static int tolua_function_CProjectile_virtual_GetDefaultRenderFlags(lua_State* L { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetDefaultRenderFlags'", NULL); - unsigned int returnVal = self->virtual_GetDefaultRenderFlags(); + unsigned int returnVal = (self->virtual_GetDefaultRenderFlags)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -193660,7 +197307,7 @@ static int tolua_function_CProjectile_virtual_SetDefaultRenderFlags(lua_State* L { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetDefaultRenderFlags'", NULL); - self->virtual_SetDefaultRenderFlags(tolua_function_tointeger(L, 2, "virtual_SetDefaultRenderFlags")); + (self->virtual_SetDefaultRenderFlags)(tolua_function_tointeger(L, 2, "virtual_SetDefaultRenderFlags")); return 0; } @@ -193668,7 +197315,7 @@ static int tolua_function_CProjectile_virtual_SaveProjectile(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SaveProjectile'", NULL); - int returnVal = self->virtual_SaveProjectile(); + int returnVal = (self->virtual_SaveProjectile)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -193677,7 +197324,7 @@ static int tolua_function_CProjectile_virtual_Marshal(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Marshal'", NULL); - self->virtual_Marshal((SProjectileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SProjectileWrapper")); + (self->virtual_Marshal)((SProjectileWrapper*)tolua_tousertype_dynamic(L, 2, 0, "SProjectileWrapper")); return 0; } @@ -193685,7 +197332,7 @@ static int tolua_function_CProjectile_virtual_GetTargetType(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetTargetType'", NULL); - CAIObjectType* returnVal = self->virtual_GetTargetType(); + CAIObjectType* returnVal = (self->virtual_GetTargetType)(); tolua_pushusertype(L, (void*)returnVal, "CAIObjectType"); return 1; } @@ -193694,7 +197341,7 @@ static int tolua_function_CProjectile_virtual_SetTargetType(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetTargetType'", NULL); - self->virtual_SetTargetType((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); + (self->virtual_SetTargetType)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType")); return 0; } @@ -193702,7 +197349,7 @@ static int tolua_function_CProjectile_virtual_GetPreview(lua_State* L) { CProjectile* self = (CProjectile*)tolua_tousertype_dynamic(L, 1, 0, "CProjectile"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPreview'", NULL); - self->virtual_GetPreview((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea")); + (self->virtual_GetPreview)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea")); return 0; } @@ -194926,7 +198573,7 @@ static int tolua_function_CProjectileBAM_virtual_Move(lua_State* L) { CProjectileBAM* self = (CProjectileBAM*)tolua_tousertype_dynamic(L, 1, 0, "CProjectileBAM"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Move'", NULL); - self->virtual_Move(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + (self->virtual_Move)(*(CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); return 0; } @@ -195912,7 +199559,7 @@ static int tolua_function_CProjectileSegment_virtual_Fire_2(lua_State* L) { CProjectileSegment* self = (CProjectileSegment*)tolua_tousertype_dynamic(L, 1, 0, "CProjectileSegment"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Fire_2'", NULL); - self->virtual_Fire_2((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_Fire_2")); + (self->virtual_Fire_2)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), (const CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint"), tolua_function_tointeger(L, 4, "virtual_Fire_2")); return 0; } @@ -196210,7 +199857,7 @@ static int tolua_function_CProjectileNewScorcher_virtual_ApplyEffectsToArea(lua_ { CProjectileNewScorcher* self = (CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 1, 0, "CProjectileNewScorcher"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ApplyEffectsToArea'", NULL); - self->virtual_ApplyEffectsToArea(); + (self->virtual_ApplyEffectsToArea)(); return 0; } @@ -196218,7 +199865,7 @@ static int tolua_function_CProjectileNewScorcher_virtual_ApplyEffectsToTarget(lu { CProjectileNewScorcher* self = (CProjectileNewScorcher*)tolua_tousertype_dynamic(L, 1, 0, "CProjectileNewScorcher"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ApplyEffectsToTarget'", NULL); - self->virtual_ApplyEffectsToTarget((int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), tolua_function_toboolean(L, 3, "virtual_ApplyEffectsToTarget")); + (self->virtual_ApplyEffectsToTarget)((int*)tolua_tousertype_dynamic(L, 2, 0, "Primitive"), tolua_function_toboolean(L, 3, "virtual_ApplyEffectsToTarget")); return 0; } @@ -196262,7 +199909,7 @@ static int tolua_function_CProjectileMushroom_virtual_Fire_2(lua_State* L) { CProjectileMushroom* self = (CProjectileMushroom*)tolua_tousertype_dynamic(L, 1, 0, "CProjectileMushroom"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_Fire_2'", NULL); - self->virtual_Fire_2((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), *(CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); + (self->virtual_Fire_2)((CGameArea*)tolua_tousertype_dynamic(L, 2, 0, "CGameArea"), *(CPoint*)tolua_tousertype_dynamic(L, 3, 0, "CPoint")); return 0; } @@ -197632,7 +201279,7 @@ static int tolua_function_CAITrigger_OfType(lua_State* L) { CAITrigger* self = (CAITrigger*)tolua_tousertype_dynamic(L, 1, 0, "CAITrigger"); if (!self) tolua_error(L, "invalid 'self' in calling function 'OfType'", NULL); - byte returnVal = self->OfType((const CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); + byte returnVal = (self->OfType)((const CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198761,7 +202408,7 @@ static int tolua_function_CGameAIBase_ApplyEffectToParty(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ApplyEffectToParty'", NULL); - self->ApplyEffectToParty((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); + (self->ApplyEffectToParty)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect")); return 0; } @@ -198769,7 +202416,7 @@ static int tolua_function_CGameAIBase_ForceSpell(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ForceSpell'", NULL); - short returnVal = self->ForceSpell((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); + short returnVal = (self->ForceSpell)((CGameSprite*)tolua_tousertype_dynamic(L, 2, 0, "CGameSprite")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198778,7 +202425,7 @@ static int tolua_function_CGameAIBase_ForceSpellPoint(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ForceSpellPoint'", NULL); - short returnVal = self->ForceSpellPoint(); + short returnVal = (self->ForceSpellPoint)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198787,7 +202434,7 @@ static int tolua_function_CGameAIBase_GetTargetShare(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetTargetShare'", NULL); - CGameObject* returnVal = self->GetTargetShare(); + CGameObject* returnVal = (self->GetTargetShare)(); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -198796,7 +202443,7 @@ static int tolua_function_CGameAIBase_GetTargetShareType_Overload_AIType_ObjectT { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetTargetShareType_Overload_AIType_ObjectType'", NULL); - CGameObject* returnVal = self->GetTargetShareType((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "GetTargetShareType_Overload_AIType_ObjectType")); + CGameObject* returnVal = (self->GetTargetShareType)((CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "GetTargetShareType_Overload_AIType_ObjectType")); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -198805,7 +202452,7 @@ static int tolua_function_CGameAIBase_GetTargetShareType_Overload_ObjectType(lua { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetTargetShareType_Overload_ObjectType'", NULL); - CGameObject* returnVal = self->GetTargetShareType(tolua_function_tointeger(L, 2, "GetTargetShareType_Overload_ObjectType")); + CGameObject* returnVal = (self->GetTargetShareType)(tolua_function_tointeger(L, 2, "GetTargetShareType_Overload_ObjectType")); tolua_pushusertype(L, (void*)returnVal, "CGameObject"); return 1; } @@ -198814,7 +202461,7 @@ static int tolua_function_CGameAIBase_virtual_ClearActions(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ClearActions'", NULL); - self->virtual_ClearActions(tolua_function_tointeger(L, 2, "virtual_ClearActions")); + (self->virtual_ClearActions)(tolua_function_tointeger(L, 2, "virtual_ClearActions")); return 0; } @@ -198822,7 +202469,7 @@ static int tolua_function_CGameAIBase_virtual_UpdateTarget(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_UpdateTarget'", NULL); - self->virtual_UpdateTarget((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); + (self->virtual_UpdateTarget)((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); return 0; } @@ -198830,7 +202477,7 @@ static int tolua_function_CGameAIBase_virtual_AddAction(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddAction'", NULL); - self->virtual_AddAction((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + (self->virtual_AddAction)((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); return 0; } @@ -198838,7 +202485,7 @@ static int tolua_function_CGameAIBase_virtual_AddEffect(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AddEffect'", NULL); - self->virtual_AddEffect((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect"), tolua_function_tointeger(L, 3, "virtual_AddEffect"), tolua_function_tointeger(L, 4, "virtual_AddEffect"), tolua_function_tointeger(L, 5, "virtual_AddEffect")); + (self->virtual_AddEffect)((CGameEffect*)tolua_tousertype_dynamic(L, 2, 0, "CGameEffect"), tolua_function_tointeger(L, 3, "virtual_AddEffect"), tolua_function_tointeger(L, 4, "virtual_AddEffect"), tolua_function_tointeger(L, 5, "virtual_AddEffect")); return 0; } @@ -198846,7 +202493,7 @@ static int tolua_function_CGameAIBase_virtual_ClearAI(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ClearAI'", NULL); - self->virtual_ClearAI(tolua_function_tointeger(L, 2, "virtual_ClearAI")); + (self->virtual_ClearAI)(tolua_function_tointeger(L, 2, "virtual_ClearAI")); return 0; } @@ -198854,7 +202501,7 @@ static int tolua_function_CGameAIBase_virtual_DoAction(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_DoAction'", NULL); - self->virtual_DoAction(); + (self->virtual_DoAction)(); return 0; } @@ -198862,7 +202509,7 @@ static int tolua_function_CGameAIBase_virtual_ExecuteAction(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ExecuteAction'", NULL); - __int16 returnVal = self->virtual_ExecuteAction(); + __int16 returnVal = (self->virtual_ExecuteAction)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198871,7 +202518,7 @@ static int tolua_function_CGameAIBase_virtual_InsertAction(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_InsertAction'", NULL); - self->virtual_InsertAction((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + (self->virtual_InsertAction)((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); return 0; } @@ -198879,7 +202526,7 @@ static int tolua_function_CGameAIBase_virtual_ProcessAI(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ProcessAI'", NULL); - self->virtual_ProcessAI(); + (self->virtual_ProcessAI)(); return 0; } @@ -198887,7 +202534,7 @@ static int tolua_function_CGameAIBase_virtual_SetCurrAction(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetCurrAction'", NULL); - self->virtual_SetCurrAction((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + (self->virtual_SetCurrAction)((const CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); return 0; } @@ -198895,7 +202542,7 @@ static int tolua_function_CGameAIBase_virtual_SetScript(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetScript'", NULL); - self->virtual_SetScript(tolua_function_tointeger<__int16>(L, 2, "virtual_SetScript"), (CAIScript*)tolua_tousertype_dynamic(L, 3, 0, "CAIScript")); + (self->virtual_SetScript)(tolua_function_tointeger<__int16>(L, 2, "virtual_SetScript"), (CAIScript*)tolua_tousertype_dynamic(L, 3, 0, "CAIScript")); return 0; } @@ -198903,7 +202550,7 @@ static int tolua_function_CGameAIBase_virtual_GetVisualRange(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetVisualRange'", NULL); - __int16 returnVal = self->virtual_GetVisualRange(); + __int16 returnVal = (self->virtual_GetVisualRange)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198912,7 +202559,7 @@ static int tolua_function_CGameAIBase_virtual_GetAttackRange(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetAttackRange'", NULL); - __int16 returnVal = self->virtual_GetAttackRange(); + __int16 returnVal = (self->virtual_GetAttackRange)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198921,7 +202568,7 @@ static int tolua_function_CGameAIBase_virtual_GetVisibleTerrainTable(lua_State* { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetVisibleTerrainTable'", NULL); - byte* returnVal = self->virtual_GetVisibleTerrainTable(); + byte* returnVal = (self->virtual_GetVisibleTerrainTable)(); tolua_pushusertype(L, (void*)returnVal, "Primitive"); return 1; } @@ -198930,7 +202577,7 @@ static int tolua_function_CGameAIBase_virtual_GetTerrainTable(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetTerrainTable'", NULL); - const unsigned __int8* returnVal = self->virtual_GetTerrainTable(); + const unsigned __int8* returnVal = (self->virtual_GetTerrainTable)(); tolua_pushusertype(L, (void*)returnVal, "Primitive<__int8>"); return 1; } @@ -198939,7 +202586,7 @@ static int tolua_function_CGameAIBase_virtual_QuickDecode(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_QuickDecode'", NULL); - int returnVal = self->virtual_QuickDecode((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger"), (CGameSprite**)tolua_tousertype_dynamic(L, 3, 0, "Pointer")); + int returnVal = (self->virtual_QuickDecode)((CAITrigger*)tolua_tousertype_dynamic(L, 2, 0, "CAITrigger"), (CGameSprite**)tolua_tousertype_dynamic(L, 3, 0, "Pointer")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198948,7 +202595,7 @@ static int tolua_function_CGameAIBase_virtual_GetHelpRange(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetHelpRange'", NULL); - __int16 returnVal = self->virtual_GetHelpRange(); + __int16 returnVal = (self->virtual_GetHelpRange)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198957,7 +202604,7 @@ static int tolua_function_CGameAIBase_virtual_ApplyTriggers(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ApplyTriggers'", NULL); - self->virtual_ApplyTriggers(); + (self->virtual_ApplyTriggers)(); return 0; } @@ -198965,7 +202612,7 @@ static int tolua_function_CGameAIBase_virtual_AutoPause(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_AutoPause'", NULL); - self->virtual_AutoPause(tolua_function_tointeger(L, 2, "virtual_AutoPause")); + (self->virtual_AutoPause)(tolua_function_tointeger(L, 2, "virtual_AutoPause")); return 0; } @@ -198973,7 +202620,7 @@ static int tolua_function_CGameAIBase_virtual_GetCanSeeInvisible(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetCanSeeInvisible'", NULL); - int returnVal = self->virtual_GetCanSeeInvisible(); + int returnVal = (self->virtual_GetCanSeeInvisible)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -198982,7 +202629,7 @@ static int tolua_function_CGameAIBase_virtual_OnActionRemoval(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_OnActionRemoval'", NULL); - self->virtual_OnActionRemoval((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); + (self->virtual_OnActionRemoval)((CAIAction*)tolua_tousertype_dynamic(L, 2, 0, "CAIAction")); return 0; } @@ -198990,7 +202637,7 @@ static int tolua_function_CGameAIBase_virtual_GetBounding(lua_State* L) { CGameAIBase* self = (CGameAIBase*)tolua_tousertype_dynamic(L, 1, 0, "CGameAIBase"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetBounding'", NULL); - CRect* returnVal = self->virtual_GetBounding(); + CRect* returnVal = (self->virtual_GetBounding)(); tolua_pushusertype(L, (void*)returnVal, "CRect"); return 1; } @@ -199771,7 +203418,7 @@ static int tolua_function_CGameTrigger_SetDrawPoly(lua_State* L) { CGameTrigger* self = (CGameTrigger*)tolua_tousertype_dynamic(L, 1, 0, "CGameTrigger"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetDrawPoly'", NULL); - self->SetDrawPoly(tolua_function_tointeger(L, 2, "SetDrawPoly")); + (self->SetDrawPoly)(tolua_function_tointeger(L, 2, "SetDrawPoly")); return 0; } @@ -199779,7 +203426,7 @@ static int tolua_function_CGameTrigger_virtual_IsOverActivate(lua_State* L) { CGameTrigger* self = (CGameTrigger*)tolua_tousertype_dynamic(L, 1, 0, "CGameTrigger"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_IsOverActivate'", NULL); - int returnVal = self->virtual_IsOverActivate((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); + int returnVal = (self->virtual_IsOverActivate)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -206598,7 +210245,7 @@ static int tolua_function_CGameSprite_Copy(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Copy'", NULL); - CGameSprite* returnVal = self->Copy(tolua_function_tointeger(L, 2, "Copy"), tolua_function_tointeger(L, 3, "Copy"), tolua_function_tointeger(L, 4, "Copy"), tolua_function_tointeger(L, 5, "Copy")); + CGameSprite* returnVal = (self->Copy)(tolua_function_tointeger(L, 2, "Copy"), tolua_function_tointeger(L, 3, "Copy"), tolua_function_tointeger(L, 4, "Copy"), tolua_function_tointeger(L, 5, "Copy")); tolua_pushusertype(L, (void*)returnVal, "CGameSprite"); return 1; } @@ -206607,7 +210254,7 @@ static int tolua_function_CGameSprite_MakeGlobal(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'MakeGlobal'", NULL); - self->MakeGlobal(tolua_function_toboolean(L, 2, "MakeGlobal")); + (self->MakeGlobal)(tolua_function_toboolean(L, 2, "MakeGlobal")); return 0; } @@ -206615,7 +210262,7 @@ static int tolua_function_CGameSprite_CheckQuickLists(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'CheckQuickLists'", NULL); - self->CheckQuickLists((CAbilityId*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityId"), tolua_function_tointeger(L, 3, "CheckQuickLists"), tolua_function_tointeger(L, 4, "CheckQuickLists"), tolua_function_tointeger(L, 5, "CheckQuickLists")); + (self->CheckQuickLists)((CAbilityId*)tolua_tousertype_dynamic(L, 2, 0, "CAbilityId"), tolua_function_tointeger(L, 3, "CheckQuickLists"), tolua_function_tointeger(L, 4, "CheckQuickLists"), tolua_function_tointeger(L, 5, "CheckQuickLists")); return 0; } @@ -206623,7 +210270,7 @@ static int tolua_function_CGameSprite_Damage(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'Damage'", NULL); - CGameEffectDamage* returnVal = self->Damage((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem"), (CItem*)tolua_tousertype_dynamic(L, 3, 0, "CItem"), tolua_function_tointeger(L, 4, "Damage"), tolua_function_tointeger(L, 5, "Damage"), (CAIObjectType*)tolua_tousertype_dynamic(L, 6, 0, "CAIObjectType"), tolua_function_tointeger(L, 7, "Damage"), tolua_function_tointeger(L, 8, "Damage"), (CGameSprite*)tolua_tousertype_dynamic(L, 9, 0, "CGameSprite"), tolua_function_tointeger(L, 10, "Damage")); + CGameEffectDamage* returnVal = (self->Damage)((CItem*)tolua_tousertype_dynamic(L, 2, 0, "CItem"), (CItem*)tolua_tousertype_dynamic(L, 3, 0, "CItem"), tolua_function_tointeger(L, 4, "Damage"), tolua_function_tointeger(L, 5, "Damage"), (CAIObjectType*)tolua_tousertype_dynamic(L, 6, 0, "CAIObjectType"), tolua_function_tointeger(L, 7, "Damage"), tolua_function_tointeger(L, 8, "Damage"), (CGameSprite*)tolua_tousertype_dynamic(L, 9, 0, "CGameSprite"), tolua_function_tointeger(L, 10, "Damage")); tolua_pushusertype(L, (void*)returnVal, "CGameEffectDamage"); return 1; } @@ -206632,7 +210279,7 @@ static int tolua_function_CGameSprite_FeedBack(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'FeedBack'", NULL); - self->FeedBack(tolua_function_tointeger(L, 2, "FeedBack"), tolua_function_tointeger(L, 3, "FeedBack"), tolua_function_tointeger(L, 4, "FeedBack"), tolua_function_tointeger(L, 5, "FeedBack"), tolua_function_tointeger(L, 6, "FeedBack"), tolua_function_tointeger(L, 7, "FeedBack"), (CString*)tolua_tousertype_dynamic(L, 8, 0, "CString")); + (self->FeedBack)(tolua_function_tointeger(L, 2, "FeedBack"), tolua_function_tointeger(L, 3, "FeedBack"), tolua_function_tointeger(L, 4, "FeedBack"), tolua_function_tointeger(L, 5, "FeedBack"), tolua_function_tointeger(L, 6, "FeedBack"), tolua_function_tointeger(L, 7, "FeedBack"), (CString*)tolua_tousertype_dynamic(L, 8, 0, "CString")); return 0; } @@ -206640,7 +210287,7 @@ static int tolua_function_CGameSprite_GetActiveStats(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetActiveStats'", NULL); - CDerivedStats* returnVal = self->GetActiveStats(); + CDerivedStats* returnVal = (self->GetActiveStats)(); tolua_pushusertype(L, (void*)returnVal, "CDerivedStats"); return 1; } @@ -206649,7 +210296,7 @@ static int tolua_function_CGameSprite_GetCasterLevel(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetCasterLevel'", NULL); - short returnVal = self->GetCasterLevel((CSpell*)tolua_tousertype_dynamic(L, 2, 0, "CSpell"), tolua_function_tointeger(L, 3, "GetCasterLevel")); + short returnVal = (self->GetCasterLevel)((CSpell*)tolua_tousertype_dynamic(L, 2, 0, "CSpell"), tolua_function_tointeger(L, 3, "GetCasterLevel")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -206658,7 +210305,7 @@ static int tolua_function_CGameSprite_GetInternalButtonList(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetInternalButtonList'", NULL); - CGameButtonList* returnVal = self->GetInternalButtonList(); + CGameButtonList* returnVal = (self->GetInternalButtonList)(); tolua_pushusertype(L, (void*)returnVal, "CGameButtonList"); return 1; } @@ -206667,7 +210314,7 @@ static int tolua_function_CGameSprite_GetKitMask(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetKitMask'", NULL); - __int32 returnVal = self->GetKitMask(); + __int32 returnVal = (self->GetKitMask)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -206676,7 +210323,7 @@ static int tolua_function_CGameSprite_GetKnownSpellInnate(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetKnownSpellInnate'", NULL); - CCreatureFileKnownSpell* returnVal = self->GetKnownSpellInnate(tolua_function_tointeger(L, 2, "GetKnownSpellInnate"), tolua_function_tointeger(L, 3, "GetKnownSpellInnate")); + CCreatureFileKnownSpell* returnVal = (self->GetKnownSpellInnate)(tolua_function_tointeger(L, 2, "GetKnownSpellInnate"), tolua_function_tointeger(L, 3, "GetKnownSpellInnate")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); return 1; } @@ -206685,7 +210332,7 @@ static int tolua_function_CGameSprite_GetKnownSpellMage(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetKnownSpellMage'", NULL); - CCreatureFileKnownSpell* returnVal = self->GetKnownSpellMage(tolua_function_tointeger(L, 2, "GetKnownSpellMage"), tolua_function_tointeger(L, 3, "GetKnownSpellMage")); + CCreatureFileKnownSpell* returnVal = (self->GetKnownSpellMage)(tolua_function_tointeger(L, 2, "GetKnownSpellMage"), tolua_function_tointeger(L, 3, "GetKnownSpellMage")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); return 1; } @@ -206694,7 +210341,7 @@ static int tolua_function_CGameSprite_GetKnownSpellPriest(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetKnownSpellPriest'", NULL); - CCreatureFileKnownSpell* returnVal = self->GetKnownSpellPriest(tolua_function_tointeger(L, 2, "GetKnownSpellPriest"), tolua_function_tointeger(L, 3, "GetKnownSpellPriest")); + CCreatureFileKnownSpell* returnVal = (self->GetKnownSpellPriest)(tolua_function_tointeger(L, 2, "GetKnownSpellPriest"), tolua_function_tointeger(L, 3, "GetKnownSpellPriest")); tolua_pushusertype(L, (void*)returnVal, "CCreatureFileKnownSpell"); return 1; } @@ -206703,7 +210350,7 @@ static int tolua_function_CGameSprite_GetLauncher(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetLauncher'", NULL); - CItem* returnVal = self->GetLauncher((Item_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_ability_st"), (short*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); + CItem* returnVal = (self->GetLauncher)((Item_ability_st*)tolua_tousertype_dynamic(L, 2, 0, "Item_ability_st"), (short*)tolua_tousertype_dynamic(L, 3, 0, "Primitive")); tolua_pushusertype(L, (void*)returnVal, "CItem"); return 1; } @@ -206712,7 +210359,7 @@ static int tolua_function_CGameSprite_GetLauncherSlot(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetLauncherSlot'", NULL); - short returnVal = self->GetLauncherSlot(tolua_function_tointeger(L, 2, "GetLauncherSlot"), tolua_function_tointeger(L, 3, "GetLauncherSlot")); + short returnVal = (self->GetLauncherSlot)(tolua_function_tointeger(L, 2, "GetLauncherSlot"), tolua_function_tointeger(L, 3, "GetLauncherSlot")); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -206721,7 +210368,7 @@ static int tolua_function_CGameSprite_GetName(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetName'", NULL); - CString* returnVal = self->GetName(tolua_function_tointeger(L, 2, "GetName")); + CString* returnVal = (self->GetName)(tolua_function_tointeger(L, 2, "GetName")); tolua_pushusertype(L, (void*)returnVal, "CString"); return 1; } @@ -206730,7 +210377,7 @@ static int tolua_function_CGameSprite_GetNameRef(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetNameRef'", NULL); - uint returnVal = self->GetNameRef(); + uint returnVal = (self->GetNameRef)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -206739,7 +210386,7 @@ static int tolua_function_CGameSprite_GetQuickButtons(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'GetQuickButtons'", NULL); - CGameButtonList* returnVal = self->GetQuickButtons(tolua_function_tointeger(L, 2, "GetQuickButtons"), tolua_function_tointeger(L, 3, "GetQuickButtons")); + CGameButtonList* returnVal = (self->GetQuickButtons)(tolua_function_tointeger(L, 2, "GetQuickButtons"), tolua_function_tointeger(L, 3, "GetQuickButtons")); tolua_pushusertype(L, (void*)returnVal, "CGameButtonList"); return 1; } @@ -206748,7 +210395,7 @@ static int tolua_function_CGameSprite_PlaySound(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'PlaySound'", NULL); - self->PlaySound(tolua_function_tointeger(L, 2, "PlaySound"), tolua_function_tointeger(L, 3, "PlaySound"), tolua_function_tointeger(L, 4, "PlaySound"), tolua_function_tointeger(L, 5, "PlaySound")); + (self->PlaySound)(tolua_function_tointeger(L, 2, "PlaySound"), tolua_function_tointeger(L, 3, "PlaySound"), tolua_function_tointeger(L, 4, "PlaySound"), tolua_function_tointeger(L, 5, "PlaySound")); return 0; } @@ -206756,7 +210403,7 @@ static int tolua_function_CGameSprite_ReadyOffInternalList(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ReadyOffInternalList'", NULL); - self->ReadyOffInternalList((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData"), tolua_function_toboolean(L, 3, "ReadyOffInternalList")); + (self->ReadyOffInternalList)((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData"), tolua_function_toboolean(L, 3, "ReadyOffInternalList")); return 0; } @@ -206764,7 +210411,7 @@ static int tolua_function_CGameSprite_ReadySpell(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'ReadySpell'", NULL); - self->ReadySpell((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData"), tolua_function_toboolean(L, 3, "ReadySpell")); + (self->ReadySpell)((CButtonData*)tolua_tousertype_dynamic(L, 2, 0, "CButtonData"), tolua_function_toboolean(L, 3, "ReadySpell")); return 0; } @@ -206772,7 +210419,7 @@ static int tolua_function_CGameSprite_SpellPoint(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SpellPoint'", NULL); - short returnVal = self->SpellPoint(); + short returnVal = (self->SpellPoint)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -206781,7 +210428,7 @@ static int tolua_function_CGameSprite_UpdateTarget(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'UpdateTarget'", NULL); - self->UpdateTarget((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); + (self->UpdateTarget)((CGameObject*)tolua_tousertype_dynamic(L, 2, 0, "CGameObject")); return 0; } @@ -206789,7 +210436,7 @@ static int tolua_function_CGameSprite_MakeLocal(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'MakeLocal'", NULL); - self->MakeLocal(); + (self->MakeLocal)(); return 0; } @@ -206797,7 +210444,7 @@ static int tolua_function_CGameSprite_virtual_SetTarget_2(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetTarget_2'", NULL); - self->virtual_SetTarget_2((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "virtual_SetTarget_2")); + (self->virtual_SetTarget_2)((const CPoint*)tolua_tousertype_dynamic(L, 2, 0, "CPoint"), tolua_function_tointeger(L, 3, "virtual_SetTarget_2")); return 0; } @@ -206805,7 +210452,7 @@ static int tolua_function_CGameSprite_virtual_SetAIType_2(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_SetAIType_2'", NULL); - self->virtual_SetAIType_2((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "virtual_SetAIType_2"), tolua_function_tointeger(L, 4, "virtual_SetAIType_2")); + (self->virtual_SetAIType_2)((const CAIObjectType*)tolua_tousertype_dynamic(L, 2, 0, "CAIObjectType"), tolua_function_tointeger(L, 3, "virtual_SetAIType_2"), tolua_function_tointeger(L, 4, "virtual_SetAIType_2")); return 0; } @@ -206813,7 +210460,7 @@ static int tolua_function_CGameSprite_virtual_ResetAITypeLive(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ResetAITypeLive'", NULL); - self->virtual_ResetAITypeLive(); + (self->virtual_ResetAITypeLive)(); return 0; } @@ -206821,7 +210468,7 @@ static int tolua_function_CGameSprite_virtual_ResetAIType(lua_State* L) { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ResetAIType'", NULL); - self->virtual_ResetAIType(); + (self->virtual_ResetAIType)(); return 0; } @@ -206829,7 +210476,7 @@ static int tolua_function_CGameSprite_virtual_ProcessPendingTriggers(lua_State* { CGameSprite* self = (CGameSprite*)tolua_tousertype_dynamic(L, 1, 0, "CGameSprite"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_ProcessPendingTriggers'", NULL); - self->virtual_ProcessPendingTriggers(tolua_function_tointeger(L, 2, "virtual_ProcessPendingTriggers")); + (self->virtual_ProcessPendingTriggers)(tolua_function_tointeger(L, 2, "virtual_ProcessPendingTriggers")); return 0; } @@ -207735,7 +211382,7 @@ static int tolua_function_CGameDoor_SetDrawPoly(lua_State* L) { CGameDoor* self = (CGameDoor*)tolua_tousertype_dynamic(L, 1, 0, "CGameDoor"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetDrawPoly'", NULL); - self->SetDrawPoly(tolua_function_tointeger(L, 2, "SetDrawPoly")); + (self->SetDrawPoly)(tolua_function_tointeger(L, 2, "SetDrawPoly")); return 0; } @@ -208239,7 +211886,7 @@ static int tolua_function_CGameContainer_SetDrawPoly(lua_State* L) { CGameContainer* self = (CGameContainer*)tolua_tousertype_dynamic(L, 1, 0, "CGameContainer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'SetDrawPoly'", NULL); - self->SetDrawPoly(tolua_function_tointeger(L, 2, "SetDrawPoly")); + (self->SetDrawPoly)(tolua_function_tointeger(L, 2, "SetDrawPoly")); return 0; } @@ -208247,7 +211894,7 @@ static int tolua_function_CGameContainer_virtual_GetPoly(lua_State* L) { CGameContainer* self = (CGameContainer*)tolua_tousertype_dynamic(L, 1, 0, "CGameContainer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetPoly'", NULL); - CPoint* returnVal = self->virtual_GetPoly(); + CPoint* returnVal = (self->virtual_GetPoly)(); tolua_pushusertype(L, (void*)returnVal, "CPoint"); return 1; } @@ -208256,7 +211903,7 @@ static int tolua_function_CGameContainer_virtual_GetNPoly(lua_State* L) { CGameContainer* self = (CGameContainer*)tolua_tousertype_dynamic(L, 1, 0, "CGameContainer"); if (!self) tolua_error(L, "invalid 'self' in calling function 'virtual_GetNPoly'", NULL); - __int16 returnVal = self->virtual_GetNPoly(); + __int16 returnVal = (self->virtual_GetNPoly)(); lua_pushinteger(L, (lua_Integer)returnVal); return 1; } @@ -208459,95 +212106,96 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "ID3DXBaseEffect"); tolua_usertype(L, "ID3DXEffect"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<_D3DFORMAT>"); + tolua_usertype(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_usertype(L, "Primitive<_D3DSWAPEFFECT>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<_D3DFORMAT>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); - tolua_usertype(L, "Primitive<_D3DSWAPEFFECT>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int8>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int32>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int64>"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int8>"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); - tolua_usertype(L, "Primitive<__int16>"); - tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int64>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int16>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive<__int32>"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); + tolua_usertype(L, "Primitive"); tolua_usertype(L, "SAreaFileWrapper"); tolua_usertype(L, "SDL_Cursor"); + tolua_usertype(L, "SDL_PrivateGLESData"); tolua_usertype(L, "SDL_WindowUserData"); tolua_usertype(L, "SProjectileWrapper"); tolua_usertype(L, "UnmappedUserType"); @@ -208613,6 +212261,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Upvaldesc"); tolua_usertype(L, "TILE_CODE"); tolua_usertype(L, "SDL_version"); + tolua_usertype(L, "SDL_MessageBoxColor"); tolua_usertype(L, "SDL_Color"); tolua_usertype(L, "SDL_WindowShapeParams"); tolua_usertype(L, "SDL_WindowShapeMode"); @@ -208662,13 +212311,19 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "SDL_SysWMmsg"); tolua_usertype(L, "SDL_SysWMmsg::msg_t"); tolua_usertype(L, "SDL_SysWMmsg::msg_t::win_t"); + tolua_usertype(L, "SDL_SysWMinfo"); + tolua_usertype(L, "SDL_SysWMinfo::info_t"); + tolua_usertype(L, "SDL_SysWMinfo::info_t::win_t"); tolua_usertype(L, "SDL_SysWMEvent"); + tolua_usertype(L, "SDL_ShapeDriver"); tolua_usertype(L, "SDL_QuitEvent"); tolua_usertype(L, "SDL_Palette"); tolua_usertype(L, "SDL_MultiGestureEvent"); tolua_usertype(L, "SDL_MouseWheelEvent"); tolua_usertype(L, "SDL_MouseMotionEvent"); tolua_usertype(L, "SDL_MouseButtonEvent"); + tolua_usertype(L, "SDL_MessageBoxData"); + tolua_usertype(L, "SDL_MessageBoxButtonData"); tolua_usertype(L, "SDL_Keysym"); tolua_usertype(L, "SDL_KeyboardEvent"); tolua_usertype(L, "SDL_JoyHatEvent"); @@ -208676,9 +212331,12 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "SDL_JoyButtonEvent"); tolua_usertype(L, "SDL_JoyBallEvent"); tolua_usertype(L, "SDL_JoyAxisEvent"); + tolua_usertype(L, "SDL_GLDriverData"); + tolua_usertype(L, "SDL_EGL_VideoData"); tolua_usertype(L, "SDL_DropEvent"); tolua_usertype(L, "SDL_DollarGestureEvent"); tolua_usertype(L, "SDL_DisplayMode"); + tolua_usertype(L, "SDL_VideoDisplay"); tolua_usertype(L, "SDL_ControllerDeviceEvent"); tolua_usertype(L, "SDL_ControllerButtonEvent"); tolua_usertype(L, "SDL_ControllerAxisEvent"); @@ -208702,6 +212360,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "ISteamUserStats"); tolua_usertype(L, "ISteamUserStats::vtbl"); tolua_usertype(L, "HWND__"); + tolua_usertype(L, "HGLRC__"); + tolua_usertype(L, "HDC__"); tolua_usertype(L, "DP_Packet"); tolua_usertype(L, "DP_Event"); tolua_usertype(L, "DPWrapper"); @@ -208799,10 +212459,10 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); - tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208824,6 +212484,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208840,6 +212501,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray<_iobuf>"); @@ -208848,6 +212510,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208866,7 +212529,14 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208877,6 +212547,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -208981,7 +212653,9 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); + tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); tolua_usertype(L, "VariableArray"); @@ -209110,6 +212784,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209235,6 +212910,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209444,8 +213121,19 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); @@ -209459,6 +213147,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209579,6 +213268,8 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209783,8 +213474,19 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); @@ -209848,42 +213550,43 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209907,17 +213610,18 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB>"); - tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209950,7 +213654,9 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -209965,7 +213671,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); - tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); @@ -210038,10 +213743,10 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer>"); + tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); - tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); tolua_usertype(L, "Pointer*>"); @@ -210382,6 +214087,7 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Pointer<_SETJMP_FLOAT128>"); tolua_usertype(L, "Pointer<_SETJMP_FLOAT128*>"); tolua_usertype(L, "Pointer<_GUID>"); + tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer"); tolua_usertype(L, "Pointer>"); tolua_usertype(L, "Pointer>"); @@ -211321,10 +215027,12 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); + tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); + tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array<__int8,15>"); @@ -211340,7 +215048,6 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); tolua_usertype(L, "Array"); - tolua_usertype(L, "Array"); tolua_usertype(L, "uiItem"); tolua_usertype(L, "uiItem::bam_t"); tolua_usertype(L, "uiItem::bmp_t"); @@ -211370,7 +215077,10 @@ static void tolua_reg_types(lua_State* L) tolua_usertype(L, "_SETJMP_FLOAT128"); tolua_usertype(L, "lua_longjmp"); tolua_usertype(L, "_GUID"); + tolua_usertype(L, "SDL_VideoDevice"); + tolua_usertype(L, "SDL_VideoDevice::gl_config_t"); tolua_usertype(L, "SDL_PixelFormat"); + tolua_usertype(L, "SDL_MessageBoxColorScheme"); tolua_usertype(L, "LClosure"); tolua_usertype(L, "LCharString<32>"); tolua_usertype(L, "LCharString<4>"); @@ -211863,6 +215573,94 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_WindowShapeMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_bool__value, tolua_set_Primitive_SDL_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_HitTestResult__value, tolua_set_Primitive_SDL_HitTestResult__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_HitTestResult__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CSpawn__ePMode__value, tolua_set_Primitive_CSpawn__ePMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CSpawn__ePMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CGameJournalEntryFlag__value, tolua_set_Primitive_CGameJournalEntryFlag__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CGameJournalEntryFlag__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CButtonType__value, tolua_set_Primitive_CButtonType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CButtonType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CAOEEntry__AOEType__value, tolua_set_Primitive_CAOEEntry__AOEType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CAOEEntry__AOEType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_VertListType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_SDL_SYSWM_TYPE__value, tolua_set_Primitive_SDL_SYSWM_TYPE__value); @@ -211907,103 +215705,180 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_importStateType__value, tolua_set_Primitive_importStateType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_importStateType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CScreenCreateCharStep__value, tolua_set_Primitive_CScreenCreateCharStep__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CScreenCreateCharStep__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<_D3DFORMAT>", "Primitive<_D3DFORMAT>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DFORMAT>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DFORMAT__value, tolua_set_Primitive__D3DFORMAT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DFORMAT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DFORMAT>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DFORMAT>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DFORMAT>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_WindowShapeMode__value, tolua_set_Primitive_WindowShapeMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_WindowShapeMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<_D3DMULTISAMPLE_TYPE>", "Primitive<_D3DMULTISAMPLE_TYPE>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value, tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DMULTISAMPLE_TYPE>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DMULTISAMPLE_TYPE>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_HitTestResult__value, tolua_set_Primitive_SDL_HitTestResult__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_HitTestResult__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<_D3DSWAPEFFECT>", "Primitive<_D3DSWAPEFFECT>", {}, NULL); + tolua_beginmodule(L, "Primitive<_D3DSWAPEFFECT>"); + tolua_variable(L, "value", tolua_get_Primitive__D3DSWAPEFFECT__value, tolua_set_Primitive__D3DSWAPEFFECT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive__D3DSWAPEFFECT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<_D3DSWAPEFFECT>)); + tolua_constantstring(L, "usertype_value", "Primitive<_D3DSWAPEFFECT>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DSWAPEFFECT>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_bool__value, tolua_set_Primitive_SDL_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DepthLockState__value, tolua_set_Primitive_DepthLockState__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DepthLockState__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CSpawn__ePMode__value, tolua_set_Primitive_CSpawn__ePMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CSpawn__ePMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFilter__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CAOEEntry__AOEType__value, tolua_set_Primitive_CAOEEntry__AOEType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CAOEEntry__AOEType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_RendererType__value, tolua_set_Primitive_RendererType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_RendererType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CButtonType__value, tolua_set_Primitive_CButtonType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CButtonType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawFeature__value, tolua_set_Primitive_DrawFeature__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFeature__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_CGameJournalEntryFlag__value, tolua_set_Primitive_CGameJournalEntryFlag__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_CGameJournalEntryFlag__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawBlend__value, tolua_set_Primitive_DrawBlend__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawBlend__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawTone__value, tolua_set_Primitive_DrawTone__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawTone__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_Keymod__value, tolua_set_Primitive_SDL_Keymod__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Keymod__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DrawMode__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_CScreenCreateCharStep__value, tolua_set_Primitive_CScreenCreateCharStep__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_CScreenCreateCharStep__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_importStateType__value, tolua_set_Primitive_importStateType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_importStateType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212017,26 +215892,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EUGCReadAction__value, tolua_set_Primitive_EUGCReadAction__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EUGCReadAction__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__value, tolua_set_Primitive_DPWrapper__PEER_STATE_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EWorkshopEnumerationType__value, tolua_set_Primitive_EWorkshopEnumerationType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopEnumerationType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DP_EventType__value, tolua_set_Primitive_DP_EventType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DP_EventType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DP_ProviderID__value, tolua_set_Primitive_DP_ProviderID__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DP_ProviderID__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212094,37 +215980,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EResult__value, tolua_set_Primitive_EResult__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EResult__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EUGCReadAction__value, tolua_set_Primitive_EUGCReadAction__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EUGCReadAction__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EUserUGCListSortOrder__value, tolua_set_Primitive_EUserUGCListSortOrder__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EUserUGCListSortOrder__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EWorkshopEnumerationType__value, tolua_set_Primitive_EWorkshopEnumerationType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EWorkshopEnumerationType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EItemPreviewType__value, tolua_set_Primitive_EItemPreviewType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EItemPreviewType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EResult__value, tolua_set_Primitive_EResult__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EResult__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212149,17 +216035,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_EItemUpdateStatus__value, tolua_set_Primitive_EItemUpdateStatus__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_EItemUpdateStatus__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_EUGCMatchingUGCType__value, tolua_set_Primitive_EUGCMatchingUGCType__value); @@ -212182,37 +216057,37 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardDisplayType__value, tolua_set_Primitive_ELeaderboardDisplayType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardDisplayType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EItemUpdateStatus__value, tolua_set_Primitive_EItemUpdateStatus__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EItemUpdateStatus__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardDataRequest__value, tolua_set_Primitive_ELeaderboardDataRequest__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardDataRequest__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EUserUGCListSortOrder__value, tolua_set_Primitive_EUserUGCListSortOrder__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EUserUGCListSortOrder__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardSortMethod__value, tolua_set_Primitive_ELeaderboardSortMethod__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardSortMethod__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_EItemPreviewType__value, tolua_set_Primitive_EItemPreviewType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_EItemPreviewType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212226,213 +216101,235 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__value, tolua_set_Primitive_DPWrapper__PEER_STATE_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DPWrapper__PEER_STATE_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardSortMethod__value, tolua_set_Primitive_ELeaderboardSortMethod__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardSortMethod__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DP_EventType__value, tolua_set_Primitive_DP_EventType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DP_EventType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardDataRequest__value, tolua_set_Primitive_ELeaderboardDataRequest__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardDataRequest__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DP_ProviderID__value, tolua_set_Primitive_DP_ProviderID__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DP_ProviderID__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ELeaderboardDisplayType__value, tolua_set_Primitive_ELeaderboardDisplayType__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ELeaderboardDisplayType__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_VertListType__value, tolua_set_Primitive_VertListType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_VertListType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiVariantType__value, tolua_set_Primitive_uiVariantType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiVariantType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DepthLockState__value, tolua_set_Primitive_DepthLockState__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DepthLockState__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_DWORD__value, tolua_set_Primitive_DWORD__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_DWORD__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DFORMAT>", "Primitive<_D3DFORMAT>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DFORMAT>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DFORMAT__value, tolua_set_Primitive__D3DFORMAT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DFORMAT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DFORMAT>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DFORMAT>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_size_t__value, tolua_set_Primitive_size_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_size_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DFORMAT>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawFilter__value, tolua_set_Primitive_DrawFilter__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFilter__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DMULTISAMPLE_TYPE>", "Primitive<_D3DMULTISAMPLE_TYPE>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DMULTISAMPLE_TYPE>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__value, tolua_set_Primitive__D3DMULTISAMPLE_TYPE__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DMULTISAMPLE_TYPE__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DMULTISAMPLE_TYPE>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DMULTISAMPLE_TYPE>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DMULTISAMPLE_TYPE>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<_D3DSWAPEFFECT>", "Primitive<_D3DSWAPEFFECT>", {}, NULL); - tolua_beginmodule(L, "Primitive<_D3DSWAPEFFECT>"); - tolua_variable(L, "value", tolua_get_Primitive__D3DSWAPEFFECT__value, tolua_set_Primitive__D3DSWAPEFFECT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive__D3DSWAPEFFECT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<_D3DSWAPEFFECT>)); - tolua_constantstring(L, "usertype_value", "Primitive<_D3DSWAPEFFECT>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_short__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<_D3DSWAPEFFECT>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_RendererType__value, tolua_set_Primitive_RendererType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_RendererType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawFeature__value, tolua_set_Primitive_DrawFeature__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawFeature__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_UINT__value, tolua_set_Primitive_UINT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_UINT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawTone__value, tolua_set_Primitive_DrawTone__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawTone__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_Keymod__value, tolua_set_Primitive_SDL_Keymod__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_Keymod__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int8>"); + tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawBlend__value, tolua_set_Primitive_DrawBlend__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawBlend__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "char"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uiItemType__value, tolua_set_Primitive_uiItemType__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uiItemType__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint__value, tolua_set_Primitive_uint__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DrawMode__value, tolua_set_Primitive_DrawMode__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DrawMode__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_SDL_WindowFlags__value, tolua_set_Primitive_SDL_WindowFlags__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_SDL_WindowFlags__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212446,17 +216343,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); tolua_beginmodule(L, "Primitive"); tolua_variable(L, "value", tolua_get_Primitive_float__value, tolua_set_Primitive_float__value); @@ -212468,58 +216354,15 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "ConstCharString"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int8>", "Primitive<__int8>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int8>"); - tolua_variable(L, "value", tolua_get_Primitive___int8__value, tolua_set_Primitive___int8__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int8__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int8>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int8>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int8>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int64_t__value, tolua_set_Primitive_int64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_INT__value, tolua_set_Primitive_INT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_INT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint32_t__value, tolua_set_Primitive_uint32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int__value, tolua_set_Primitive_int__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212533,48 +216376,36 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_size_t__value, tolua_set_Primitive_size_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_size_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_BOOL__value, tolua_set_Primitive_BOOL__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_BOOL__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int64>"); + tolua_variable(L, "value", tolua_get_Primitive___int64__value, tolua_set_Primitive___int64__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int64__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int64>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int64>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int32>"); - tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_char___value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "ConstCharString"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212588,92 +216419,59 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int32_t__value, tolua_set_Primitive_int32_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int32_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int64>", "Primitive<__int64>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int64>"); - tolua_variable(L, "value", tolua_get_Primitive___int64__value, tolua_set_Primitive___int64__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int64__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int64>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int64>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int64>)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_DWORD__value, tolua_set_Primitive_DWORD__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_DWORD__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_int64_t__value, tolua_set_Primitive_int64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_int64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long_double__value, tolua_set_Primitive_long_double__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long_double__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_bool__value, tolua_set_Primitive_bool__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_bool__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_intptr_t__value, tolua_set_Primitive_intptr_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_intptr_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint64_t__value, tolua_set_Primitive_uint64_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint64_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int16>"); + tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Primitive", "Primitive", {}, NULL); @@ -212687,136 +216485,48 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_HRESULT__value, tolua_set_Primitive_HRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_HRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_short__value, tolua_set_Primitive_short__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_short__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_char__value, tolua_set_Primitive_char__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_char__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "char"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LRESULT__value, tolua_set_Primitive_LRESULT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LRESULT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ushort__value, tolua_set_Primitive_ushort__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ushort__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_UINT__value, tolua_set_Primitive_UINT__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_UINT__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_long__value, tolua_set_Primitive_long__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_long__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_int16_t__value, tolua_set_Primitive_int16_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_int16_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); - tolua_endmodule(L); - tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_uint__value, tolua_set_Primitive_uint__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_uint__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive<__int32>", "Primitive<__int32>", {}, NULL); + tolua_beginmodule(L, "Primitive<__int32>"); + tolua_variable(L, "value", tolua_get_Primitive___int32__value, tolua_set_Primitive___int32__value); + tolua_variable(L, "reference_value", tolua_get_Primitive___int32__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive<__int32>)); + tolua_constantstring(L, "usertype_value", "Primitive<__int32>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive<__int32>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive<__int16>", "Primitive<__int16>", {}, NULL); - tolua_beginmodule(L, "Primitive<__int16>"); - tolua_variable(L, "value", tolua_get_Primitive___int16__value, tolua_set_Primitive___int16__value); - tolua_variable(L, "reference_value", tolua_get_Primitive___int16__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive<__int16>)); - tolua_constantstring(L, "usertype_value", "Primitive<__int16>"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_byte__value, tolua_set_Primitive_byte__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_byte__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive<__int16>)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_LONG__value, tolua_set_Primitive_LONG__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_LONG__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_lua_Integer__value, tolua_set_Primitive_lua_Integer__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_lua_Integer__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Primitive", "Primitive", {}, NULL); - tolua_beginmodule(L, "Primitive"); - tolua_variable(L, "value", tolua_get_Primitive_ptrdiff_t__value, tolua_set_Primitive_ptrdiff_t__value); - tolua_variable(L, "reference_value", tolua_get_Primitive_ptrdiff_t__reference_value, NULL); - tolua_constant(L, "sizeof", sizeof(Primitive)); - tolua_constantstring(L, "usertype_value", "Primitive"); + tolua_cclass(L, "Primitive", "Primitive", {}, NULL); + tolua_beginmodule(L, "Primitive"); + tolua_variable(L, "value", tolua_get_Primitive_uint16_t__value, tolua_set_Primitive_uint16_t__value); + tolua_variable(L, "reference_value", tolua_get_Primitive_uint16_t__reference_value, NULL); + tolua_constant(L, "sizeof", sizeof(Primitive)); + tolua_constantstring(L, "usertype_value", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "value", offsetoftype(value, Primitive)); + tolua_constant(L, "value", offsetoftype(value, Primitive)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "SAreaFileWrapper", "SAreaFileWrapper", {}, NULL); @@ -212853,6 +216563,10 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "driverdata", offsetoftype(driverdata, SDL_Cursor)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_PrivateGLESData", "SDL_PrivateGLESData", {}, NULL); + tolua_beginmodule(L, "SDL_PrivateGLESData"); + tolua_constant(L, "sizeof", sizeof(SDL_PrivateGLESData)); + tolua_endmodule(L); tolua_cclass(L, "SDL_WindowUserData", "SDL_WindowUserData", {}, NULL); tolua_beginmodule(L, "SDL_WindowUserData"); tolua_variable(L, "name", tolua_get_SDL_WindowUserData_name, NULL); @@ -214302,6 +218016,25 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "patch", offsetoftype(patch, SDL_version)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_MessageBoxColor", "SDL_MessageBoxColor", {}, NULL); + tolua_beginmodule(L, "SDL_MessageBoxColor"); + tolua_variable(L, "r", tolua_get_SDL_MessageBoxColor_r, tolua_set_SDL_MessageBoxColor_r); + tolua_variable(L, "reference_r", tolua_get_SDL_MessageBoxColor_reference_r, NULL); + tolua_variable(L, "g", tolua_get_SDL_MessageBoxColor_g, tolua_set_SDL_MessageBoxColor_g); + tolua_variable(L, "reference_g", tolua_get_SDL_MessageBoxColor_reference_g, NULL); + tolua_variable(L, "b", tolua_get_SDL_MessageBoxColor_b, tolua_set_SDL_MessageBoxColor_b); + tolua_variable(L, "reference_b", tolua_get_SDL_MessageBoxColor_reference_b, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_MessageBoxColor)); + tolua_constantstring(L, "usertype_r", "Primitive<__int8>"); + tolua_constantstring(L, "usertype_g", "Primitive<__int8>"); + tolua_constantstring(L, "usertype_b", "Primitive<__int8>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "r", offsetoftype(r, SDL_MessageBoxColor)); + tolua_constant(L, "g", offsetoftype(g, SDL_MessageBoxColor)); + tolua_constant(L, "b", offsetoftype(b, SDL_MessageBoxColor)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_Color", "SDL_Color", {}, NULL); tolua_beginmodule(L, "SDL_Color"); tolua_variable(L, "r", tolua_get_SDL_Color_r, tolua_set_SDL_Color_r); @@ -215456,6 +219189,52 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "lParam", offsetoftype(lParam, SDL_SysWMmsg::msg_t::win_t)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_SysWMinfo", "SDL_SysWMinfo", {}, NULL); + tolua_beginmodule(L, "SDL_SysWMinfo"); + tolua_variable(L, "version", tolua_get_SDL_SysWMinfo_version, NULL); + tolua_variable(L, "subsystem", tolua_get_SDL_SysWMinfo_subsystem, tolua_set_SDL_SysWMinfo_subsystem); + tolua_variable(L, "reference_subsystem", tolua_get_SDL_SysWMinfo_reference_subsystem, NULL); + tolua_variable(L, "info", tolua_get_SDL_SysWMinfo_info, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_SysWMinfo)); + tolua_constantstring(L, "usertype_version", "SDL_version"); + tolua_constantstring(L, "usertype_subsystem", "Primitive"); + tolua_constantstring(L, "usertype_info", "SDL_SysWMinfo::info_t"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "version", offsetoftype(version, SDL_SysWMinfo)); + tolua_constant(L, "subsystem", offsetoftype(subsystem, SDL_SysWMinfo)); + tolua_constant(L, "info", offsetoftype(info, SDL_SysWMinfo)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "SDL_SysWMinfo::info_t", "SDL_SysWMinfo::info_t", {}, NULL); + tolua_beginmodule(L, "SDL_SysWMinfo::info_t"); + tolua_variable(L, "win", tolua_get_SDL_SysWMinfo__info_t_win, NULL); + tolua_variable(L, "dummy", tolua_get_SDL_SysWMinfo__info_t_dummy, tolua_set_SDL_SysWMinfo__info_t_dummy); + tolua_variable(L, "reference_dummy", tolua_get_SDL_SysWMinfo__info_t_reference_dummy, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_SysWMinfo::info_t)); + tolua_constantstring(L, "usertype_win", "SDL_SysWMinfo::info_t::win_t"); + tolua_constantstring(L, "usertype_dummy", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "win", offsetoftype(win, SDL_SysWMinfo::info_t)); + tolua_constant(L, "dummy", offsetoftype(dummy, SDL_SysWMinfo::info_t)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "SDL_SysWMinfo::info_t::win_t", "SDL_SysWMinfo::info_t::win_t", {}, NULL); + tolua_beginmodule(L, "SDL_SysWMinfo::info_t::win_t"); + tolua_variable(L, "window", tolua_get_SDL_SysWMinfo__info_t__win_t_window, tolua_set_SDL_SysWMinfo__info_t__win_t_window); + tolua_variable(L, "reference_window", tolua_get_SDL_SysWMinfo__info_t__win_t_reference_window, NULL); + tolua_variable(L, "hdc", tolua_get_SDL_SysWMinfo__info_t__win_t_hdc, tolua_set_SDL_SysWMinfo__info_t__win_t_hdc); + tolua_variable(L, "reference_hdc", tolua_get_SDL_SysWMinfo__info_t__win_t_reference_hdc, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_SysWMinfo::info_t::win_t)); + tolua_constantstring(L, "usertype_window", "HWND__"); + tolua_constantstring(L, "usertype_hdc", "HDC__"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "window", offsetoftype(window, SDL_SysWMinfo::info_t::win_t)); + tolua_constant(L, "hdc", offsetoftype(hdc, SDL_SysWMinfo::info_t::win_t)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_SysWMEvent", "SDL_SysWMEvent", {}, NULL); tolua_beginmodule(L, "SDL_SysWMEvent"); tolua_variable(L, "type", tolua_get_SDL_SysWMEvent_type, tolua_set_SDL_SysWMEvent_type); @@ -215475,6 +219254,19 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "msg", offsetoftype(msg, SDL_SysWMEvent)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_ShapeDriver", "SDL_ShapeDriver", {}, NULL); + tolua_beginmodule(L, "SDL_ShapeDriver"); + tolua_function(L, "CreateShaper", &tolua_function_SDL_ShapeDriver_CreateShaper); + tolua_function(L, "SetWindowShape", &tolua_function_SDL_ShapeDriver_SetWindowShape); + tolua_function(L, "ResizeWindowShape", &tolua_function_SDL_ShapeDriver_ResizeWindowShape); + tolua_constant(L, "sizeof", sizeof(SDL_ShapeDriver)); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "CreateShaper", offsetoftype(CreateShaper, SDL_ShapeDriver)); + tolua_constant(L, "SetWindowShape", offsetoftype(SetWindowShape, SDL_ShapeDriver)); + tolua_constant(L, "ResizeWindowShape", offsetoftype(ResizeWindowShape, SDL_ShapeDriver)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_QuitEvent", "SDL_QuitEvent", {}, NULL); tolua_beginmodule(L, "SDL_QuitEvent"); tolua_variable(L, "type", tolua_get_SDL_QuitEvent_type, tolua_set_SDL_QuitEvent_type); @@ -215681,6 +219473,57 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "y", offsetoftype(y, SDL_MouseButtonEvent)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_MessageBoxData", "SDL_MessageBoxData", {}, NULL); + tolua_beginmodule(L, "SDL_MessageBoxData"); + tolua_variable(L, "flags", tolua_get_SDL_MessageBoxData_flags, tolua_set_SDL_MessageBoxData_flags); + tolua_variable(L, "reference_flags", tolua_get_SDL_MessageBoxData_reference_flags, NULL); + tolua_variable(L, "window", tolua_get_SDL_MessageBoxData_window, tolua_set_SDL_MessageBoxData_window); + tolua_variable(L, "reference_window", tolua_get_SDL_MessageBoxData_reference_window, NULL); + tolua_variable(L, "title", tolua_get_SDL_MessageBoxData_title, NULL); + tolua_variable(L, "message", tolua_get_SDL_MessageBoxData_message, NULL); + tolua_variable(L, "numbuttons", tolua_get_SDL_MessageBoxData_numbuttons, tolua_set_SDL_MessageBoxData_numbuttons); + tolua_variable(L, "reference_numbuttons", tolua_get_SDL_MessageBoxData_reference_numbuttons, NULL); + tolua_variable(L, "buttons", tolua_get_SDL_MessageBoxData_buttons, tolua_set_SDL_MessageBoxData_buttons); + tolua_variable(L, "reference_buttons", tolua_get_SDL_MessageBoxData_reference_buttons, NULL); + tolua_variable(L, "colorScheme", tolua_get_SDL_MessageBoxData_colorScheme, tolua_set_SDL_MessageBoxData_colorScheme); + tolua_variable(L, "reference_colorScheme", tolua_get_SDL_MessageBoxData_reference_colorScheme, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_MessageBoxData)); + tolua_constantstring(L, "usertype_flags", "Primitive"); + tolua_constantstring(L, "usertype_window", "SDL_Window"); + tolua_constantstring(L, "usertype_title", "ConstCharString"); + tolua_constantstring(L, "usertype_message", "ConstCharString"); + tolua_constantstring(L, "usertype_numbuttons", "Primitive"); + tolua_constantstring(L, "usertype_buttons", "SDL_MessageBoxButtonData"); + tolua_constantstring(L, "usertype_colorScheme", "SDL_MessageBoxColorScheme"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "flags", offsetoftype(flags, SDL_MessageBoxData)); + tolua_constant(L, "window", offsetoftype(window, SDL_MessageBoxData)); + tolua_constant(L, "title", offsetoftype(title, SDL_MessageBoxData)); + tolua_constant(L, "message", offsetoftype(message, SDL_MessageBoxData)); + tolua_constant(L, "numbuttons", offsetoftype(numbuttons, SDL_MessageBoxData)); + tolua_constant(L, "buttons", offsetoftype(buttons, SDL_MessageBoxData)); + tolua_constant(L, "colorScheme", offsetoftype(colorScheme, SDL_MessageBoxData)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "SDL_MessageBoxButtonData", "SDL_MessageBoxButtonData", {}, NULL); + tolua_beginmodule(L, "SDL_MessageBoxButtonData"); + tolua_variable(L, "flags", tolua_get_SDL_MessageBoxButtonData_flags, tolua_set_SDL_MessageBoxButtonData_flags); + tolua_variable(L, "reference_flags", tolua_get_SDL_MessageBoxButtonData_reference_flags, NULL); + tolua_variable(L, "buttonid", tolua_get_SDL_MessageBoxButtonData_buttonid, tolua_set_SDL_MessageBoxButtonData_buttonid); + tolua_variable(L, "reference_buttonid", tolua_get_SDL_MessageBoxButtonData_reference_buttonid, NULL); + tolua_variable(L, "text", tolua_get_SDL_MessageBoxButtonData_text, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_MessageBoxButtonData)); + tolua_constantstring(L, "usertype_flags", "Primitive"); + tolua_constantstring(L, "usertype_buttonid", "Primitive"); + tolua_constantstring(L, "usertype_text", "ConstCharString"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "flags", offsetoftype(flags, SDL_MessageBoxButtonData)); + tolua_constant(L, "buttonid", offsetoftype(buttonid, SDL_MessageBoxButtonData)); + tolua_constant(L, "text", offsetoftype(text, SDL_MessageBoxButtonData)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_Keysym", "SDL_Keysym", {}, NULL); tolua_beginmodule(L, "SDL_Keysym"); tolua_variable(L, "scancode", tolua_get_SDL_Keysym_scancode, tolua_set_SDL_Keysym_scancode); @@ -215917,6 +219760,107 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "padding4", offsetoftype(padding4, SDL_JoyAxisEvent)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_GLDriverData", "SDL_GLDriverData", {}, NULL); + tolua_beginmodule(L, "SDL_GLDriverData"); + tolua_variable(L, "HAS_WGL_ARB_pixel_format", tolua_get_SDL_GLDriverData_HAS_WGL_ARB_pixel_format, tolua_set_SDL_GLDriverData_HAS_WGL_ARB_pixel_format); + tolua_variable(L, "reference_HAS_WGL_ARB_pixel_format", tolua_get_SDL_GLDriverData_reference_HAS_WGL_ARB_pixel_format, NULL); + tolua_variable(L, "HAS_WGL_EXT_swap_control_tear", tolua_get_SDL_GLDriverData_HAS_WGL_EXT_swap_control_tear, tolua_set_SDL_GLDriverData_HAS_WGL_EXT_swap_control_tear); + tolua_variable(L, "reference_HAS_WGL_EXT_swap_control_tear", tolua_get_SDL_GLDriverData_reference_HAS_WGL_EXT_swap_control_tear, NULL); + tolua_variable(L, "HAS_WGL_EXT_create_context_es2_profile", tolua_get_SDL_GLDriverData_HAS_WGL_EXT_create_context_es2_profile, tolua_set_SDL_GLDriverData_HAS_WGL_EXT_create_context_es2_profile); + tolua_variable(L, "reference_HAS_WGL_EXT_create_context_es2_profile", tolua_get_SDL_GLDriverData_reference_HAS_WGL_EXT_create_context_es2_profile, NULL); + tolua_variable(L, "HAS_WGL_ARB_context_flush_control", tolua_get_SDL_GLDriverData_HAS_WGL_ARB_context_flush_control, tolua_set_SDL_GLDriverData_HAS_WGL_ARB_context_flush_control); + tolua_variable(L, "reference_HAS_WGL_ARB_context_flush_control", tolua_get_SDL_GLDriverData_reference_HAS_WGL_ARB_context_flush_control, NULL); + tolua_function(L, "wglGetProcAddress", &tolua_function_SDL_GLDriverData_wglGetProcAddress); + tolua_function(L, "wglCreateContext", &tolua_function_SDL_GLDriverData_wglCreateContext); + tolua_function(L, "wglDeleteContext", &tolua_function_SDL_GLDriverData_wglDeleteContext); + tolua_function(L, "wglMakeCurrent", &tolua_function_SDL_GLDriverData_wglMakeCurrent); + tolua_function(L, "wglShareLists", &tolua_function_SDL_GLDriverData_wglShareLists); + tolua_function(L, "wglChoosePixelFormatARB", &tolua_function_SDL_GLDriverData_wglChoosePixelFormatARB); + tolua_function(L, "wglGetPixelFormatAttribivARB", &tolua_function_SDL_GLDriverData_wglGetPixelFormatAttribivARB); + tolua_function(L, "wglSwapIntervalEXT", &tolua_function_SDL_GLDriverData_wglSwapIntervalEXT); + tolua_function(L, "wglGetSwapIntervalEXT", &tolua_function_SDL_GLDriverData_wglGetSwapIntervalEXT); + tolua_constant(L, "sizeof", sizeof(SDL_GLDriverData)); + tolua_constantstring(L, "usertype_HAS_WGL_ARB_pixel_format", "Primitive"); + tolua_constantstring(L, "usertype_HAS_WGL_EXT_swap_control_tear", "Primitive"); + tolua_constantstring(L, "usertype_HAS_WGL_EXT_create_context_es2_profile", "Primitive"); + tolua_constantstring(L, "usertype_HAS_WGL_ARB_context_flush_control", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "HAS_WGL_ARB_pixel_format", offsetoftype(HAS_WGL_ARB_pixel_format, SDL_GLDriverData)); + tolua_constant(L, "HAS_WGL_EXT_swap_control_tear", offsetoftype(HAS_WGL_EXT_swap_control_tear, SDL_GLDriverData)); + tolua_constant(L, "HAS_WGL_EXT_create_context_es2_profile", offsetoftype(HAS_WGL_EXT_create_context_es2_profile, SDL_GLDriverData)); + tolua_constant(L, "HAS_WGL_ARB_context_flush_control", offsetoftype(HAS_WGL_ARB_context_flush_control, SDL_GLDriverData)); + tolua_constant(L, "wglGetProcAddress", offsetoftype(wglGetProcAddress, SDL_GLDriverData)); + tolua_constant(L, "wglCreateContext", offsetoftype(wglCreateContext, SDL_GLDriverData)); + tolua_constant(L, "wglDeleteContext", offsetoftype(wglDeleteContext, SDL_GLDriverData)); + tolua_constant(L, "wglMakeCurrent", offsetoftype(wglMakeCurrent, SDL_GLDriverData)); + tolua_constant(L, "wglShareLists", offsetoftype(wglShareLists, SDL_GLDriverData)); + tolua_constant(L, "wglChoosePixelFormatARB", offsetoftype(wglChoosePixelFormatARB, SDL_GLDriverData)); + tolua_constant(L, "wglGetPixelFormatAttribivARB", offsetoftype(wglGetPixelFormatAttribivARB, SDL_GLDriverData)); + tolua_constant(L, "wglSwapIntervalEXT", offsetoftype(wglSwapIntervalEXT, SDL_GLDriverData)); + tolua_constant(L, "wglGetSwapIntervalEXT", offsetoftype(wglGetSwapIntervalEXT, SDL_GLDriverData)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "SDL_EGL_VideoData", "SDL_EGL_VideoData", {}, NULL); + tolua_beginmodule(L, "SDL_EGL_VideoData"); + tolua_variable(L, "egl_dll_handle", tolua_get_SDL_EGL_VideoData_egl_dll_handle, tolua_set_SDL_EGL_VideoData_egl_dll_handle); + tolua_variable(L, "reference_egl_dll_handle", tolua_get_SDL_EGL_VideoData_reference_egl_dll_handle, NULL); + tolua_variable(L, "dll_handle", tolua_get_SDL_EGL_VideoData_dll_handle, tolua_set_SDL_EGL_VideoData_dll_handle); + tolua_variable(L, "reference_dll_handle", tolua_get_SDL_EGL_VideoData_reference_dll_handle, NULL); + tolua_variable(L, "egl_display", tolua_get_SDL_EGL_VideoData_egl_display, tolua_set_SDL_EGL_VideoData_egl_display); + tolua_variable(L, "reference_egl_display", tolua_get_SDL_EGL_VideoData_reference_egl_display, NULL); + tolua_variable(L, "egl_config", tolua_get_SDL_EGL_VideoData_egl_config, tolua_set_SDL_EGL_VideoData_egl_config); + tolua_variable(L, "reference_egl_config", tolua_get_SDL_EGL_VideoData_reference_egl_config, NULL); + tolua_variable(L, "egl_swapinterval", tolua_get_SDL_EGL_VideoData_egl_swapinterval, tolua_set_SDL_EGL_VideoData_egl_swapinterval); + tolua_variable(L, "reference_egl_swapinterval", tolua_get_SDL_EGL_VideoData_reference_egl_swapinterval, NULL); + tolua_function(L, "eglGetDisplay", &tolua_function_SDL_EGL_VideoData_eglGetDisplay); + tolua_function(L, "eglInitialize", &tolua_function_SDL_EGL_VideoData_eglInitialize); + tolua_function(L, "eglTerminate", &tolua_function_SDL_EGL_VideoData_eglTerminate); + tolua_function(L, "eglGetProcAddress", &tolua_function_SDL_EGL_VideoData_eglGetProcAddress); + tolua_function(L, "eglChooseConfig", &tolua_function_SDL_EGL_VideoData_eglChooseConfig); + tolua_function(L, "eglCreateContext", &tolua_function_SDL_EGL_VideoData_eglCreateContext); + tolua_function(L, "eglDestroyContext", &tolua_function_SDL_EGL_VideoData_eglDestroyContext); + tolua_function(L, "eglCreateWindowSurface", &tolua_function_SDL_EGL_VideoData_eglCreateWindowSurface); + tolua_function(L, "eglDestroySurface", &tolua_function_SDL_EGL_VideoData_eglDestroySurface); + tolua_function(L, "eglMakeCurrent", &tolua_function_SDL_EGL_VideoData_eglMakeCurrent); + tolua_function(L, "eglSwapBuffers", &tolua_function_SDL_EGL_VideoData_eglSwapBuffers); + tolua_function(L, "eglSwapInterval", &tolua_function_SDL_EGL_VideoData_eglSwapInterval); + tolua_function(L, "eglGetConfigAttrib", &tolua_function_SDL_EGL_VideoData_eglGetConfigAttrib); + tolua_function(L, "eglWaitNative", &tolua_function_SDL_EGL_VideoData_eglWaitNative); + tolua_function(L, "eglWaitGL", &tolua_function_SDL_EGL_VideoData_eglWaitGL); + tolua_function(L, "eglBindAPI", &tolua_function_SDL_EGL_VideoData_eglBindAPI); + tolua_constant(L, "sizeof", sizeof(SDL_EGL_VideoData)); + tolua_constantstring(L, "usertype_egl_dll_handle", "UnmappedUserType"); + tolua_constantstring(L, "usertype_dll_handle", "UnmappedUserType"); + tolua_constantstring(L, "usertype_egl_display", "UnmappedUserType"); + tolua_constantstring(L, "usertype_egl_config", "UnmappedUserType"); + tolua_constantstring(L, "usertype_egl_swapinterval", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "egl_dll_handle", offsetoftype(egl_dll_handle, SDL_EGL_VideoData)); + tolua_constant(L, "dll_handle", offsetoftype(dll_handle, SDL_EGL_VideoData)); + tolua_constant(L, "egl_display", offsetoftype(egl_display, SDL_EGL_VideoData)); + tolua_constant(L, "egl_config", offsetoftype(egl_config, SDL_EGL_VideoData)); + tolua_constant(L, "egl_swapinterval", offsetoftype(egl_swapinterval, SDL_EGL_VideoData)); + tolua_constant(L, "eglGetDisplay", offsetoftype(eglGetDisplay, SDL_EGL_VideoData)); + tolua_constant(L, "eglInitialize", offsetoftype(eglInitialize, SDL_EGL_VideoData)); + tolua_constant(L, "eglTerminate", offsetoftype(eglTerminate, SDL_EGL_VideoData)); + tolua_constant(L, "eglGetProcAddress", offsetoftype(eglGetProcAddress, SDL_EGL_VideoData)); + tolua_constant(L, "eglChooseConfig", offsetoftype(eglChooseConfig, SDL_EGL_VideoData)); + tolua_constant(L, "eglCreateContext", offsetoftype(eglCreateContext, SDL_EGL_VideoData)); + tolua_constant(L, "eglDestroyContext", offsetoftype(eglDestroyContext, SDL_EGL_VideoData)); + tolua_constant(L, "eglCreateWindowSurface", offsetoftype(eglCreateWindowSurface, SDL_EGL_VideoData)); + tolua_constant(L, "eglDestroySurface", offsetoftype(eglDestroySurface, SDL_EGL_VideoData)); + tolua_constant(L, "eglMakeCurrent", offsetoftype(eglMakeCurrent, SDL_EGL_VideoData)); + tolua_constant(L, "eglSwapBuffers", offsetoftype(eglSwapBuffers, SDL_EGL_VideoData)); + tolua_constant(L, "eglSwapInterval", offsetoftype(eglSwapInterval, SDL_EGL_VideoData)); + tolua_constant(L, "eglQueryString", offsetoftype(eglQueryString, SDL_EGL_VideoData)); + tolua_constant(L, "eglGetConfigAttrib", offsetoftype(eglGetConfigAttrib, SDL_EGL_VideoData)); + tolua_constant(L, "eglWaitNative", offsetoftype(eglWaitNative, SDL_EGL_VideoData)); + tolua_constant(L, "eglWaitGL", offsetoftype(eglWaitGL, SDL_EGL_VideoData)); + tolua_constant(L, "eglBindAPI", offsetoftype(eglBindAPI, SDL_EGL_VideoData)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_DropEvent", "SDL_DropEvent", {}, NULL); tolua_beginmodule(L, "SDL_DropEvent"); tolua_variable(L, "type", tolua_get_SDL_DropEvent_type, tolua_set_SDL_DropEvent_type); @@ -216001,6 +219945,46 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "driverdata", offsetoftype(driverdata, SDL_DisplayMode)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_VideoDisplay", "SDL_VideoDisplay", {}, NULL); + tolua_beginmodule(L, "SDL_VideoDisplay"); + tolua_variable(L, "name", tolua_get_SDL_VideoDisplay_name, NULL); + tolua_variable(L, "max_display_modes", tolua_get_SDL_VideoDisplay_max_display_modes, tolua_set_SDL_VideoDisplay_max_display_modes); + tolua_variable(L, "reference_max_display_modes", tolua_get_SDL_VideoDisplay_reference_max_display_modes, NULL); + tolua_variable(L, "num_display_modes", tolua_get_SDL_VideoDisplay_num_display_modes, tolua_set_SDL_VideoDisplay_num_display_modes); + tolua_variable(L, "reference_num_display_modes", tolua_get_SDL_VideoDisplay_reference_num_display_modes, NULL); + tolua_variable(L, "display_modes", tolua_get_SDL_VideoDisplay_display_modes, tolua_set_SDL_VideoDisplay_display_modes); + tolua_variable(L, "reference_display_modes", tolua_get_SDL_VideoDisplay_reference_display_modes, NULL); + tolua_variable(L, "desktop_mode", tolua_get_SDL_VideoDisplay_desktop_mode, NULL); + tolua_variable(L, "current_mode", tolua_get_SDL_VideoDisplay_current_mode, NULL); + tolua_variable(L, "fullscreen_window", tolua_get_SDL_VideoDisplay_fullscreen_window, tolua_set_SDL_VideoDisplay_fullscreen_window); + tolua_variable(L, "reference_fullscreen_window", tolua_get_SDL_VideoDisplay_reference_fullscreen_window, NULL); + tolua_variable(L, "device", tolua_get_SDL_VideoDisplay_device, tolua_set_SDL_VideoDisplay_device); + tolua_variable(L, "reference_device", tolua_get_SDL_VideoDisplay_reference_device, NULL); + tolua_variable(L, "driverdata", tolua_get_SDL_VideoDisplay_driverdata, tolua_set_SDL_VideoDisplay_driverdata); + tolua_variable(L, "reference_driverdata", tolua_get_SDL_VideoDisplay_reference_driverdata, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_VideoDisplay)); + tolua_constantstring(L, "usertype_name", "CharString"); + tolua_constantstring(L, "usertype_max_display_modes", "Primitive"); + tolua_constantstring(L, "usertype_num_display_modes", "Primitive"); + tolua_constantstring(L, "usertype_display_modes", "SDL_DisplayMode"); + tolua_constantstring(L, "usertype_desktop_mode", "SDL_DisplayMode"); + tolua_constantstring(L, "usertype_current_mode", "SDL_DisplayMode"); + tolua_constantstring(L, "usertype_fullscreen_window", "SDL_Window"); + tolua_constantstring(L, "usertype_device", "SDL_VideoDevice"); + tolua_constantstring(L, "usertype_driverdata", "UnmappedUserType"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "name", offsetoftype(name, SDL_VideoDisplay)); + tolua_constant(L, "max_display_modes", offsetoftype(max_display_modes, SDL_VideoDisplay)); + tolua_constant(L, "num_display_modes", offsetoftype(num_display_modes, SDL_VideoDisplay)); + tolua_constant(L, "display_modes", offsetoftype(display_modes, SDL_VideoDisplay)); + tolua_constant(L, "desktop_mode", offsetoftype(desktop_mode, SDL_VideoDisplay)); + tolua_constant(L, "current_mode", offsetoftype(current_mode, SDL_VideoDisplay)); + tolua_constant(L, "fullscreen_window", offsetoftype(fullscreen_window, SDL_VideoDisplay)); + tolua_constant(L, "device", offsetoftype(device, SDL_VideoDisplay)); + tolua_constant(L, "driverdata", offsetoftype(driverdata, SDL_VideoDisplay)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_ControllerDeviceEvent", "SDL_ControllerDeviceEvent", {}, NULL); tolua_beginmodule(L, "SDL_ControllerDeviceEvent"); tolua_variable(L, "type", tolua_get_SDL_ControllerDeviceEvent_type, tolua_set_SDL_ControllerDeviceEvent_type); @@ -216859,6 +220843,28 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "unused", offsetoftype(unused, HWND__)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "HGLRC__", "HGLRC__", {}, NULL); + tolua_beginmodule(L, "HGLRC__"); + tolua_variable(L, "unused", tolua_get_HGLRC___unused, tolua_set_HGLRC___unused); + tolua_variable(L, "reference_unused", tolua_get_HGLRC___reference_unused, NULL); + tolua_constant(L, "sizeof", sizeof(HGLRC__)); + tolua_constantstring(L, "usertype_unused", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "unused", offsetoftype(unused, HGLRC__)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "HDC__", "HDC__", {}, NULL); + tolua_beginmodule(L, "HDC__"); + tolua_variable(L, "unused", tolua_get_HDC___unused, tolua_set_HDC___unused); + tolua_variable(L, "reference_unused", tolua_get_HDC___reference_unused, NULL); + tolua_constant(L, "sizeof", sizeof(HDC__)); + tolua_constantstring(L, "usertype_unused", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "unused", offsetoftype(unused, HDC__)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "DP_Packet", "DP_Packet", {}, NULL); tolua_beginmodule(L, "DP_Packet"); tolua_variable(L, "flags", tolua_get_DP_Packet_flags, tolua_set_DP_Packet_flags); @@ -219595,6 +223601,13 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray__D98D369160A0DDA2B95F5D0F301081BB__set); tolua_constant(L, "sizeof", sizeof(VariableArray<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_short__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_short__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_short__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_ushort__get); @@ -219615,13 +223628,6 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_byte__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); - tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); - tolua_beginmodule(L, "VariableArray"); - tolua_function(L, "get", &tolua_function_VariableArray_short__get); - tolua_function(L, "getReference", &tolua_function_VariableArray_short__getReference); - tolua_function(L, "set", &tolua_function_VariableArray_short__set); - tolua_constant(L, "sizeof", sizeof(VariableArray)); - tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CRect__getReference); @@ -219762,6 +223768,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_SDL_Cursor__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_PrivateGLESData__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_PrivateGLESData__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_WindowUserData__getReference); @@ -219860,6 +223872,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_SDL_Color__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_WindowShapeMode__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_WindowShapeMode__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CVisibilityMapEllipse__getReference); @@ -219909,6 +223927,12 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_long_double__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "get", &tolua_function_VariableArray_const_float__get); + tolua_function(L, "getReference", &tolua_function_VariableArray_const_float__getReference); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "get", &tolua_function_VariableArray_const_unsigned_int__get); @@ -220016,12 +224040,52 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_SDL_SysWMmsg__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_SysWMinfo__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_SysWMinfo__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_Palette__getReference); tolua_function(L, "set", &tolua_function_VariableArray_SDL_Palette__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_const_SDL_MessageBoxData__getReference); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_const_SDL_MessageBoxButtonData__getReference); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_GLDriverData__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_GLDriverData__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_EGL_VideoData__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_EGL_VideoData__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_DisplayMode__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_DisplayMode__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_VideoDisplay__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_VideoDisplay__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_BlitMap__getReference); @@ -220083,6 +224147,18 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_HWND____set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_HGLRC____getReference); + tolua_function(L, "set", &tolua_function_VariableArray_HGLRC____set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_HDC____getReference); + tolua_function(L, "set", &tolua_function_VariableArray_HDC____set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_DP_Packet__getReference); @@ -220705,12 +224781,23 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "set", &tolua_function_VariableArray_lua_longjmp__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_VideoDevice__getReference); + tolua_function(L, "set", &tolua_function_VariableArray_SDL_VideoDevice__set); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_SDL_PixelFormat__getReference); tolua_function(L, "set", &tolua_function_VariableArray_SDL_PixelFormat__set); tolua_constant(L, "sizeof", sizeof(VariableArray)); tolua_endmodule(L); + tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); + tolua_beginmodule(L, "VariableArray"); + tolua_function(L, "getReference", &tolua_function_VariableArray_const_SDL_MessageBoxColorScheme__getReference); + tolua_constant(L, "sizeof", sizeof(VariableArray)); + tolua_endmodule(L); tolua_cclass(L, "VariableArray", "VariableArray", {}, NULL); tolua_beginmodule(L, "VariableArray"); tolua_function(L, "getReference", &tolua_function_VariableArray_CVariable__getReference); @@ -221850,6 +225937,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_VideoDisplay__reference, tolua_set_Pointer_SDL_VideoDisplay__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_VideoDisplay__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_VideoDisplay"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_SDL_Window__reference, tolua_set_Pointer_SDL_Window__reference); @@ -223226,6 +227324,28 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_DisplayMode__reference, tolua_set_Pointer_SDL_DisplayMode__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_DisplayMode__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_DisplayMode"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_VideoDevice__reference, tolua_set_Pointer_SDL_VideoDevice__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_VideoDevice__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_VideoDevice"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_wchar_t__reference, tolua_set_Pointer_wchar_t__reference); @@ -225539,6 +229659,26 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_SDL_MessageBoxButtonData__reference, tolua_set_Pointer_const_SDL_MessageBoxButtonData__reference); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_MessageBoxButtonData"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_SDL_MessageBoxColorScheme__reference, tolua_set_Pointer_const_SDL_MessageBoxColorScheme__reference); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_MessageBoxColorScheme"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_CTimer__reference, tolua_set_Pointer_CTimer__reference); @@ -225561,6 +229701,104 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_HDC____reference, tolua_set_Pointer_HDC____reference); + tolua_function(L, "setValue", &tolua_function_Pointer_HDC____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "HDC__"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_WindowShapeMode__reference, tolua_set_Pointer_SDL_WindowShapeMode__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_WindowShapeMode__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_WindowShapeMode"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_SysWMinfo__reference, tolua_set_Pointer_SDL_SysWMinfo__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_SysWMinfo__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_SysWMinfo"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_SDL_MessageBoxData__reference, tolua_set_Pointer_const_SDL_MessageBoxData__reference); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_MessageBoxData"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_GLDriverData__reference, tolua_set_Pointer_SDL_GLDriverData__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_GLDriverData__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_GLDriverData"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_EGL_VideoData__reference, tolua_set_Pointer_SDL_EGL_VideoData__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_EGL_VideoData__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_EGL_VideoData"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_PrivateGLESData__reference, tolua_set_Pointer_SDL_PrivateGLESData__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_PrivateGLESData__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_PrivateGLESData"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_HGLRC____reference, tolua_set_Pointer_HGLRC____reference); + tolua_function(L, "setValue", &tolua_function_Pointer_HGLRC____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "HGLRC__"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_float__reference, tolua_set_Pointer_const_float__reference); + tolua_function(L, "getValue", &tolua_function_Pointer_const_float__getValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CString___reference, tolua_set_Pointer_VariableArray_CString___reference); @@ -225707,6 +229945,18 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_VideoDisplay___reference, tolua_set_Pointer_SDL_VideoDisplay___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_VideoDisplay___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_VideoDisplay___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_SDL_Window___reference, tolua_set_Pointer_SDL_Window___reference); @@ -227136,6 +231386,30 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_DisplayMode___reference, tolua_set_Pointer_SDL_DisplayMode___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_DisplayMode___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_DisplayMode___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_VideoDevice___reference, tolua_set_Pointer_SDL_VideoDevice___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_VideoDevice___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_VideoDevice___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_wchar_t___reference, tolua_set_Pointer_wchar_t___reference); @@ -229577,6 +233851,28 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_SDL_MessageBoxButtonData___reference, tolua_set_Pointer_const_SDL_MessageBoxButtonData___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_const_SDL_MessageBoxButtonData___getValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_SDL_MessageBoxColorScheme___reference, tolua_set_Pointer_const_SDL_MessageBoxColorScheme___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_const_SDL_MessageBoxColorScheme___getValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_CTimer___reference, tolua_set_Pointer_CTimer___reference); @@ -229601,6 +233897,112 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_HDC_____reference, tolua_set_Pointer_HDC_____reference); + tolua_function(L, "getValue", &tolua_function_Pointer_HDC_____getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_HDC_____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_WindowShapeMode___reference, tolua_set_Pointer_SDL_WindowShapeMode___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_WindowShapeMode___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_WindowShapeMode___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_SysWMinfo___reference, tolua_set_Pointer_SDL_SysWMinfo___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_SysWMinfo___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_SysWMinfo___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_SDL_MessageBoxData___reference, tolua_set_Pointer_const_SDL_MessageBoxData___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_const_SDL_MessageBoxData___getValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_GLDriverData___reference, tolua_set_Pointer_SDL_GLDriverData___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_GLDriverData___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_GLDriverData___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_EGL_VideoData___reference, tolua_set_Pointer_SDL_EGL_VideoData___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_EGL_VideoData___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_EGL_VideoData___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_PrivateGLESData___reference, tolua_set_Pointer_SDL_PrivateGLESData___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_PrivateGLESData___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_PrivateGLESData___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_HGLRC_____reference, tolua_set_Pointer_HGLRC_____reference); + tolua_function(L, "getValue", &tolua_function_Pointer_HGLRC_____getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_HGLRC_____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_const_float___reference, tolua_set_Pointer_const_float___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_const_float___getValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); tolua_beginmodule(L, "Pointer*>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CString____reference, tolua_set_Pointer_VariableArray_CString____reference); @@ -230351,92 +234753,103 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_double___reference, tolua_set_Pointer_Primitive_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_DWORD___reference, tolua_set_Pointer_Primitive_DWORD___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_DWORD___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_size_t___reference, tolua_set_Pointer_Primitive_size_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_size_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ushort___reference, tolua_set_Pointer_Primitive_ushort___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ushort___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int64_t___reference, tolua_set_Pointer_Primitive_int64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_short___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); @@ -230450,301 +234863,301 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int8___reference, tolua_set_Pointer_Primitive___int8___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int8___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int8>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_size_t___reference, tolua_set_Pointer_Primitive_size_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_size_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint___reference, tolua_set_Pointer_Primitive_uint___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_BOOL___reference, tolua_set_Pointer_Primitive_BOOL___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_BOOL___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int32_t___reference, tolua_set_Pointer_Primitive_int32_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int32_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int64___reference, tolua_set_Pointer_Primitive___int64___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int64___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int64>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_INT___reference, tolua_set_Pointer_Primitive_INT___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_INT___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_double___reference, tolua_set_Pointer_Primitive_double___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_double___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_DWORD___reference, tolua_set_Pointer_Primitive_DWORD___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_DWORD___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_float___reference, tolua_set_Pointer_Primitive_float___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_float___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long_double___reference, tolua_set_Pointer_Primitive_long_double___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long_double___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int___reference, tolua_set_Pointer_Primitive_int___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_bool___reference, tolua_set_Pointer_Primitive_bool___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_bool___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint8_t___reference, tolua_set_Pointer_Primitive_uint8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_intptr_t___reference, tolua_set_Pointer_Primitive_intptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_intptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int64___reference, tolua_set_Pointer_Primitive___int64___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int64___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int64>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_const_char____reference, tolua_set_Pointer_Primitive_const_char____reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_const_char____setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_HRESULT___reference, tolua_set_Pointer_Primitive_HRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_HRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int8_t___reference, tolua_set_Pointer_Primitive_int8_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int8_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_short___reference, tolua_set_Pointer_Primitive_short___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_short___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int64_t___reference, tolua_set_Pointer_Primitive_int64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_char___reference, tolua_set_Pointer_Primitive_char___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_char___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LRESULT___reference, tolua_set_Pointer_Primitive_LRESULT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LRESULT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ushort___reference, tolua_set_Pointer_Primitive_ushort___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ushort___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint64_t___reference, tolua_set_Pointer_Primitive_uint64_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint64_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_UINT___reference, tolua_set_Pointer_Primitive_UINT___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_UINT___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_long___reference, tolua_set_Pointer_Primitive_long___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_long___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uintptr_t___reference, tolua_set_Pointer_Primitive_uintptr_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uintptr_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_int16_t___reference, tolua_set_Pointer_Primitive_int16_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_int16_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int32___reference, tolua_set_Pointer_Primitive___int32___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int32___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive<__int32>"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint___reference, tolua_set_Pointer_Primitive_uint___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_byte___reference, tolua_set_Pointer_Primitive_byte___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_byte___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive___int16___reference, tolua_set_Pointer_Primitive___int16___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive___int16___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive<__int16>"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_lua_Integer___reference, tolua_set_Pointer_Primitive_lua_Integer___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_lua_Integer___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_LONG___reference, tolua_set_Pointer_Primitive_LONG___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_LONG___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_Primitive_uint16_t___reference, tolua_set_Pointer_Primitive_uint16_t___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_uint16_t___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "Primitive"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_Primitive_ptrdiff_t___reference, tolua_set_Pointer_Primitive_ptrdiff_t___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_Primitive_ptrdiff_t___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "Primitive"); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_SysWMinfo__info_t__win_t__reference, tolua_set_Pointer_SDL_SysWMinfo__info_t__win_t__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_SysWMinfo__info_t__win_t__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_SysWMinfo::info_t::win_t"); tolua_module(L, ".offsetof", 0); tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); @@ -231010,6 +235423,29 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_MessageBoxColor__reference, tolua_set_Pointer_SDL_MessageBoxColor__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_MessageBoxColor__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_MessageBoxColor"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_MessageBoxColor___reference, tolua_set_Pointer_SDL_MessageBoxColor___reference); + tolua_function(L, "getValue", &tolua_function_Pointer_SDL_MessageBoxColor___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_MessageBoxColor___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "Pointer"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_SDL_WindowShapeParams__reference, tolua_set_Pointer_SDL_WindowShapeParams__reference); @@ -231021,17 +235457,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer", "Pointer", {}, NULL); - tolua_beginmodule(L, "Pointer"); - tolua_variable(L, "reference", tolua_get_Pointer_SDL_WindowShapeMode__reference, tolua_set_Pointer_SDL_WindowShapeMode__reference); - tolua_function(L, "setValue", &tolua_function_Pointer_SDL_WindowShapeMode__setValue); - tolua_constant(L, "sizeof", sizeof(Pointer)); - tolua_constantstring(L, "usertype_reference", "SDL_WindowShapeMode"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_GCheader__reference, tolua_set_Pointer_GCheader__reference); @@ -231100,18 +235525,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", {}, NULL); - tolua_beginmodule(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - tolua_variable(L, "reference", tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference); - tolua_function(L, "getValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue); - tolua_function(L, "setValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); - tolua_constantstring(L, "usertype_reference", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference, tolua_set_Pointer_const__D98D369160A0DDA2B95F5D0F301081BB__reference); @@ -231133,6 +235546,18 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>", {}, NULL); + tolua_beginmodule(L, "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + tolua_variable(L, "reference", tolua_get_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference, tolua_set_Pointer__D98D369160A0DDA2B95F5D0F301081BB___reference); + tolua_function(L, "getValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___getValue); + tolua_function(L, "setValue", &tolua_function_Pointer__D98D369160A0DDA2B95F5D0F301081BB___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); + tolua_constantstring(L, "usertype_reference", "Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer<_D98D369160A0DDA2B95F5D0F301081BB*>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_const_char___reference, tolua_set_Pointer_const_char___reference); @@ -231491,6 +235916,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_SysWMinfo__info_t__reference, tolua_set_Pointer_SDL_SysWMinfo__info_t__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_SysWMinfo__info_t__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_SysWMinfo::info_t"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_SDL_SysWMEvent__reference, tolua_set_Pointer_SDL_SysWMEvent__reference); @@ -231502,6 +235938,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_ShapeDriver__reference, tolua_set_Pointer_SDL_ShapeDriver__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_ShapeDriver__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_ShapeDriver"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_SDL_QuitEvent__reference, tolua_set_Pointer_SDL_QuitEvent__reference); @@ -231656,17 +236103,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer", "Pointer", {}, NULL); - tolua_beginmodule(L, "Pointer"); - tolua_variable(L, "reference", tolua_get_Pointer_SDL_DisplayMode__reference, tolua_set_Pointer_SDL_DisplayMode__reference); - tolua_function(L, "setValue", &tolua_function_Pointer_SDL_DisplayMode__setValue); - tolua_constant(L, "sizeof", sizeof(Pointer)); - tolua_constantstring(L, "usertype_reference", "SDL_DisplayMode"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_SDL_ControllerDeviceEvent__reference, tolua_set_Pointer_SDL_ControllerDeviceEvent__reference); @@ -232469,6 +236905,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); + tolua_beginmodule(L, "Pointer>"); + tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); + tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_short___setValue); + tolua_constant(L, "sizeof", sizeof(Pointer>)); + tolua_constantstring(L, "usertype_reference", "VariableArray"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); tolua_beginmodule(L, "Pointer>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_ushort___reference, tolua_set_Pointer_VariableArray_ushort___reference); @@ -232502,17 +236949,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); tolua_endmodule(L); tolua_endmodule(L); - tolua_cclass(L, "Pointer>", "Pointer>", {}, NULL); - tolua_beginmodule(L, "Pointer>"); - tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_short___reference, tolua_set_Pointer_VariableArray_short___reference); - tolua_function(L, "setValue", &tolua_function_Pointer_VariableArray_short___setValue); - tolua_constant(L, "sizeof", sizeof(Pointer>)); - tolua_constantstring(L, "usertype_reference", "VariableArray"); - tolua_module(L, ".offsetof", 0); - tolua_beginmodule(L, ".offsetof"); - tolua_constant(L, "reference", offsetoftype(reference, Pointer>)); - tolua_endmodule(L); - tolua_endmodule(L); tolua_cclass(L, "Pointer*>", "Pointer*>", {}, NULL); tolua_beginmodule(L, "Pointer*>"); tolua_variable(L, "reference", tolua_get_Pointer_VariableArray_CRect____reference, tolua_set_Pointer_VariableArray_CRect____reference); @@ -236282,6 +240718,17 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "reference", offsetoftype(reference, Pointer<_GUID>)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "Pointer", "Pointer", {}, NULL); + tolua_beginmodule(L, "Pointer"); + tolua_variable(L, "reference", tolua_get_Pointer_SDL_VideoDevice__gl_config_t__reference, tolua_set_Pointer_SDL_VideoDevice__gl_config_t__reference); + tolua_function(L, "setValue", &tolua_function_Pointer_SDL_VideoDevice__gl_config_t__setValue); + tolua_constant(L, "sizeof", sizeof(Pointer)); + tolua_constantstring(L, "usertype_reference", "SDL_VideoDevice::gl_config_t"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "reference", offsetoftype(reference, Pointer)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "Pointer", "Pointer", {}, NULL); tolua_beginmodule(L, "Pointer"); tolua_variable(L, "reference", tolua_get_Pointer_LClosure__reference, tolua_set_Pointer_LClosure__reference); @@ -248979,6 +253426,14 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "size", 64); tolua_constant(L, "lastIndex", 63); tolua_endmodule(L); + tolua_cclass(L, "Array", "Array", {}, NULL); + tolua_beginmodule(L, "Array"); + tolua_function(L, "getReference", &tolua_function_Array_SDL_MessageBoxColor_5__getReference); + tolua_function(L, "set", &tolua_function_Array_SDL_MessageBoxColor_5__set); + tolua_constant(L, "sizeof", sizeof(Array)); + tolua_constant(L, "size", 5); + tolua_constant(L, "lastIndex", 4); + tolua_endmodule(L); tolua_cclass(L, "Array", "Array", {}, NULL); tolua_beginmodule(L, "Array"); tolua_function(L, "get", &tolua_function_Array_unsigned_int_84__get); @@ -249013,6 +253468,14 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "size", 32749); tolua_constant(L, "lastIndex", 32748); tolua_endmodule(L); + tolua_cclass(L, "Array", "Array", {}, NULL); + tolua_beginmodule(L, "Array"); + tolua_function(L, "get", &tolua_function_Array_char_256__get); + tolua_function(L, "set", &tolua_function_Array_char_256__set); + tolua_constant(L, "sizeof", sizeof(Array)); + tolua_constant(L, "size", 256); + tolua_constant(L, "lastIndex", 255); + tolua_endmodule(L); tolua_cclass(L, "Array", "Array", {}, NULL); tolua_beginmodule(L, "Array"); tolua_function(L, "getReference", &tolua_function_Array_texture_t_DX_512__getReference); @@ -249143,15 +253606,6 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "size", 129); tolua_constant(L, "lastIndex", 128); tolua_endmodule(L); - tolua_cclass(L, "Array", "Array", {}, NULL); - tolua_beginmodule(L, "Array"); - tolua_function(L, "get", &tolua_function_Array_char_256__get); - tolua_function(L, "getReference", &tolua_function_Array_char_256__getReference); - tolua_function(L, "set", &tolua_function_Array_char_256__set); - tolua_constant(L, "sizeof", sizeof(Array)); - tolua_constant(L, "size", 256); - tolua_constant(L, "lastIndex", 255); - tolua_endmodule(L); tolua_cclass(L, "uiItem", "uiItem", {}, NULL); tolua_beginmodule(L, "uiItem"); tolua_variable(L, "type", tolua_get_uiItem_type, tolua_set_uiItem_type); @@ -250450,6 +254904,310 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "Data4", offsetoftype(Data4, _GUID)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_VideoDevice", "SDL_VideoDevice", {}, NULL); + tolua_beginmodule(L, "SDL_VideoDevice"); + tolua_variable(L, "name", tolua_get_SDL_VideoDevice_name, NULL); + tolua_variable(L, "shape_driver", tolua_get_SDL_VideoDevice_shape_driver, NULL); + tolua_variable(L, "suspend_screensaver", tolua_get_SDL_VideoDevice_suspend_screensaver, tolua_set_SDL_VideoDevice_suspend_screensaver); + tolua_variable(L, "reference_suspend_screensaver", tolua_get_SDL_VideoDevice_reference_suspend_screensaver, NULL); + tolua_variable(L, "num_displays", tolua_get_SDL_VideoDevice_num_displays, tolua_set_SDL_VideoDevice_num_displays); + tolua_variable(L, "reference_num_displays", tolua_get_SDL_VideoDevice_reference_num_displays, NULL); + tolua_variable(L, "displays", tolua_get_SDL_VideoDevice_displays, tolua_set_SDL_VideoDevice_displays); + tolua_variable(L, "reference_displays", tolua_get_SDL_VideoDevice_reference_displays, NULL); + tolua_variable(L, "windows", tolua_get_SDL_VideoDevice_windows, tolua_set_SDL_VideoDevice_windows); + tolua_variable(L, "reference_windows", tolua_get_SDL_VideoDevice_reference_windows, NULL); + tolua_variable(L, "grabbed_window", tolua_get_SDL_VideoDevice_grabbed_window, tolua_set_SDL_VideoDevice_grabbed_window); + tolua_variable(L, "reference_grabbed_window", tolua_get_SDL_VideoDevice_reference_grabbed_window, NULL); + tolua_variable(L, "window_magic", tolua_get_SDL_VideoDevice_window_magic, tolua_set_SDL_VideoDevice_window_magic); + tolua_variable(L, "reference_window_magic", tolua_get_SDL_VideoDevice_reference_window_magic, NULL); + tolua_variable(L, "next_object_id", tolua_get_SDL_VideoDevice_next_object_id, tolua_set_SDL_VideoDevice_next_object_id); + tolua_variable(L, "reference_next_object_id", tolua_get_SDL_VideoDevice_reference_next_object_id, NULL); + tolua_variable(L, "clipboard_text", tolua_get_SDL_VideoDevice_clipboard_text, NULL); + tolua_variable(L, "gl_config", tolua_get_SDL_VideoDevice_gl_config, NULL); + tolua_variable(L, "current_glwin", tolua_get_SDL_VideoDevice_current_glwin, tolua_set_SDL_VideoDevice_current_glwin); + tolua_variable(L, "reference_current_glwin", tolua_get_SDL_VideoDevice_reference_current_glwin, NULL); + tolua_variable(L, "current_glctx", tolua_get_SDL_VideoDevice_current_glctx, tolua_set_SDL_VideoDevice_current_glctx); + tolua_variable(L, "reference_current_glctx", tolua_get_SDL_VideoDevice_reference_current_glctx, NULL); + tolua_variable(L, "current_glwin_tls", tolua_get_SDL_VideoDevice_current_glwin_tls, tolua_set_SDL_VideoDevice_current_glwin_tls); + tolua_variable(L, "reference_current_glwin_tls", tolua_get_SDL_VideoDevice_reference_current_glwin_tls, NULL); + tolua_variable(L, "current_glctx_tls", tolua_get_SDL_VideoDevice_current_glctx_tls, tolua_set_SDL_VideoDevice_current_glctx_tls); + tolua_variable(L, "reference_current_glctx_tls", tolua_get_SDL_VideoDevice_reference_current_glctx_tls, NULL); + tolua_variable(L, "driverdata", tolua_get_SDL_VideoDevice_driverdata, tolua_set_SDL_VideoDevice_driverdata); + tolua_variable(L, "reference_driverdata", tolua_get_SDL_VideoDevice_reference_driverdata, NULL); + tolua_variable(L, "gl_data", tolua_get_SDL_VideoDevice_gl_data, tolua_set_SDL_VideoDevice_gl_data); + tolua_variable(L, "reference_gl_data", tolua_get_SDL_VideoDevice_reference_gl_data, NULL); + tolua_variable(L, "egl_data", tolua_get_SDL_VideoDevice_egl_data, tolua_set_SDL_VideoDevice_egl_data); + tolua_variable(L, "reference_egl_data", tolua_get_SDL_VideoDevice_reference_egl_data, NULL); + tolua_variable(L, "gles_data", tolua_get_SDL_VideoDevice_gles_data, tolua_set_SDL_VideoDevice_gles_data); + tolua_variable(L, "reference_gles_data", tolua_get_SDL_VideoDevice_reference_gles_data, NULL); + tolua_function(L, "VideoInit", &tolua_function_SDL_VideoDevice_VideoInit); + tolua_function(L, "VideoQuit", &tolua_function_SDL_VideoDevice_VideoQuit); + tolua_function(L, "GetDisplayBounds", &tolua_function_SDL_VideoDevice_GetDisplayBounds); + tolua_function(L, "GetDisplayDPI", &tolua_function_SDL_VideoDevice_GetDisplayDPI); + tolua_function(L, "GetDisplayModes", &tolua_function_SDL_VideoDevice_GetDisplayModes); + tolua_function(L, "SetDisplayMode", &tolua_function_SDL_VideoDevice_SetDisplayMode); + tolua_function(L, "CreateWindowA", &tolua_function_SDL_VideoDevice_CreateWindowA); + tolua_function(L, "CreateWindowFrom", &tolua_function_SDL_VideoDevice_CreateWindowFrom); + tolua_function(L, "SetWindowTitle", &tolua_function_SDL_VideoDevice_SetWindowTitle); + tolua_function(L, "SetWindowIcon", &tolua_function_SDL_VideoDevice_SetWindowIcon); + tolua_function(L, "SetWindowPosition", &tolua_function_SDL_VideoDevice_SetWindowPosition); + tolua_function(L, "SetWindowSize", &tolua_function_SDL_VideoDevice_SetWindowSize); + tolua_function(L, "SetWindowMinimumSize", &tolua_function_SDL_VideoDevice_SetWindowMinimumSize); + tolua_function(L, "SetWindowMaximumSize", &tolua_function_SDL_VideoDevice_SetWindowMaximumSize); + tolua_function(L, "ShowWindow", &tolua_function_SDL_VideoDevice_ShowWindow); + tolua_function(L, "HideWindow", &tolua_function_SDL_VideoDevice_HideWindow); + tolua_function(L, "RaiseWindow", &tolua_function_SDL_VideoDevice_RaiseWindow); + tolua_function(L, "MaximizeWindow", &tolua_function_SDL_VideoDevice_MaximizeWindow); + tolua_function(L, "MinimizeWindow", &tolua_function_SDL_VideoDevice_MinimizeWindow); + tolua_function(L, "RestoreWindow", &tolua_function_SDL_VideoDevice_RestoreWindow); + tolua_function(L, "SetWindowBordered", &tolua_function_SDL_VideoDevice_SetWindowBordered); + tolua_function(L, "SetWindowFullscreen", &tolua_function_SDL_VideoDevice_SetWindowFullscreen); + tolua_function(L, "SetWindowGammaRamp", &tolua_function_SDL_VideoDevice_SetWindowGammaRamp); + tolua_function(L, "GetWindowGammaRamp", &tolua_function_SDL_VideoDevice_GetWindowGammaRamp); + tolua_function(L, "SetWindowGrab", &tolua_function_SDL_VideoDevice_SetWindowGrab); + tolua_function(L, "DestroyWindow", &tolua_function_SDL_VideoDevice_DestroyWindow); + tolua_function(L, "CreateWindowFramebuffer", &tolua_function_SDL_VideoDevice_CreateWindowFramebuffer); + tolua_function(L, "UpdateWindowFramebuffer", &tolua_function_SDL_VideoDevice_UpdateWindowFramebuffer); + tolua_function(L, "DestroyWindowFramebuffer", &tolua_function_SDL_VideoDevice_DestroyWindowFramebuffer); + tolua_function(L, "OnWindowEnter", &tolua_function_SDL_VideoDevice_OnWindowEnter); + tolua_function(L, "GetWindowWMInfo", &tolua_function_SDL_VideoDevice_GetWindowWMInfo); + tolua_function(L, "GL_LoadLibrary", &tolua_function_SDL_VideoDevice_GL_LoadLibrary); + tolua_function(L, "GL_GetProcAddress", &tolua_function_SDL_VideoDevice_GL_GetProcAddress); + tolua_function(L, "GL_UnloadLibrary", &tolua_function_SDL_VideoDevice_GL_UnloadLibrary); + tolua_function(L, "GL_CreateContext", &tolua_function_SDL_VideoDevice_GL_CreateContext); + tolua_function(L, "GL_MakeCurrent", &tolua_function_SDL_VideoDevice_GL_MakeCurrent); + tolua_function(L, "GL_GetDrawableSize", &tolua_function_SDL_VideoDevice_GL_GetDrawableSize); + tolua_function(L, "GL_SetSwapInterval", &tolua_function_SDL_VideoDevice_GL_SetSwapInterval); + tolua_function(L, "GL_GetSwapInterval", &tolua_function_SDL_VideoDevice_GL_GetSwapInterval); + tolua_function(L, "GL_SwapWindow", &tolua_function_SDL_VideoDevice_GL_SwapWindow); + tolua_function(L, "GL_DeleteContext", &tolua_function_SDL_VideoDevice_GL_DeleteContext); + tolua_function(L, "PumpEvents", &tolua_function_SDL_VideoDevice_PumpEvents); + tolua_function(L, "SuspendScreenSaver", &tolua_function_SDL_VideoDevice_SuspendScreenSaver); + tolua_function(L, "StartTextInput", &tolua_function_SDL_VideoDevice_StartTextInput); + tolua_function(L, "StopTextInput", &tolua_function_SDL_VideoDevice_StopTextInput); + tolua_function(L, "SetTextInputRect", &tolua_function_SDL_VideoDevice_SetTextInputRect); + tolua_function(L, "HasScreenKeyboardSupport", &tolua_function_SDL_VideoDevice_HasScreenKeyboardSupport); + tolua_function(L, "ShowScreenKeyboard", &tolua_function_SDL_VideoDevice_ShowScreenKeyboard); + tolua_function(L, "HideScreenKeyboard", &tolua_function_SDL_VideoDevice_HideScreenKeyboard); + tolua_function(L, "IsScreenKeyboardShown", &tolua_function_SDL_VideoDevice_IsScreenKeyboardShown); + tolua_function(L, "SetClipboardText", &tolua_function_SDL_VideoDevice_SetClipboardText); + tolua_function(L, "HasClipboardText", &tolua_function_SDL_VideoDevice_HasClipboardText); + tolua_function(L, "ShowMessageBox", &tolua_function_SDL_VideoDevice_ShowMessageBox); + tolua_function(L, "SetWindowHitTest", &tolua_function_SDL_VideoDevice_SetWindowHitTest); + tolua_function(L, "free", &tolua_function_SDL_VideoDevice_free); + tolua_constant(L, "sizeof", sizeof(SDL_VideoDevice)); + tolua_constantstring(L, "usertype_name", "ConstCharString"); + tolua_constantstring(L, "usertype_shape_driver", "SDL_ShapeDriver"); + tolua_constantstring(L, "usertype_suspend_screensaver", "Primitive"); + tolua_constantstring(L, "usertype_num_displays", "Primitive"); + tolua_constantstring(L, "usertype_displays", "SDL_VideoDisplay"); + tolua_constantstring(L, "usertype_windows", "SDL_Window"); + tolua_constantstring(L, "usertype_grabbed_window", "SDL_Window"); + tolua_constantstring(L, "usertype_window_magic", "Primitive<__int8>"); + tolua_constantstring(L, "usertype_next_object_id", "Primitive"); + tolua_constantstring(L, "usertype_clipboard_text", "CharString"); + tolua_constantstring(L, "usertype_gl_config", "SDL_VideoDevice::gl_config_t"); + tolua_constantstring(L, "usertype_current_glwin", "SDL_Window"); + tolua_constantstring(L, "usertype_current_glctx", "UnmappedUserType"); + tolua_constantstring(L, "usertype_current_glwin_tls", "Primitive"); + tolua_constantstring(L, "usertype_current_glctx_tls", "Primitive"); + tolua_constantstring(L, "usertype_driverdata", "UnmappedUserType"); + tolua_constantstring(L, "usertype_gl_data", "SDL_GLDriverData"); + tolua_constantstring(L, "usertype_egl_data", "SDL_EGL_VideoData"); + tolua_constantstring(L, "usertype_gles_data", "SDL_PrivateGLESData"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "name", offsetoftype(name, SDL_VideoDevice)); + tolua_constant(L, "VideoInit", offsetoftype(VideoInit, SDL_VideoDevice)); + tolua_constant(L, "VideoQuit", offsetoftype(VideoQuit, SDL_VideoDevice)); + tolua_constant(L, "GetDisplayBounds", offsetoftype(GetDisplayBounds, SDL_VideoDevice)); + tolua_constant(L, "GetDisplayDPI", offsetoftype(GetDisplayDPI, SDL_VideoDevice)); + tolua_constant(L, "GetDisplayModes", offsetoftype(GetDisplayModes, SDL_VideoDevice)); + tolua_constant(L, "SetDisplayMode", offsetoftype(SetDisplayMode, SDL_VideoDevice)); + tolua_constant(L, "CreateWindowA", offsetoftype(CreateWindowA, SDL_VideoDevice)); + tolua_constant(L, "CreateWindowFrom", offsetoftype(CreateWindowFrom, SDL_VideoDevice)); + tolua_constant(L, "SetWindowTitle", offsetoftype(SetWindowTitle, SDL_VideoDevice)); + tolua_constant(L, "SetWindowIcon", offsetoftype(SetWindowIcon, SDL_VideoDevice)); + tolua_constant(L, "SetWindowPosition", offsetoftype(SetWindowPosition, SDL_VideoDevice)); + tolua_constant(L, "SetWindowSize", offsetoftype(SetWindowSize, SDL_VideoDevice)); + tolua_constant(L, "SetWindowMinimumSize", offsetoftype(SetWindowMinimumSize, SDL_VideoDevice)); + tolua_constant(L, "SetWindowMaximumSize", offsetoftype(SetWindowMaximumSize, SDL_VideoDevice)); + tolua_constant(L, "ShowWindow", offsetoftype(ShowWindow, SDL_VideoDevice)); + tolua_constant(L, "HideWindow", offsetoftype(HideWindow, SDL_VideoDevice)); + tolua_constant(L, "RaiseWindow", offsetoftype(RaiseWindow, SDL_VideoDevice)); + tolua_constant(L, "MaximizeWindow", offsetoftype(MaximizeWindow, SDL_VideoDevice)); + tolua_constant(L, "MinimizeWindow", offsetoftype(MinimizeWindow, SDL_VideoDevice)); + tolua_constant(L, "RestoreWindow", offsetoftype(RestoreWindow, SDL_VideoDevice)); + tolua_constant(L, "SetWindowBordered", offsetoftype(SetWindowBordered, SDL_VideoDevice)); + tolua_constant(L, "SetWindowFullscreen", offsetoftype(SetWindowFullscreen, SDL_VideoDevice)); + tolua_constant(L, "SetWindowGammaRamp", offsetoftype(SetWindowGammaRamp, SDL_VideoDevice)); + tolua_constant(L, "GetWindowGammaRamp", offsetoftype(GetWindowGammaRamp, SDL_VideoDevice)); + tolua_constant(L, "SetWindowGrab", offsetoftype(SetWindowGrab, SDL_VideoDevice)); + tolua_constant(L, "DestroyWindow", offsetoftype(DestroyWindow, SDL_VideoDevice)); + tolua_constant(L, "CreateWindowFramebuffer", offsetoftype(CreateWindowFramebuffer, SDL_VideoDevice)); + tolua_constant(L, "UpdateWindowFramebuffer", offsetoftype(UpdateWindowFramebuffer, SDL_VideoDevice)); + tolua_constant(L, "DestroyWindowFramebuffer", offsetoftype(DestroyWindowFramebuffer, SDL_VideoDevice)); + tolua_constant(L, "OnWindowEnter", offsetoftype(OnWindowEnter, SDL_VideoDevice)); + tolua_constant(L, "shape_driver", offsetoftype(shape_driver, SDL_VideoDevice)); + tolua_constant(L, "GetWindowWMInfo", offsetoftype(GetWindowWMInfo, SDL_VideoDevice)); + tolua_constant(L, "GL_LoadLibrary", offsetoftype(GL_LoadLibrary, SDL_VideoDevice)); + tolua_constant(L, "GL_GetProcAddress", offsetoftype(GL_GetProcAddress, SDL_VideoDevice)); + tolua_constant(L, "GL_UnloadLibrary", offsetoftype(GL_UnloadLibrary, SDL_VideoDevice)); + tolua_constant(L, "GL_CreateContext", offsetoftype(GL_CreateContext, SDL_VideoDevice)); + tolua_constant(L, "GL_MakeCurrent", offsetoftype(GL_MakeCurrent, SDL_VideoDevice)); + tolua_constant(L, "GL_GetDrawableSize", offsetoftype(GL_GetDrawableSize, SDL_VideoDevice)); + tolua_constant(L, "GL_SetSwapInterval", offsetoftype(GL_SetSwapInterval, SDL_VideoDevice)); + tolua_constant(L, "GL_GetSwapInterval", offsetoftype(GL_GetSwapInterval, SDL_VideoDevice)); + tolua_constant(L, "GL_SwapWindow", offsetoftype(GL_SwapWindow, SDL_VideoDevice)); + tolua_constant(L, "GL_DeleteContext", offsetoftype(GL_DeleteContext, SDL_VideoDevice)); + tolua_constant(L, "PumpEvents", offsetoftype(PumpEvents, SDL_VideoDevice)); + tolua_constant(L, "SuspendScreenSaver", offsetoftype(SuspendScreenSaver, SDL_VideoDevice)); + tolua_constant(L, "StartTextInput", offsetoftype(StartTextInput, SDL_VideoDevice)); + tolua_constant(L, "StopTextInput", offsetoftype(StopTextInput, SDL_VideoDevice)); + tolua_constant(L, "SetTextInputRect", offsetoftype(SetTextInputRect, SDL_VideoDevice)); + tolua_constant(L, "HasScreenKeyboardSupport", offsetoftype(HasScreenKeyboardSupport, SDL_VideoDevice)); + tolua_constant(L, "ShowScreenKeyboard", offsetoftype(ShowScreenKeyboard, SDL_VideoDevice)); + tolua_constant(L, "HideScreenKeyboard", offsetoftype(HideScreenKeyboard, SDL_VideoDevice)); + tolua_constant(L, "IsScreenKeyboardShown", offsetoftype(IsScreenKeyboardShown, SDL_VideoDevice)); + tolua_constant(L, "SetClipboardText", offsetoftype(SetClipboardText, SDL_VideoDevice)); + tolua_constant(L, "GetClipboardText", offsetoftype(GetClipboardText, SDL_VideoDevice)); + tolua_constant(L, "HasClipboardText", offsetoftype(HasClipboardText, SDL_VideoDevice)); + tolua_constant(L, "ShowMessageBox", offsetoftype(ShowMessageBox, SDL_VideoDevice)); + tolua_constant(L, "SetWindowHitTest", offsetoftype(SetWindowHitTest, SDL_VideoDevice)); + tolua_constant(L, "suspend_screensaver", offsetoftype(suspend_screensaver, SDL_VideoDevice)); + tolua_constant(L, "num_displays", offsetoftype(num_displays, SDL_VideoDevice)); + tolua_constant(L, "displays", offsetoftype(displays, SDL_VideoDevice)); + tolua_constant(L, "windows", offsetoftype(windows, SDL_VideoDevice)); + tolua_constant(L, "grabbed_window", offsetoftype(grabbed_window, SDL_VideoDevice)); + tolua_constant(L, "window_magic", offsetoftype(window_magic, SDL_VideoDevice)); + tolua_constant(L, "next_object_id", offsetoftype(next_object_id, SDL_VideoDevice)); + tolua_constant(L, "clipboard_text", offsetoftype(clipboard_text, SDL_VideoDevice)); + tolua_constant(L, "gl_config", offsetoftype(gl_config, SDL_VideoDevice)); + tolua_constant(L, "current_glwin", offsetoftype(current_glwin, SDL_VideoDevice)); + tolua_constant(L, "current_glctx", offsetoftype(current_glctx, SDL_VideoDevice)); + tolua_constant(L, "current_glwin_tls", offsetoftype(current_glwin_tls, SDL_VideoDevice)); + tolua_constant(L, "current_glctx_tls", offsetoftype(current_glctx_tls, SDL_VideoDevice)); + tolua_constant(L, "driverdata", offsetoftype(driverdata, SDL_VideoDevice)); + tolua_constant(L, "gl_data", offsetoftype(gl_data, SDL_VideoDevice)); + tolua_constant(L, "egl_data", offsetoftype(egl_data, SDL_VideoDevice)); + tolua_constant(L, "gles_data", offsetoftype(gles_data, SDL_VideoDevice)); + tolua_constant(L, "free", offsetoftype(free, SDL_VideoDevice)); + tolua_endmodule(L); + tolua_endmodule(L); + tolua_cclass(L, "SDL_VideoDevice::gl_config_t", "SDL_VideoDevice::gl_config_t", {}, NULL); + tolua_beginmodule(L, "SDL_VideoDevice::gl_config_t"); + tolua_variable(L, "red_size", tolua_get_SDL_VideoDevice__gl_config_t_red_size, tolua_set_SDL_VideoDevice__gl_config_t_red_size); + tolua_variable(L, "reference_red_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_red_size, NULL); + tolua_variable(L, "green_size", tolua_get_SDL_VideoDevice__gl_config_t_green_size, tolua_set_SDL_VideoDevice__gl_config_t_green_size); + tolua_variable(L, "reference_green_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_green_size, NULL); + tolua_variable(L, "blue_size", tolua_get_SDL_VideoDevice__gl_config_t_blue_size, tolua_set_SDL_VideoDevice__gl_config_t_blue_size); + tolua_variable(L, "reference_blue_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_blue_size, NULL); + tolua_variable(L, "alpha_size", tolua_get_SDL_VideoDevice__gl_config_t_alpha_size, tolua_set_SDL_VideoDevice__gl_config_t_alpha_size); + tolua_variable(L, "reference_alpha_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_alpha_size, NULL); + tolua_variable(L, "depth_size", tolua_get_SDL_VideoDevice__gl_config_t_depth_size, tolua_set_SDL_VideoDevice__gl_config_t_depth_size); + tolua_variable(L, "reference_depth_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_depth_size, NULL); + tolua_variable(L, "buffer_size", tolua_get_SDL_VideoDevice__gl_config_t_buffer_size, tolua_set_SDL_VideoDevice__gl_config_t_buffer_size); + tolua_variable(L, "reference_buffer_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_buffer_size, NULL); + tolua_variable(L, "stencil_size", tolua_get_SDL_VideoDevice__gl_config_t_stencil_size, tolua_set_SDL_VideoDevice__gl_config_t_stencil_size); + tolua_variable(L, "reference_stencil_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_stencil_size, NULL); + tolua_variable(L, "double_buffer", tolua_get_SDL_VideoDevice__gl_config_t_double_buffer, tolua_set_SDL_VideoDevice__gl_config_t_double_buffer); + tolua_variable(L, "reference_double_buffer", tolua_get_SDL_VideoDevice__gl_config_t_reference_double_buffer, NULL); + tolua_variable(L, "accum_red_size", tolua_get_SDL_VideoDevice__gl_config_t_accum_red_size, tolua_set_SDL_VideoDevice__gl_config_t_accum_red_size); + tolua_variable(L, "reference_accum_red_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_red_size, NULL); + tolua_variable(L, "accum_green_size", tolua_get_SDL_VideoDevice__gl_config_t_accum_green_size, tolua_set_SDL_VideoDevice__gl_config_t_accum_green_size); + tolua_variable(L, "reference_accum_green_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_green_size, NULL); + tolua_variable(L, "accum_blue_size", tolua_get_SDL_VideoDevice__gl_config_t_accum_blue_size, tolua_set_SDL_VideoDevice__gl_config_t_accum_blue_size); + tolua_variable(L, "reference_accum_blue_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_blue_size, NULL); + tolua_variable(L, "accum_alpha_size", tolua_get_SDL_VideoDevice__gl_config_t_accum_alpha_size, tolua_set_SDL_VideoDevice__gl_config_t_accum_alpha_size); + tolua_variable(L, "reference_accum_alpha_size", tolua_get_SDL_VideoDevice__gl_config_t_reference_accum_alpha_size, NULL); + tolua_variable(L, "stereo", tolua_get_SDL_VideoDevice__gl_config_t_stereo, tolua_set_SDL_VideoDevice__gl_config_t_stereo); + tolua_variable(L, "reference_stereo", tolua_get_SDL_VideoDevice__gl_config_t_reference_stereo, NULL); + tolua_variable(L, "multisamplebuffers", tolua_get_SDL_VideoDevice__gl_config_t_multisamplebuffers, tolua_set_SDL_VideoDevice__gl_config_t_multisamplebuffers); + tolua_variable(L, "reference_multisamplebuffers", tolua_get_SDL_VideoDevice__gl_config_t_reference_multisamplebuffers, NULL); + tolua_variable(L, "multisamplesamples", tolua_get_SDL_VideoDevice__gl_config_t_multisamplesamples, tolua_set_SDL_VideoDevice__gl_config_t_multisamplesamples); + tolua_variable(L, "reference_multisamplesamples", tolua_get_SDL_VideoDevice__gl_config_t_reference_multisamplesamples, NULL); + tolua_variable(L, "accelerated", tolua_get_SDL_VideoDevice__gl_config_t_accelerated, tolua_set_SDL_VideoDevice__gl_config_t_accelerated); + tolua_variable(L, "reference_accelerated", tolua_get_SDL_VideoDevice__gl_config_t_reference_accelerated, NULL); + tolua_variable(L, "major_version", tolua_get_SDL_VideoDevice__gl_config_t_major_version, tolua_set_SDL_VideoDevice__gl_config_t_major_version); + tolua_variable(L, "reference_major_version", tolua_get_SDL_VideoDevice__gl_config_t_reference_major_version, NULL); + tolua_variable(L, "minor_version", tolua_get_SDL_VideoDevice__gl_config_t_minor_version, tolua_set_SDL_VideoDevice__gl_config_t_minor_version); + tolua_variable(L, "reference_minor_version", tolua_get_SDL_VideoDevice__gl_config_t_reference_minor_version, NULL); + tolua_variable(L, "flags", tolua_get_SDL_VideoDevice__gl_config_t_flags, tolua_set_SDL_VideoDevice__gl_config_t_flags); + tolua_variable(L, "reference_flags", tolua_get_SDL_VideoDevice__gl_config_t_reference_flags, NULL); + tolua_variable(L, "profile_mask", tolua_get_SDL_VideoDevice__gl_config_t_profile_mask, tolua_set_SDL_VideoDevice__gl_config_t_profile_mask); + tolua_variable(L, "reference_profile_mask", tolua_get_SDL_VideoDevice__gl_config_t_reference_profile_mask, NULL); + tolua_variable(L, "share_with_current_context", tolua_get_SDL_VideoDevice__gl_config_t_share_with_current_context, tolua_set_SDL_VideoDevice__gl_config_t_share_with_current_context); + tolua_variable(L, "reference_share_with_current_context", tolua_get_SDL_VideoDevice__gl_config_t_reference_share_with_current_context, NULL); + tolua_variable(L, "release_behavior", tolua_get_SDL_VideoDevice__gl_config_t_release_behavior, tolua_set_SDL_VideoDevice__gl_config_t_release_behavior); + tolua_variable(L, "reference_release_behavior", tolua_get_SDL_VideoDevice__gl_config_t_reference_release_behavior, NULL); + tolua_variable(L, "framebuffer_srgb_capable", tolua_get_SDL_VideoDevice__gl_config_t_framebuffer_srgb_capable, tolua_set_SDL_VideoDevice__gl_config_t_framebuffer_srgb_capable); + tolua_variable(L, "reference_framebuffer_srgb_capable", tolua_get_SDL_VideoDevice__gl_config_t_reference_framebuffer_srgb_capable, NULL); + tolua_variable(L, "retained_backing", tolua_get_SDL_VideoDevice__gl_config_t_retained_backing, tolua_set_SDL_VideoDevice__gl_config_t_retained_backing); + tolua_variable(L, "reference_retained_backing", tolua_get_SDL_VideoDevice__gl_config_t_reference_retained_backing, NULL); + tolua_variable(L, "driver_loaded", tolua_get_SDL_VideoDevice__gl_config_t_driver_loaded, tolua_set_SDL_VideoDevice__gl_config_t_driver_loaded); + tolua_variable(L, "reference_driver_loaded", tolua_get_SDL_VideoDevice__gl_config_t_reference_driver_loaded, NULL); + tolua_variable(L, "driver_path", tolua_get_SDL_VideoDevice__gl_config_t_driver_path, NULL); + tolua_variable(L, "dll_handle", tolua_get_SDL_VideoDevice__gl_config_t_dll_handle, tolua_set_SDL_VideoDevice__gl_config_t_dll_handle); + tolua_variable(L, "reference_dll_handle", tolua_get_SDL_VideoDevice__gl_config_t_reference_dll_handle, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_VideoDevice::gl_config_t)); + tolua_constantstring(L, "usertype_red_size", "Primitive"); + tolua_constantstring(L, "usertype_green_size", "Primitive"); + tolua_constantstring(L, "usertype_blue_size", "Primitive"); + tolua_constantstring(L, "usertype_alpha_size", "Primitive"); + tolua_constantstring(L, "usertype_depth_size", "Primitive"); + tolua_constantstring(L, "usertype_buffer_size", "Primitive"); + tolua_constantstring(L, "usertype_stencil_size", "Primitive"); + tolua_constantstring(L, "usertype_double_buffer", "Primitive"); + tolua_constantstring(L, "usertype_accum_red_size", "Primitive"); + tolua_constantstring(L, "usertype_accum_green_size", "Primitive"); + tolua_constantstring(L, "usertype_accum_blue_size", "Primitive"); + tolua_constantstring(L, "usertype_accum_alpha_size", "Primitive"); + tolua_constantstring(L, "usertype_stereo", "Primitive"); + tolua_constantstring(L, "usertype_multisamplebuffers", "Primitive"); + tolua_constantstring(L, "usertype_multisamplesamples", "Primitive"); + tolua_constantstring(L, "usertype_accelerated", "Primitive"); + tolua_constantstring(L, "usertype_major_version", "Primitive"); + tolua_constantstring(L, "usertype_minor_version", "Primitive"); + tolua_constantstring(L, "usertype_flags", "Primitive"); + tolua_constantstring(L, "usertype_profile_mask", "Primitive"); + tolua_constantstring(L, "usertype_share_with_current_context", "Primitive"); + tolua_constantstring(L, "usertype_release_behavior", "Primitive"); + tolua_constantstring(L, "usertype_framebuffer_srgb_capable", "Primitive"); + tolua_constantstring(L, "usertype_retained_backing", "Primitive"); + tolua_constantstring(L, "usertype_driver_loaded", "Primitive"); + tolua_constantstring(L, "usertype_driver_path", "Array"); + tolua_constantstring(L, "usertype_dll_handle", "UnmappedUserType"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "red_size", offsetoftype(red_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "green_size", offsetoftype(green_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "blue_size", offsetoftype(blue_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "alpha_size", offsetoftype(alpha_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "depth_size", offsetoftype(depth_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "buffer_size", offsetoftype(buffer_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "stencil_size", offsetoftype(stencil_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "double_buffer", offsetoftype(double_buffer, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "accum_red_size", offsetoftype(accum_red_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "accum_green_size", offsetoftype(accum_green_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "accum_blue_size", offsetoftype(accum_blue_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "accum_alpha_size", offsetoftype(accum_alpha_size, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "stereo", offsetoftype(stereo, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "multisamplebuffers", offsetoftype(multisamplebuffers, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "multisamplesamples", offsetoftype(multisamplesamples, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "accelerated", offsetoftype(accelerated, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "major_version", offsetoftype(major_version, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "minor_version", offsetoftype(minor_version, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "flags", offsetoftype(flags, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "profile_mask", offsetoftype(profile_mask, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "share_with_current_context", offsetoftype(share_with_current_context, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "release_behavior", offsetoftype(release_behavior, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "framebuffer_srgb_capable", offsetoftype(framebuffer_srgb_capable, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "retained_backing", offsetoftype(retained_backing, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "driver_loaded", offsetoftype(driver_loaded, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "driver_path", offsetoftype(driver_path, SDL_VideoDevice::gl_config_t)); + tolua_constant(L, "dll_handle", offsetoftype(dll_handle, SDL_VideoDevice::gl_config_t)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "SDL_PixelFormat", "SDL_PixelFormat", {}, NULL); tolua_beginmodule(L, "SDL_PixelFormat"); tolua_variable(L, "format", tolua_get_SDL_PixelFormat_format, tolua_set_SDL_PixelFormat_format); @@ -250532,6 +255290,16 @@ int OpenBindingsInternal(lua_State* L) tolua_constant(L, "next", offsetoftype(next, SDL_PixelFormat)); tolua_endmodule(L); tolua_endmodule(L); + tolua_cclass(L, "SDL_MessageBoxColorScheme", "SDL_MessageBoxColorScheme", {}, NULL); + tolua_beginmodule(L, "SDL_MessageBoxColorScheme"); + tolua_variable(L, "colors", tolua_get_SDL_MessageBoxColorScheme_colors, NULL); + tolua_constant(L, "sizeof", sizeof(SDL_MessageBoxColorScheme)); + tolua_constantstring(L, "usertype_colors", "Array"); + tolua_module(L, ".offsetof", 0); + tolua_beginmodule(L, ".offsetof"); + tolua_constant(L, "colors", offsetoftype(colors, SDL_MessageBoxColorScheme)); + tolua_endmodule(L); + tolua_endmodule(L); tolua_cclass(L, "LClosure", "LClosure", {}, NULL); tolua_beginmodule(L, "LClosure"); tolua_variable(L, "next", tolua_get_LClosure_next, tolua_set_LClosure_next); @@ -251043,6 +255811,7 @@ int OpenBindingsInternal(lua_State* L) tolua_function(L, "rand", tolua_function_rand); tolua_function(L, "restoreMenuStack", tolua_function_restoreMenuStack); tolua_function(L, "saveMenuStack", tolua_function_saveMenuStack); + tolua_function(L, "SDL_GetDisplayForWindow", tolua_function_SDL_GetDisplayForWindow); tolua_function(L, "SDL_GetKeyFromName", tolua_function_SDL_GetKeyFromName); tolua_function(L, "SDL_GetKeyName", tolua_function_SDL_GetKeyName); tolua_function(L, "SDL_GetWindowFlags", tolua_function_SDL_GetWindowFlags); @@ -251098,6 +255867,7 @@ int OpenBindingsInternal(lua_State* L) tolua_variable(L, "reference_rand", tolua_get_reference_rand, NULL); tolua_variable(L, "reference_restoreMenuStack", tolua_get_reference_restoreMenuStack, NULL); tolua_variable(L, "reference_saveMenuStack", tolua_get_reference_saveMenuStack, NULL); + tolua_variable(L, "reference_SDL_GetDisplayForWindow", tolua_get_reference_SDL_GetDisplayForWindow, NULL); tolua_variable(L, "reference_SDL_GetKeyFromName", tolua_get_reference_SDL_GetKeyFromName, NULL); tolua_variable(L, "reference_SDL_GetKeyName", tolua_get_reference_SDL_GetKeyName, NULL); tolua_variable(L, "reference_SDL_GetWindowFlags", tolua_get_reference_SDL_GetWindowFlags, NULL); diff --git a/LuaJITProvider/header/LuaJITProvider/lua_pointers.h b/LuaJITProvider/header/LuaJITProvider/lua_pointers.h index 008c76e..761d77f 100644 --- a/LuaJITProvider/header/LuaJITProvider/lua_pointers.h +++ b/LuaJITProvider/header/LuaJITProvider/lua_pointers.h @@ -19,6 +19,9 @@ extern type_lua_concat p_lua_concat; typedef void (*type_lua_createtable)(lua_State* L, int narr, int nrec); extern type_lua_createtable p_lua_createtable; +typedef int (*type_lua_gc)(lua_State* L, int what, int data); +extern type_lua_gc p_lua_gc; + typedef void (*type_lua_getfield)(lua_State* L, int idx, const char* k); extern type_lua_getfield p_lua_getfield; diff --git a/LuaJITProvider/source/LuaJITProvider/lua_pointers.cpp b/LuaJITProvider/source/LuaJITProvider/lua_pointers.cpp index f1f213b..89c7169 100644 --- a/LuaJITProvider/source/LuaJITProvider/lua_pointers.cpp +++ b/LuaJITProvider/source/LuaJITProvider/lua_pointers.cpp @@ -28,6 +28,7 @@ type_lua_atpanic p_lua_atpanic; type_lua_callk p_lua_callk; type_lua_concat p_lua_concat; type_lua_createtable p_lua_createtable; +type_lua_gc p_lua_gc; type_lua_getfield p_lua_getfield; type_lua_getglobal p_lua_getglobal; type_lua_getmetatable p_lua_getmetatable; @@ -173,6 +174,10 @@ EXPORT void lua_createtable(lua_State* L, int narr, int nrec) { p_lua_createtable(L, narr, nrec); } +EXPORT int lua_gc(lua_State* L, int what, int data) { + return p_lua_gc(L, what, data); +} + EXPORT void lua_getfield(lua_State* L, int idx, const char* k) { p_lua_getfield(L, idx, k); } diff --git a/LuaJITProvider/source/LuaJITProvider/lua_provider.cpp b/LuaJITProvider/source/LuaJITProvider/lua_provider.cpp index 91b1d1d..7a816fd 100644 --- a/LuaJITProvider/source/LuaJITProvider/lua_provider.cpp +++ b/LuaJITProvider/source/LuaJITProvider/lua_provider.cpp @@ -214,6 +214,7 @@ EXPORT DWORD InitLuaProvider(SharedState sharedDLL) { setLuaPointer(lua_callk) setLuaPointer(lua_concat) setLuaPointer(lua_createtable) + setLuaPointer(lua_gc) setLuaPointer(lua_getfield) setLuaPointer(lua_getglobal) setLuaPointer(lua_getmetatable) diff --git a/LuaProvider52/header/LuaProvider52/lua_pointers.h b/LuaProvider52/header/LuaProvider52/lua_pointers.h index 9130ba1..b61e905 100644 --- a/LuaProvider52/header/LuaProvider52/lua_pointers.h +++ b/LuaProvider52/header/LuaProvider52/lua_pointers.h @@ -19,6 +19,9 @@ extern type_lua_concat p_lua_concat; typedef void (*type_lua_createtable)(lua_State* L, int narr, int nrec); extern type_lua_createtable p_lua_createtable; +typedef int (*type_lua_gc)(lua_State* L, int what, int data); +extern type_lua_gc p_lua_gc; + typedef void (*type_lua_getfield)(lua_State* L, int idx, const char* k); extern type_lua_getfield p_lua_getfield; diff --git a/LuaProvider52/source/LuaProvider52/lua_pointers.cpp b/LuaProvider52/source/LuaProvider52/lua_pointers.cpp index f127380..ada94b2 100644 --- a/LuaProvider52/source/LuaProvider52/lua_pointers.cpp +++ b/LuaProvider52/source/LuaProvider52/lua_pointers.cpp @@ -29,6 +29,7 @@ type_lua_atpanic p_lua_atpanic; type_lua_callk p_lua_callk; type_lua_concat p_lua_concat; type_lua_createtable p_lua_createtable; +type_lua_gc p_lua_gc; type_lua_getfield p_lua_getfield; type_lua_getglobal p_lua_getglobal; type_lua_getmetatable p_lua_getmetatable; @@ -103,6 +104,10 @@ EXPORT void lua_createtable(lua_State* L, int narr, int nrec) { p_lua_createtable(L, narr, nrec); } +EXPORT int lua_gc(lua_State* L, int what, int data) { + return p_lua_gc(L, what, data); +} + EXPORT void lua_getfield(lua_State* L, int idx, const char* k) { p_lua_getfield(L, idx, k); } diff --git a/LuaProvider52/source/LuaProvider52/lua_provider.cpp b/LuaProvider52/source/LuaProvider52/lua_provider.cpp index 33adada..167869b 100644 --- a/LuaProvider52/source/LuaProvider52/lua_provider.cpp +++ b/LuaProvider52/source/LuaProvider52/lua_provider.cpp @@ -98,6 +98,7 @@ EXPORT DWORD InitLuaProvider(SharedState sharedDLL) { setLuaPointer(lua_callk) setLuaPointer(lua_concat) setLuaPointer(lua_createtable) + setLuaPointer(lua_gc) setLuaPointer(lua_getfield) setLuaPointer(lua_getglobal) setLuaPointer(lua_getmetatable) diff --git a/lib/Win32/minizip.lib b/lib/Win32/minizip.lib index a3269786649dcff96f5f02026d1667c3bd8958c9..6278fd7c2d50082f05bf31279efd2663a9946cc9 100644 GIT binary patch literal 1094422 zcmeFa2Ygh;`u~462_1q2l_DjO-9vW60BLkd4=n{LVu?3|5Fiqgn1pVLQU$?=ii!ml z6uam}j{y_B=+mqzi(nna%y65ejmS?(m%;xGNHMqX;)~P-sL~`FXGCc+W!~+ zMLk}xS^qW8J*@pF|24}zto=9swJeR+{>s1BBPMEp@GmW`I4ixlPvVHejQqS|g`?8b z2Bd5L%+$gWqef_Qd`BA@?A74{m2Zq6lic71i=hT!>nOdh6�X1 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%0AY>P?D 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

vRX=p5)CI>Ws}=K#mh8Ril?L)}7Wh-c^w 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

x?LmB&SiY^l54 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ⅅ`Cli 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

KdCYh)ZI_+k%uc1)%kY+u} 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 z

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%0Dt~*I$;|z&9j9`NryIx}w+ffCH4OQq4 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 D4?|G_ literal 1094096 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�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

sR0<>#fC`m}QK3m?QigWqg12!?-`(^ON5 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

%2bJ=OK$siE>zKPO%` za*Ei`g^fhd|;^ zVz8&HL4I6~Qm#gLySmLY=B<8Wj#V+oKyFXdx(j8=Z}$v3+B0aVa2z!G&uZf_>vdL} zqFhhTab$HZKNd{#;c2R?r)fSsJ*qs-gxZVb!_c_Dcpien{lyb1oCQsOlCv@EMe-Tt z`l%d8xg?+T;c33Brv*MdEmxjifZB`XQfS;s{tpTtZ^+LpS-!JXsBi@|`GK#*tQYW? zRdVa0wj0j{{*v8_%uFZsp0fF1wU0zx6%P6jD zPgTR;-YP0=!0m~lQ0V+r!GO}9_%mH0`_pTOg+k}03VQYFUox=U0EfTgbqoK#(z&UE zL8R$5d|;1U|2Olu`cEvvTlhsVP=vsjrVU&s+oH?UZ8K%4Nvfc9NT1$)20B@4jLBZT zhL#MYKVw!@u7duLseM$+%lJbyE+2v0l>g&O*D94cy>iPUxoa_cs%q$fS#*LFX% z2J&i=&g<%QUaiylT$66ERe4?E$6a%u?pmb^hL!a1-*xzvr2~6A8fyz<1^6Ryp->yF z*)>z7bL-}o>0U17bynF0=XG^bPU3ce=ef-S$nl{m~Y(n@;)n zTSvG3)`(4BkE#snHh8$hhNSY+M}aPK6-v`qt+EiUP}o(*@7k+$PzknJwur(YzrpGJ zMyCCbO1J+_x1-bT?df(5TA5#I{`>~IDZcPUhZ5#JUJfUF zJDi^1;Y{W5A+JCWdIx$W9VqM1ZdJl&oTmcK@d`BCJJ4e?5YC?=+xZiL79tS6OFWyZ z#3$?LQl}IY6&4jOO;x7xq8HNbvUIyVbt=sluHaVz?WXyNpZDbb3?}8t+hMak?UmY7 z-l;9ZOJitBNx!bzgY6W6?@ukxgPGr?)~54cpU!_nI{!`Sd^e}tSJLgP>HJ?)`LA}% z-&FZKym_ti%73MI{_DK+f6*=ft!ksa?&W5Sx0`Lwp@w0jy`uuX?G@-P??CV75A*>7 z$#=n>czYY!zfX7dPS~|)iNm>VW9A)hxBALm{=RaP{K^vwj^hidf`a4QSE+L5r<*@q z)8WUf#(j4|`w!;B{CN1u@KfPu!VANT!b`%>hhGRU3$F;9;kDrx!!L!`hhGkF4!;t9 zHM}MKdU$JiTX=hTNBEuad*KhlyThM^_k=$Ue-{1%cD{j~@54WYe+vH`{x$p??EN18 zGkh?7D112lSNQMnKjE^-*vPoZ_{bfR36Y7BJ0o{R?v6}~Ope?WnSwO#jocTR5qTi; zVC135!$|7U$gIfh$ehUB$h^p7k;fxXM4pU16?r=HOk{p!L1bZMQDkxC*~oK||3#KY zmPM9FRz_Au%*g7<+Q_=dOOf@F4Uv~48zY+{uS8ypydK#ac{B1>WJlzTf`1pBRz_E; zCtcj5bikn6eR@uqTrPCvNI^kS!Nt8wx(%zHN=+{cm8C~+DeYf-Ku^pS6v&a$=miHYle>Cv19RXQE1F?n*bfwV7JkKQUA$vV^ekdL^OAE)Q&J}@1Sw9B=VR2I z+#kTtZm4H$W@KzQStd|n^3ecK7=N>9;AKX}Ws_e9rB3b%RF%MHP)upA(&Xmgw@y-V z3=Dh>Y+{9i3=CNU3=DRu5PmU~Zv*9*Lixf_emRtHk~;a{B%jUyLOyXVN)VX*VZO*_ zmV!6@iy8!`Z{%at-7Gu7n~C+W2?ImWNso3|h?$4ARRO7=GaV_`cD^aF#!M#p8GQy2vpYqkn9?&gLC%=XLNj6WG+yy=&D z853cg?bdvZGZ{I4F|djO^)pO%3{u%9z{uht;n%>N#RwE>b=$xqv@6elt<>?))en1L zZI=mP{GrddWxHqtW3(ZWPTW3iBjY4ixEn8VOgq3Rz{Fy^UFZPgE;5}t?E)hU9#>vq P{K3y?vt9H7<7<5YlpeE& delta 584 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 delta 25921 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 diff --git a/lib/Win32/zlibstatic.pdb b/lib/Win32/zlibstatic.pdb index 1736200992ac00037180ab87042ac92b28f56249..f9c14037adcd88ecb065e5f2fc228200932e4f48 100644 GIT binary patch delta 3392 zcmeHKeN0C5F2)$MWC_N^k8H-d#D6r-(3!z-$-F=z)r5KXx4h*3 zbMJZg{Lb%u-P3Rt^M(^@T>^{oVRwH#Y>?_PUby+ z;->EBZ?)2z*#bPFTKpUD%46q+Z0Xs`*P8ri3+R*wYm&iDg1rIs#cUe_4RY(&ZE_$U z?d<80cgK|jz0XD3W4&@x61df#fyusG?a&=M*dvjkTP`MwV z;0l6|nf=mN2!UM$)Di*qsszq&A)x#&0L*jBzV9{Zqi>ArxmN#J|176b>iPj6uV~Le zoxPFI1z!#v;-yu6W^kAn!J45kCjxb3sE+s6D?_{#Xm!H|ZoArEKE#PYBd;9InS9eU z_L^>7ht|!rUl6#~M4(6kn0b%D=sJY`$5?!%0nS(icsD=*jw6VD1jbGQ+#d$`SQa4i z8$eY#j(1=g`Q^g+FgBEw>;RbDAi%*(2*FZ-eQdRi;`n#?q44X2K#w5aFc!}sxc&n0 zOrZK|GIj?sTFV=wKji{UX#l4_1?th^4)dc1fWdXlj;!E~8Lef8gp7@W*ij2;_h zdh70m^mIDIk=WANn}~FYp%)U-&bYk5;}V$BWeC*`kehY8*k{i<1)awkMk7M&7QMdfJT&78=icv3~yXz}(<41FUA1k1hrBYF4fE w#LlXJ@@iIP%^r(cRrbPQdX5k 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

yb6`3SYmzVIhH}E3}EL5Hulav-Kk4%Yz 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 literal 1113582 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�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%0D3KHu)N7{_( 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 G*ZKf;`(qrsjs`lk)==ChraKgz-1? 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 S&rbKzbe)@>lC{lvuK0KUDB~~y delta 3173 zcmeHKUu;uV82`R|x`FFhOSP*FZFbwW^mcOVx@oh`$U3$n^I_Dsk!=*~WCR*Q7?w~dm|JEM_!zd)=WsH&Hzpt~ddeDp|iXhaMq zlEcxM7>tc16Vce%5os(qzCj7DZtqb}3GU)PP6>`)kGSZKeYLc9+Ln2dr_IwpDzHv> zq*|1~&ZRuojt6u9H8r6q)^n$hEAhJX^q>N-^o!FTCDyEIB~+#Hbd4eo7tc&6@GAA4 z%~hxT{U@_3NmaO~$$X@xpFX3O)RRAOBp2oAoi_%^!35IaRC|4#C$ORixN->KtQjC9 zx7h`nnHqfZ-X{P}F9Sp(99-Sb0dpfPehWYi1ol!6YTN|kKM{c9&X&KMa<7uy$7a>J zg5d2upCi!PPhcTQV27E&$0C7(8Np~l7`!RZJq$3Q=71mP;J0~%^LIEnaD~9oJivS% z(1Tes_kBA(p6xI!{?0+Bfk5hg0znhNu-v9j5c*B_66q8OJ#lG;ppMYDa-;u&V5?Gs zzwAV~CIP&9h@+2Re$F|wfxs~%2eWqpOp5>)J|vLb1kiZ_|0TvAby|zUx)`OMA&bGw z*>O?G>v(jdVU>KwUa+9CI`WF=2^gbS0|quNk2!Z6d#@4g?79UF{-tUxXGL*8FZQmU z8pGow(U(NGtJURR6IXJnD!OE0E57F7#hyraAQb7_-4_h?bjy9D$LA0Dy1PO?SYE2B zcuzOtK=t8xZ1iw~U9+KB3Gyj6XTyfd!1xgS31?ax?kY~B9k;Nr9azKScHB<2K^0o> z8;}>RI#{lxzC<`Wwtpl!e1OI5*u_Te_$({fF;ojbFE8D$faqMHg{?SIy=4t8N*pys zj^W<2$#8Ns?Lbc@P*Ei_yUpGa(Drx5BQk~+wxZ^*q1#IVa1|j~mmNjM3)oS?xY!K` z?qYKS8cV?Y5=_{!oi#ggH?s+7rjvnf#lZFEHUA-d-HFbPEi&6jt(d804IP^S*3aSkIb1)7tKF*E|8)*cr(AAa?M09`d9nB;V0u56-vshC Nsr)9$`}{c5@CO1%rNICI diff --git a/scripts/generate_bindings/generate_bindings.py b/scripts/generate_bindings/generate_bindings.py index 564beb4..f058ace 100644 --- a/scripts/generate_bindings/generate_bindings.py +++ b/scripts/generate_bindings/generate_bindings.py @@ -4389,7 +4389,7 @@ def checkPrimitiveHandling(paramType: TypeReference, luaVarIndex: int): elif functionImplementation.isDestructor: out.write(f"self->~{groupOpenData.appliedHeaderName}(") elif isNormal and group.groupType != "namespace" and not functionImplementation.isStatic: - out.write(f"self->{functionNameHeader}(") + out.write(f"(self->{functionNameHeader})(") else: classStr = f"{groupOpenData.appliedHeaderName}::" if isNormal else "" funcNameStr: str = f"(*p_{functionNameHeader})" if functionImplementation.isFunctionPointer else functionNameHeader