| 48 | } |
| 49 | |
| 50 | PVOID get_system_routine_address(PCWSTR routine_name) |
| 51 | { |
| 52 | UNICODE_STRING name; |
| 53 | RtlInitUnicodeString(&name, routine_name); |
| 54 | return MmGetSystemRoutineAddress(&name); |
| 55 | } |
| 56 | |
| 57 | PVOID get_system_module_export(LPCWSTR module_name, LPCSTR routine_name) |
| 58 | { |
no outgoing calls
no test coverage detected