Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
SandHook
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
SandHook
Commits
fbbba627
Commit
fbbba627
authored
Mar 21, 2019
by
swift_gan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Xposed]can load lib extern
parent
9fd0e9c9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
sandhook.cpp
hooklib/src/main/cpp/sandhook.cpp
+18
-0
No files found.
hooklib/src/main/cpp/sandhook.cpp
View file @
fbbba627
...
...
@@ -449,4 +449,22 @@ JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *reserved) {
LOGW
(
"JNI Loaded"
);
return
JNI_VERSION_1_6
;
}
JNIEXPORT
bool
JNI_Load_Ex
(
JNIEnv
*
env
,
jclass
classSandHook
,
jclass
classNeverCall
)
{
int
jniMethodSize
=
sizeof
(
JNINativeMethod
);
if
(
env
==
nullptr
||
classSandHook
==
nullptr
||
classNeverCall
==
nullptr
)
return
false
;
if
(
env
->
RegisterNatives
(
classSandHook
,
jniSandHook
,
sizeof
(
jniSandHook
)
/
jniMethodSize
)
<
0
)
{
return
false
;
}
if
(
env
->
RegisterNatives
(
classNeverCall
,
jniNeverCall
,
sizeof
(
jniNeverCall
)
/
jniMethodSize
)
<
0
)
{
return
false
;
}
LOGW
(
"JNI Loaded"
);
return
true
;
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment