Code example for initializing device properties
During the IWiaMiniDrv::drvInitItemProperties call for the Root item, the minidriver must initialize the following WIA properties that describe the device:
The following code example shows how to initialize WIA_DPS_SERVICE_ID by using the OpenPropertyStore and ReadDeviceProperty methods to read PKEY_PNPX_ServiceId. The same general method can be used to initialize each of the device properties.
HRESULT hr = S_OK;
IPropertyStore *pPropertyStore = NULL;
BSTR bstrPropertyValue = NULL;
//
// Open the current Property Store and keep it opened until all needed properties are read
//
if (SUCCEEDED(hr))
{
hr = OpenPropertyStore(&pPropertyStore);
if (FAILED(hr))
{
WIAS_ERROR((g_hInst, "Failed to open the Property Store for the current Function Instance, hr = 0x%08X", hr));
}
}
//
// Initialize WIA_DPS_SERVICE_ID
//
if (SUCCEEDED(hr))
{
hr = ReadDeviceProperty(pPropertyStore, &PKEY_PNPX_ServiceId, &bstrPropertyValue);
if (FAILED(hr))
{
WIAS_ERROR((g_hInst, "Failed to read the PKEY_PNPX_ServiceId device property, hr = 0x%08X", hr));
}
if ((SUCCEEDED(hr)) && (bstrPropertyValue))
{
WIAS_TRACE((g_hInst, "Service id: %ws", (LPWSTR)bstrPropertyValue));
hr = AddProperty(WIA_DPS_SERVICE_ID, WIA_DPS_SERVICE_ID_STR, RN, bstrPropertyValue);
if (FAILED(hr))
{
WIAS_ERROR((g_hInst, "Failed to add WIA_DPS_SERVICE_ID property to the property manager, hr = 0x%08X", hr));
}
}
if (bstrPropertyValue)
{
SysFreeString(bstrPropertyValue);
bstrPropertyValue = NULL;
}
}
//
// Repeat the same procedure for WIA_DPS_DEVICE_ID, WIA_DPS_GLOBAL_IDENTITY, and WIA_DPS_FIRMWARE_VERSION
//
//
// Close the Property Store
//
if (pPropertyStore)
{
pPropertyStore->Release();
pPropertyStore = NULL;
}