I was looking at some libraries with dumpbin and I noticed that all the 64-bit versions were linked to KERNEL32. Is there no KERNEL64 on 64-bit Windows? If not, why?

All my operating systems are 32-bit so I can't just look. A google search brings up nothing worthwhile so I suspect that there is no KERNEL64 but I'm still curious as to why this is.

EDIT: I found this later which is pretty useful. MSDN guide to x64

link|improve this question

This is a far fetch but it could be related to that the Windows API is still the same. The kernel is still definitely 64-bit. – Cecil Has a Name Sep 1 '09 at 21:35
feedback

1 Answer

up vote 3 down vote accepted

It's always called kernel32.dll, even on 64-bit windows. This is for the same compatibility reasons that system32 contains 64-bit binaries, while syswow64 contains 32-bit binaries.

link|improve this answer
What compatibility reasons? – Martin Nov 10 '10 at 11:44
@Martin Here's a great answer: stackoverflow.com/questions/949959/… – Ben Straub Nov 17 '10 at 19:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.