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:
Sean Heelan 2015-09-23 12:48:13 +07:00
parent cb2b97f26c
commit 2ef59e5727
1 changed files with 3 additions and 3 deletions

View File

@ -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