You've already forked Zygisk-Assistant
mirror of
https://github.com/snake-4/Zygisk-Assistant.git
synced 2025-09-06 06:37:02 +00:00
21 lines
714 B
C++
21 lines
714 B
C++
#pragma once
|
|
#include <string>
|
|
#include <errno.h>
|
|
#include "logging.hpp"
|
|
#include "zygisk.hpp"
|
|
|
|
#define DCL_HOOK_FUNC(ret, func, ...) \
|
|
ret (*old_##func)(__VA_ARGS__) = nullptr; \
|
|
ret new_##func(__VA_ARGS__)
|
|
|
|
#define ASSERT_LOG(tag, expr) if(!(expr)) { \
|
|
LOGE("%s:%d Assertion %s failed. %d:%s", tag, __LINE__, #expr, errno, std::strerror(errno)); }
|
|
|
|
#define ASSERT_EXIT(tag, expr, ret) if(!(expr)) { \
|
|
LOGE("%s:%d Assertion %s failed. %d:%s", tag, __LINE__, #expr, errno, std::strerror(errno)); \
|
|
ret; }
|
|
|
|
bool switchMountNS(int pid);
|
|
int isUserAppUID(int uid);
|
|
bool hookPLTByName(zygisk::Api *api, const std::string &libName, const std::string &symbolName, void *hookFunc, void **origFunc);
|