> > /* 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
"Martin Fuchs" <[EMAIL PROTECTED]> 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 s