Le 17/05/13 13:33,
johnco...@gmail.com a �crit :
DWORD is an <unsigned> int.
R will be converted to unsigned, i.e. to 0xffffffff, that is 4294967295.
Since 4294967295 is bigger than zero, the result is what you get.
Please remember
Comparisons between signed/unsigned types are risky.