Skip to content

Commit b0310cd

Browse files
committed
Make documentation more accurate.
1 parent 97fbedd commit b0310cd

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# android-inline-hook
1+
# shadowhook
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
44
![](https://img.shields.io/badge/release-1.0.3-red.svg?style=flat)
@@ -7,9 +7,7 @@
77

88
[README 中文版](README.zh-CN.md)
99

10-
**shadowhook** is an inline hook library for Android apps.
11-
12-
> shadowhook is a module of "the android-inline-hook project".
10+
**shadowhook** is an Android inline hook library which supports thumb, arm32 and arm64.
1311

1412

1513
## Features
@@ -21,7 +19,7 @@
2119
* Automatically complete the hook of "newly loaded dynamic library" (only "library name + function name"), and call the optional callback function after the hook is completed.
2220
* Multiple hooks and unhooks can be executed concurrently on the same hook point without interfering with each other (only in shared mode).
2321
* Automatically avoid possible recursive calls and circular calls between proxy functions (only in shared mode).
24-
* The proxy function supports unwinding backtrace in a normal way.
22+
* The proxy function supports unwinding backtrace in a normal way (CFI, EH, FP).
2523
* Integrated symbol address search function.
2624
* MIT licensed.
2725

README.zh-CN.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# android-inline-hook
1+
# shadowhook
22

33
![](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)
44
![](https://img.shields.io/badge/release-1.0.3-red.svg?style=flat)
@@ -7,9 +7,7 @@
77

88
[README English Version](README.md)
99

10-
**shadowhook** 是一个针对 Android app 的 inline hook 库。
11-
12-
> shadowhook 是 “android-inline-hook 项目” 的一个模块。
10+
**shadowhook** 是一个 Android inline hook 库,它支持 thumb、arm32 和 arm64。
1311

1412

1513
## 特征
@@ -21,7 +19,7 @@
2119
* 自动完成“新加载动态库”的 hook(仅限“库名 + 函数名”方式),hook 完成后调用可选的回调函数。
2220
* 可对同一个 hook 点并发执行多个 hook 和 unhook,彼此互不干扰(仅限 shared 模式)。
2321
* 自动避免代理函数之间可能形成的递归调用和环形调用(仅限 shared 模式)。
24-
* 代理函数中支持以正常的方式回溯调用栈
22+
* 代理函数中支持以正常的方式(CFI,EH,FP)回溯调用栈
2523
* 集成符号地址查找功能。
2624
* 使用 MIT 许可证授权。
2725

doc/manual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Introduction
77

8-
shadowhook is an inline hook library for Android apps.
8+
**shadowhook** is an Android inline hook library which supports thumb, arm32 and arm64.
99

1010

1111
# Features
@@ -17,7 +17,7 @@ shadowhook is an inline hook library for Android apps.
1717
* Automatically complete the hook of "newly loaded dynamic library" (only "library name + function name"), and call the optional callback function after the hook is completed.
1818
* Multiple hooks and unhooks can be executed concurrently on the same hook point without interfering with each other (only in shared mode).
1919
* Automatically avoid possible recursive calls and circular calls between proxy functions (only in shared mode).
20-
* The proxy function supports unwinding backtrace in a normal way.
20+
* The proxy function supports unwinding backtrace in a normal way (CFI, EH, FP).
2121
* Integrated symbol address search function.
2222
* MIT licensed.
2323

doc/manual.zh-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# 介绍
77

8-
shadowhook 是一个针对 Android app 的 inline hook 库。
8+
**shadowhook** 是一个 Android inline hook 库,它支持 thumb、arm32 和 arm64
99

1010

1111
# 特征
@@ -17,7 +17,7 @@ shadowhook 是一个针对 Android app 的 inline hook 库。
1717
* 自动完成“新加载动态库”的 hook(仅限“库名 + 函数名”方式),hook 完成后调用可选的回调函数。
1818
* 可对同一个 hook 点并发执行多个 hook 和 unhook,彼此互不干扰(仅限 shared 模式)。
1919
* 自动避免代理函数之间可能形成的递归调用和环形调用(仅限 shared 模式)。
20-
* 代理函数中支持以正常的方式回溯调用栈
20+
* 代理函数中支持以正常的方式(CFI,EH,FP)回溯调用栈
2121
* 集成符号地址查找功能。
2222
* 使用 MIT 许可证授权。
2323

0 commit comments

Comments
 (0)