interception_win.cc | 844 // NTDLL should go last as it exports some functions that we should 892 RVAPtr<IMAGE_EXPORT_DIRECTORY> exports(module, local in function:__interception::InternalGetProcAddress 894 RVAPtr<DWORD> functions(module, exports->AddressOfFunctions); 895 RVAPtr<DWORD> names(module, exports->AddressOfNames); 896 RVAPtr<WORD> ordinals(module, exports->AddressOfNameOrdinals); 898 for (DWORD i = 0; i < exports->NumberOfNames; i++) {
|