oledb32: Implement CanConvert.

Huw Davies huw at codeweavers.com
Mon Sep 21 08:46:25 CDT 2009


On Mon, Sep 21, 2009 at 03:36:21PM +0200, Marcus Meissner wrote:
> On Mon, Sep 21, 2009 at 01:50:51PM +0100, Huw Davies wrote:
> > +    if(src_type & DBTYPE_VECTOR || dst_type & DBTYPE_VECTOR) return S_FALSE;
> 
> I think this needs brackets...

Why?  It's equivalent to:
  if((src_type & DBTYPE_VECTOR) || (dst_type & DBTYPE_VECTOR)) return S_FALSE;

which is what I want.

Huw.



More information about the wine-devel mailing list