Re: Signed Hex Values
- Posted by petelomax Sep 23, 2013
- 1569 views
Ah, nevermind. I was doing
push eax fild dword[esp] add esp,4then checking for error using hResult<0 but not having any of the right values to compare against. If instead I
push dword 0 push eax fild qword[esp] add esp,8and check for error using and_bits(hResult,#80000000) then (eg) #800704C7 is fine.
Pete