INNER CODE UNIT · C++
n
Perfare/Zygisk-Il2CppDumper · module/src/main/cpp/il2cpp_dump.cpp:30
n = (r (*) p)xdl_sym(handle, #n, nullptr); \
if(!n) { \
LOGW("api not found %s", #n); \
} \
}
#include "il2cpp-api-functions.h"
#undef DO_API
}
std::string get_method_modifier(uint32_t flags) {
std::stringstream outPut;
auto access = flags & METHOD_ATTRIBUTE_MEMBER_ACCESS_MASK;
switch (access) {
case METHOD_ATTRIBUTE_PRIVATE:
outPut << "private ";
break;