mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 17:48:16 +00:00
Renamed UC_HOOK_MEM_INVALID_[READ/WRITE/FETCH] to
UC_HOOK_MEM_[READ/WRITE/FETCH]_INVALID as per aquynh's feedback.
This commit is contained in:
parent
cb2b97f26c
commit
2ef59e5727
1 changed files with 3 additions and 3 deletions
|
@ -167,9 +167,9 @@ typedef enum uc_hook_type {
|
|||
UC_HOOK_INSN, // Hook a particular instruction
|
||||
UC_HOOK_CODE, // Hook a range of code
|
||||
UC_HOOK_BLOCK, // Hook basic blocks
|
||||
UC_HOOK_MEM_INVALID_READ, // Hook for invalid memory read events
|
||||
UC_HOOK_MEM_INVALID_WRITE, // Hook for invalid memory write events
|
||||
UC_HOOK_MEM_INVALID_FETCH, // Hook for invalid memory fetch for execution events
|
||||
UC_HOOK_MEM_READ_INVALID, // Hook for invalid memory read events
|
||||
UC_HOOK_MEM_WRITE_INVALID, // Hook for invalid memory write events
|
||||
UC_HOOK_MEM_FETCH_INVALID, // Hook for invalid memory fetch for execution events
|
||||
UC_HOOK_MEM_READ, // Hook all memory read events.
|
||||
UC_HOOK_MEM_WRITE, // Hook all memory write events.
|
||||
UC_HOOK_MEM_FETCH, // Hook all memory fetch for execution events
|
||||
|
|
Loading…
Reference in a new issue