111
This commit is contained in:
parent
1a95f22c8a
commit
7bf5fb933d
Binary file not shown.
|
|
@ -65,3 +65,5 @@
|
|||
4617 5726 1726992200011900909 src/CMakeFiles/hook_aurora.dir/asmjit/x86/x86instapi.cpp.o 9e18ed1cc5f06e96
|
||||
5726 5986 1726992200270899635 src/CMakeFiles/hook_aurora.dir/Tool.cpp.o fce4799b52de917
|
||||
3151 3475 1726992197760911984 src/CMakeFiles/hook_aurora.dir/asmjit/core/string.cpp.o 6405a7c465fc575f
|
||||
2 9386 1727087721582554199 src/CMakeFiles/hook_aurora.dir/l_squirrel.cpp.o 5529abc50828be39
|
||||
9386 10142 1727087722332550344 /dp_s/lib/libAurora.so a50e52f798c4dd0a
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
|
|
@ -90,7 +90,7 @@ static SQInteger L_HookFunc(HSQUIRRELVM v)
|
|||
EXAMPLE_LISTENER(listener)->CallBackOnLeave = CallBackOnLeave;
|
||||
|
||||
gum_interceptor_begin_transaction(interceptor);
|
||||
gum_interceptor_attach(interceptor, GSIZE_TO_POINTER(FuncAddress), listener, GSIZE_TO_POINTER(FuncAddress));
|
||||
gum_interceptor_attach_listener(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(interceptor, listener);
|
||||
gum_interceptor_detach_listener(interceptor, listener);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
|||
3088
include/frida-gum.h
3088
include/frida-gum.h
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue