Need to make sure my registry calls work on a 64bit registry. Run it and it will show 3 message boxes with one of them showing your total file extensions. Copy and paste all 3 into a reply here and tell my your os
The first is just plain ole RegEnumKeyEx on HKEY_CLASSES_ROOT
Then second is RegOpenKeyEx on HKEY_CLASSES_ROOT with KEY_ENUMERATE_SUB_KEYS or'd with KEY_WOW64_32KEY then RegEnumKeyEx with the handle from open key
Then second is RegOpenKeyEx on HKEY_CLASSES_ROOT with KEY_ENUMERATE_SUB_KEYS or'd with KEY_WOW64_64KEY then RegEnumKeyEx with the handle from open key
Thanks
windows 7 home premium 64bit:
result 1: total extentions normal call - 546
result 2: total extentions KEY_WOW64_32KEY - 546
result 3: total extentions KEY_WOW64_64KEY - 546
im interested in seeing your code I have a problem reading 64bit registry in my program and im trying to figure it out
http://www.masm32.com/board/index.php?topic=13194.0
Code posted to that topic :U