This commit is contained in:
lenheart
2025-02-20 18:25:03 +08:00
parent 85375acd80
commit 21f64fbd9e
103 changed files with 6531 additions and 5980 deletions

View File

@@ -90,7 +90,7 @@ static SQInteger L_HookFunc(HSQUIRRELVM v)
EXAMPLE_LISTENER(listener)->CallBackOnLeave = CallBackOnLeave;
gum_interceptor_begin_transaction(interceptor);
gum_interceptor_attach_listener(interceptor, GSIZE_TO_POINTER(FuncAddress), listener, GSIZE_TO_POINTER(FuncAddress));
gum_interceptor_attach(interceptor, GSIZE_TO_POINTER(FuncAddress), listener, GSIZE_TO_POINTER(FuncAddress));
gum_interceptor_end_transaction(interceptor);
sq_pushuserpointer(v, listener);
@@ -104,7 +104,7 @@ static SQInteger L_DeHookFunc(HSQUIRRELVM v)
sq_getuserpointer(v, 2, &FuncAddress);
GumInvocationListener *listener = (GumInvocationListener *)FuncAddress;
gum_interceptor_detach_listener(interceptor, listener);
gum_interceptor_detach(interceptor, listener);
return 0;
}