To enable support for TWAIN capability pass-through, add the WiaItemTypeTwainCapabilityPassThrough flag to the WIA_IPA_ITEM_FLAGS property on the root item. This flag is defined in wiatwcmp.h.
The following example is taken from the wiascanr sample (included in this DDK) and demonstrates the use of the WiaItemTypeTwainCapabilityPassThrough flag.
// Initialize WIA_IPA_ITEM_FLAGS
m_pszRootItemDefaults[PropIndex] = WIA_IPA_ITEM_FLAGS_STR;
m_piRootItemDefaults[PropIndex] = WIA_IPA_ITEM_FLAGS;
// Next assignment adds the WiaItemTypeTwainCapabilityPassThrough flag.
m_pvRootItemDefaults[PropIndex].lVal =
WiaItemTypeRoot|WiaItemTypeFolder |
WiaItemTypeDevice| WiaItemTypeTwainCapabilityPassThrough;
m_pvRootItemDefaults[PropIndex].vt = VT_I4;
m_psRootItemDefaults[PropIndex].ulKind = PRSPEC_PROPID;
m_psRootItemDefaults[PropIndex].propid =
m_piRootItemDefaults[PropIndex];
m_wpiRootItemDefaults[PropIndex].lAccessFlags =
WIA_PROP_READ | WIA_PROP_FLAG;
m_wpiRootItemDefaults[PropIndex].vt =
m_pvRootItemDefaults [PropIndex].vt;
m_wpiRootItemDefaults[PropIndex].ValidVal.Flag.Nom =
m_pvRootItemDefaults [PropIndex].lVal;
m_wpiRootItemDefaults[PropIndex].ValidVal.Flag.ValidBits =
WiaItemTypeRoot | WiaItemTypeFolder|WiaItemTypeDevice;