The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => Miscellaneous Projects => Topic started by: Gunner on January 23, 2010, 07:24:45 PM

Title: Using a 64bit OS?
Post by: Gunner on January 23, 2010, 07:24:45 PM
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
Title: Re: Using a 64bit OS?
Post by: ChillyWilly on January 23, 2010, 09:02:43 PM
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
Title: Re: Using a 64bit OS?
Post by: Gunner on January 23, 2010, 09:41:28 PM
Code posted to that topic  :U