client_Wu Xijin
2018-11-10 76f6fe465c191ceaded343a64fc96dc176f382b1
4340 【前端】支持xlua方便IOS提审
24个文件已添加
370 ■■■■■ 已修改文件
Android/release/libs/armeabi-v7a/libxlua.so 补丁 | 查看 | 原始文档 | blame | 历史
Android/release/libs/x86/libxlua.so 补丁 | 查看 | 原始文档 | blame | 历史
Android/test/libs/armeabi-v7a/libxlua.so 补丁 | 查看 | 原始文档 | blame | 历史
Android/test/libs/x86/libxlua.so 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/1030013326/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/1030013326/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/424064855/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/424064855/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/508021130/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/508021130/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/815035927/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/815035927/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/828115704/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/828115704/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/jisugameios/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/jisugameios/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/jisusnyjjios/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/jisusnyjjios/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/jsgameios/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/jsgameios/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/mrgameios/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/mrgameios/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/spyxxzios/xlua/HotfixFlags.cpp 37 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ChannelDiff/iOS/spyxxzios/xlua/libxlua.a 补丁 | 查看 | 原始文档 | blame | 历史
Android/release/libs/armeabi-v7a/libxlua.so
Binary files differ
Android/release/libs/x86/libxlua.so
Binary files differ
Android/test/libs/armeabi-v7a/libxlua.so
Binary files differ
Android/test/libs/x86/libxlua.so
Binary files differ
ChannelDiff/iOS/1030013326/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/1030013326/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/424064855/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/424064855/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/508021130/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/508021130/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/815035927/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/815035927/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/828115704/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/828115704/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/jisugameios/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/jisugameios/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/jisusnyjjios/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/jisusnyjjios/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/jsgameios/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/jsgameios/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/mrgameios/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/mrgameios/xlua/libxlua.a
Binary files differ
ChannelDiff/iOS/spyxxzios/xlua/HotfixFlags.cpp
New file
@@ -0,0 +1,37 @@
#include <stddef.h>
#include <stdlib.h>
int* xlua_hotfix_flags = NULL;
int xlua_hotfix_flags_len = 0;
extern "C" {
int xlua_get_hotfix_flag(int idx) {
    if (idx >= xlua_hotfix_flags_len) {
        return 0;
    } else {
        return xlua_hotfix_flags[idx];
    }
}
void xlua_set_hotfix_flag(int idx, int flag) {
    int i = 0;
        int* new_hotfix_flags = NULL;
    if (idx >= xlua_hotfix_flags_len) {
        if (xlua_hotfix_flags == NULL) {
            xlua_hotfix_flags = (int*)malloc((idx + 1) * sizeof(int));
        } else {
            new_hotfix_flags = (int*)realloc(xlua_hotfix_flags, (idx + 1) * sizeof(int));
                        if (NULL == new_hotfix_flags) { // just skip operation
                            return;
                        }
                        xlua_hotfix_flags = new_hotfix_flags;
        }
        for(i = xlua_hotfix_flags_len; i < (idx + 1); i++) {
            xlua_hotfix_flags[i] = 0;
        }
                xlua_hotfix_flags_len = idx + 1;
    }
    xlua_hotfix_flags[idx] = flag;
}
}
ChannelDiff/iOS/spyxxzios/xlua/libxlua.a
Binary files differ