"Andreas" == Andreas Mohr andi@rhlx01.fht-esslingen.de writes:
Andreas> Hmm, isn't the boolean end result the same with or without fix Andreas> ? I thought it is, but maybe I'm mistaken ??
- if (!dwFlags & 4) + if (!(dwFlags & 4))
The first line tells: if ((dwFlagss == 0 & 4) the second if bit 2 of dwFlags is not set
Bye