Arch
| 127 | |
| 128 | // Arch |
| 129 | static bool Is64BitProcess() |
| 130 | { |
| 131 | #ifdef _WIN64 |
| 132 | return true; |
| 133 | #else |
| 134 | return false; |
| 135 | #endif |
| 136 | } |
| 137 | |
| 138 | // Custom |
| 139 | static bool IsAddressRegisteredAsHook(void* Address) |
no outgoing calls
no test coverage detected