Re: shell32 patch 26

2004-03-27 Thread Martin Fuchs
> > /* 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

Re: shell32 patch 26

2004-03-26 Thread Alexandre Julliard
"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