| 2106 | } |
| 2107 | |
| 2108 | void* get_java_hook_original_entry(int hook_index) { |
| 2109 | if (hook_index < 0 || hook_index >= g_java_hook_count) { |
| 2110 | return NULL; |
| 2111 | } |
| 2112 | return g_java_hooks[hook_index].original_entry_point; |
| 2113 | } |
nothing calls this directly
no outgoing calls
no test coverage detected