19 Nov
2014
19 Nov
'14
3:46 p.m.
Looks good, just one small note below. On Wed, Nov 19, 2014 at 02:35:14PM +0000, Mark Harmstone wrote:
+ if (!drvs.pGetPropValue) + { + TRACE("Driver does not implement GetPropValue\n"); + return E_NOTIMPL; + } +
This makes the drivers without GetPropValue pretty noisy during loading. I don't think anything needs to be printed, since we'll see the TRACEs from the driver if the function is present. Andrew