PVOID GetSystemProcAddress()

in Silhouette/Utils.cpp [162:169]


PVOID GetSystemProcAddress( PCWCHAR pFunctionName)
{
    UNICODE_STRING routineName;

    RtlInitUnicodeString(&routineName, pFunctionName);

    return MmGetSystemRoutineAddress(&routineName);
}