代码拉取完成,页面将自动刷新
/**
* These declarations are needed for both app_process and the libraries.
*/
#ifndef XPOSED_SHARED_H_
#define XPOSED_SHARED_H_
#include <sys/stat.h>
#include "cutils/log.h"
#include "jni.h"
#ifndef ALOG
#define ALOG LOG
#define ALOGD LOGD
#define ALOGD LOGD
#define ALOGE LOGE
#define ALOGI LOGI
#define ALOGV LOGV
#endif
#if PLATFORM_SDK_VERSION >= 24
#define XPOSED_DIR "/data/user_de/0/com.android.widgets.installer/"
#else
#define XPOSED_DIR "/data/data/com.android.widgets.installer/"
#endif
namespace xposed {
struct XposedShared {
// Global variables
bool zygote;
bool startSystemServer;
const char* startClassName;
uint32_t xposedVersionInt;
bool isSELinuxEnabled;
bool isSELinuxEnforcing;
uid_t installer_uid;
gid_t installer_gid;
// Provided by runtime-specific library, used by executable
void (*onVmCreated)(JNIEnv* env);
#if XPOSED_WITH_SELINUX
// Provided by the executable, used by runtime-specific library
int (*zygoteservice_accessFile)(const char* path, int mode);
int (*zygoteservice_statFile)(const char* path, struct stat* st);
char* (*zygoteservice_readFile)(const char* path, int* bytesRead);
#endif
};
extern XposedShared* xposed;
} // namespace xposed
#endif // XPOSED_SHARED_H_
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。