27 Mar
2004
27 Mar
'04
1:07 a.m.
"Martin Fuchs" <martin-fuchs(a)gmx.net> writes:
/* process the IDList */ - if ((sei_tmp.fMask & SEE_MASK_INVOKEIDLIST) == SEE_MASK_INVOKEIDLIST) /*0x0c*/ + if (sei_tmp.fMask & SEE_MASK_INVOKEIDLIST) /* 0x0c: includes SEE_MASK_IDLIST */
If you only care about the MASK_IDLIST flag you should check just that flag, otherwise the test is confusing since the 0x08 flag doesn't mean anything by itself. -- Alexandre Julliard julliard(a)winehq.org