-
Notifications
You must be signed in to change notification settings - Fork 978
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
68 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
unidbg-api/src/main/java/com/github/unidbg/hook/hookzz/HookZzArm32RegisterContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package com.github.unidbg.hook.hookzz; | ||
|
||
import com.github.unidbg.arm.context.Arm32RegisterContext; | ||
import com.github.unidbg.arm.context.EditableArm32RegisterContext; | ||
import com.github.unidbg.hook.InvocationContext; | ||
|
||
public interface HookZzArm32RegisterContext extends Arm32RegisterContext, InvocationContext { | ||
public interface HookZzArm32RegisterContext extends EditableArm32RegisterContext, InvocationContext { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
unidbg-api/src/main/java/com/github/unidbg/hook/hookzz/HookZzArm64RegisterContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
package com.github.unidbg.hook.hookzz; | ||
|
||
import com.github.unidbg.arm.context.Arm64RegisterContext; | ||
import com.github.unidbg.arm.context.EditableArm64RegisterContext; | ||
import com.github.unidbg.hook.InvocationContext; | ||
|
||
public interface HookZzArm64RegisterContext extends Arm64RegisterContext, InvocationContext { | ||
public interface HookZzArm64RegisterContext extends EditableArm64RegisterContext, InvocationContext { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters