Home
last modified time | relevance | path

Searched refs:dll_func (Results 1 – 1 of 1) sorted by relevance

/reactos/modules/rostests/winetests/kernel32/
H A Dloader.c1434 BYTE *dll_func, *map_func; in test_FakeDLL() local
1440 dll_func = (BYTE *)GetProcAddress(module, func_name); in test_FakeDLL()
1441 ok(dll_func != NULL, "%s: GetProcAddress returned NULL\n", func_name); in test_FakeDLL()
1443 if (dll_func[0] == 0x90 && dll_func[1] == 0x90 && in test_FakeDLL()
1444 dll_func[2] == 0x90 && dll_func[3] == 0x90) in test_FakeDLL()
1446 if (dll_func[0] == 0x48 && dll_func[1] == 0x83 && in test_FakeDLL()
1447 dll_func[2] == 0xec && dll_func[3] == 0x08) in test_FakeDLL()
1455 dll_rva = (DWORD_PTR)dll_func - (DWORD_PTR)module; in test_FakeDLL()
1468 ok(!memcmp(map_func, dll_func, 0x20), "%s: Function content does not match!\n", func_name); in test_FakeDLL()