The MASM Forum

Projects => MASM32 => WINDOWS.INC Project => Topic started by: Don57 on February 01, 2013, 02:28:55 AM

Title: windows.inc KEY_WOW64_32KEY def'n error
Post by: Don57 on February 01, 2013, 02:28:55 AM
KEY_WOW64_32KEY                  equ (0200)   resolves as 00C8h
KEY_WOW64_64KEY                  equ (0100)   resolves as 0064h

should read

KEY_WOW64_32KEY                  equ (0200h)
KEY_WOW64_64KEY                  equ (0100h)


wasn't really sure where to post this.
Title: Re: windows.inc KEY_WOW64_32KEY def'n error
Post by: dedndave on February 01, 2013, 05:26:47 AM
you put it in the right place, Don
nice find   :t