static int _m_HideWindowImmediately(RealStatePtr L) { try { ObjectTranslator translator = ObjectTranslatorPool.Instance.Find(L); FairyGUI.GRoot gen_to_be_invoked = (FairyGUI.GRoot)translator.FastGetCSObj(L, 1); int gen_param_count = LuaAPI.lua_gettop(L); if (gen_param_count == 2 && translator.Assignable <FairyGUI.Window>(L, 2)) { FairyGUI.Window _win = (FairyGUI.Window)translator.GetObject(L, 2, typeof(FairyGUI.Window)); gen_to_be_invoked.HideWindowImmediately( _win); return(0); } if (gen_param_count == 3 && translator.Assignable <FairyGUI.Window>(L, 2) && LuaTypes.LUA_TBOOLEAN == LuaAPI.lua_type(L, 3)) { FairyGUI.Window _win = (FairyGUI.Window)translator.GetObject(L, 2, typeof(FairyGUI.Window)); bool _dispose = LuaAPI.lua_toboolean(L, 3); gen_to_be_invoked.HideWindowImmediately( _win, _dispose); return(0); } } catch (System.Exception gen_e) { return(LuaAPI.luaL_error(L, "c# exception:" + gen_e)); } return(LuaAPI.luaL_error(L, "invalid arguments to FairyGUI.GRoot.HideWindowImmediately!")); }
static StackObject *HideWindowImmediately_7(ILIntepreter __intp, StackObject *__esp, IList <object> __mStack, CLRMethod __method, bool isNewObj) { ILRuntime.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject *ptr_of_this_method; StackObject *__ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); FairyGUI.Window @win = (FairyGUI.Window) typeof(FairyGUI.Window).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack)); __intp.Free(ptr_of_this_method); ptr_of_this_method = ILIntepreter.Minus(__esp, 2); FairyGUI.GRoot instance_of_this_method = (FairyGUI.GRoot) typeof(FairyGUI.GRoot).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack)); __intp.Free(ptr_of_this_method); instance_of_this_method.HideWindowImmediately(@win); return(__ret); }