From b0ac45b801d53c2e285330bf448e324549e44dce Mon Sep 17 00:00:00 2001 From: ACh Sulfate Date: Thu, 12 Oct 2023 22:36:05 +0800 Subject: [PATCH] chore: rename vxsign.h back to v2sign.h --- app/src/main/cpp/misc/{vxsign.h => v2sign.h} | 6 +++--- app/src/main/cpp/qauxv_core/Natives.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename app/src/main/cpp/misc/{vxsign.h => v2sign.h} (72%) diff --git a/app/src/main/cpp/misc/vxsign.h b/app/src/main/cpp/misc/v2sign.h similarity index 72% rename from app/src/main/cpp/misc/vxsign.h rename to app/src/main/cpp/misc/v2sign.h index 472b8f7cd0..9574cc5b6d 100644 --- a/app/src/main/cpp/misc/vxsign.h +++ b/app/src/main/cpp/misc/v2sign.h @@ -2,8 +2,8 @@ // Created by sulfate on 2023-10-12. // -#ifndef QAUXV_VXSIGN_H -#define QAUXV_VXSIGN_H +#ifndef QAUXV_V2SIGN_H +#define QAUXV_V2SIGN_H #include #include @@ -15,4 +15,4 @@ bool checkSignature(JNIEnv* env, bool isInHostAsModule); } -#endif //QAUXV_VXSIGN_H +#endif //QAUXV_V2SIGN_H diff --git a/app/src/main/cpp/qauxv_core/Natives.cpp b/app/src/main/cpp/qauxv_core/Natives.cpp index d6b75f6eaa..625cd9d689 100644 --- a/app/src/main/cpp/qauxv_core/Natives.cpp +++ b/app/src/main/cpp/qauxv_core/Natives.cpp @@ -16,7 +16,7 @@ #include "Natives.h" #include "utils/shared_memory.h" -#include "misc/vxsign.h" +#include "misc/v2sign.h" static bool throwIfNull(JNIEnv *env, jobject obj, const char *msg) { if (obj == nullptr) {