Пример #1
0
    static int BindSpeechResult(IntPtr L)
    {
        try
        {
            ToLua.CheckArgsCount(L, 2);
            NativeManager obj = (NativeManager)ToLua.CheckObject(L, 1, typeof(NativeManager));
            System.Action <string, byte[], int> arg0 = null;
            LuaTypes funcType2 = LuaDLL.lua_type(L, 2);

            if (funcType2 != LuaTypes.LUA_TFUNCTION)
            {
                arg0 = (System.Action <string, byte[], int>)ToLua.CheckObject(L, 2, typeof(System.Action <string, byte[], int>));
            }
            else
            {
                LuaFunction func = ToLua.ToLuaFunction(L, 2);
                arg0 = DelegateFactory.CreateDelegate(typeof(System.Action <string, byte[], int>), func) as System.Action <string, byte[], int>;
            }

            obj.BindSpeechResult(arg0);
            return(0);
        }
        catch (Exception e)
        {
            return(LuaDLL.toluaL_exception(L, e));
        }
    }