[Windows 驱动开发] 驱动中获取函数地址

跟ring3 GetProcAddress相似.

PVOID MmGetSystemRoutineAddress(
  PUNICODE_STRING SystemRoutineName
);

驱动程序可以使用这个例程来确定一个例程在特定版本的Windows上是否可用。它只能用于内核或HAL导出的例程,不能用于任何驱动程序定义的例程。

原文地址:https://www.cnblogs.com/csnd/p/15613336.html