BOLTStack.LuaBaseView.GetLuaRuntime C# (CSharp) Method

GetLuaRuntime() protected method

protected GetLuaRuntime ( ) : IntPtr
return System.IntPtr
        protected IntPtr GetLuaRuntime()
        {
            //var pNull = new IntPtr(0);
            var hEnviroment = XLLuaRuntime.XLLRT_GetEnv(null);
            var hRuntime = XLLuaRuntime.XLLRT_GetRuntime(hEnviroment, null);
            return hRuntime;
        }