Text only
|
Text with Images
The MASM Forum Archive 2004 to 2012
Project Support Forums => MASM32 => WINDOWS.INC Project => Topic started by: Tedd on August 21, 2011, 02:03:42 PM
Title:
CLR_INVALID correction
Post by:
Tedd
on
August 21, 2011, 02:03:42 PM
Code
Select
Expand
CLR_INVALID equ 0FFFFh
Should be:
Code
Select
Expand
CLR_NONE equ 0FFFFFFFFh
CLR_INVALID equ CLR_NONE
Title:
Re: CLR_INVALID correction
Post by:
dedndave
on
August 21, 2011, 02:17:17 PM
if it had been defined as -1, we wouldn't be changing anything :P
i am sure the 0FFFFh is the 16-bit representation
Text only
|
Text with Images