// wdm.h
PVOID MmGetSystemRoutineAddress(
[in] PUNICODE_STRING SystemRoutineName
);
View the official Windows Driver Kit DDI reference
No description available.
The MmGetSystemRoutineAddress routine returns a pointer to a function specified by SystemRoutineName.
SystemRoutineName
[in]Specifies the name of the system routine to resolve.
If the function name can be resolved, the routine returns a pointer to the function. Otherwise, the routine returns NULL.
Drivers can use this routine to determine if a routine is available on a specific version of Windows. It can only be used for routines exported by the kernel or HAL, not for any driver-defined routine.