デバイスでサポートされているコンテンツ タイプの取得
「 デバイスでサポートされる機能カテゴリの取得 」トピックで説明されているように、Windows ポータブル デバイスでは、1 つ以上の機能カテゴリがサポートされる場合があります。 特定の機能カテゴリは、1 つ以上のコンテンツ タイプをサポートできます。 たとえば、ストレージ カテゴリは、フォルダー、オーディオ、画像のコンテンツ タイプをサポートする場合があります。
WPD でサポートされるコンテンツ タイプの説明については、 WPD_CONTENT_TYPE_ALL トピックを参照してください。
DeviceCapabilities.cpp モジュールの ListSupportedContentTypes 関数は、選択したデバイスでサポートされている機能カテゴリのコンテンツ タイプの取得を示しています。
アプリケーションは、次の表で説明するインターフェイスを使用して、デバイスでサポートされている機能カテゴリを取得できます。
インターフェイス | 説明 |
---|---|
IPortableDeviceCapabilities インターフェイス | 機能カテゴリ取得メソッドへのアクセスを提供します。 |
IPortableDevicePropVariantCollection インターフェイス | 機能カテゴリ データを列挙して格納するために使用されます。 |
ListSupportedContentTypes 関数のコードは、ListFunctionalCategories 関数のコードとほぼ同じです。 (「 デバイスでサポートされる機能カテゴリの取得 」トピックを参照してください)。1 つの違いは、機能カテゴリを反復処理するループ内に表示 される IPortableDeviceCapabilities::GetSupportedContentTypes メソッドの呼び出しです。
HRESULT hr = S_OK;
CComPtr<IPortableDeviceCapabilities> pCapabilities;
CComPtr<IPortableDevicePropVariantCollection> pCategories;
DWORD dwNumCategories = 0;
if (pDevice == NULL)
{
printf("! A NULL IPortableDevice interface pointer was received\n");
return;
}
// Get an IPortableDeviceCapabilities interface from the IPortableDevice interface to
// access the device capabilities-specific methods.
hr = pDevice->Capabilities(&pCapabilities);
if (FAILED(hr))
{
printf("! Failed to get IPortableDeviceCapabilities from IPortableDevice, hr = 0x%lx\n",hr);
}
// Get all functional categories supported by the device.
// We will use these categories to enumerate functional objects
// that fall within them.
if (SUCCEEDED(hr))
{
hr = pCapabilities->GetFunctionalCategories(&pCategories);
if (FAILED(hr))
{
printf("! Failed to get functional categories from the device, hr = 0x%lx\n",hr);
}
}
// Get the number of functional categories found on the device.
if (SUCCEEDED(hr))
{
hr = pCategories->GetCount(&dwNumCategories);
if (FAILED(hr))
{
printf("! Failed to get number of functional categories, hr = 0x%lx\n",hr);
}
}
printf("\n%d Functional Categories Found on the device\n\n", dwNumCategories);
// Loop through each functional category and display its name and supported content types.
if (SUCCEEDED(hr))
{
for (DWORD dwIndex = 0; dwIndex < dwNumCategories; dwIndex++)
{
PROPVARIANT pv = {0};
PropVariantInit(&pv);
hr = pCategories->GetAt(dwIndex, &pv);
if (SUCCEEDED(hr))
{
// We have a functional category. It is assumed that
// functional categories are returned as VT_CLSID
// VarTypes.
if ((pv.puuid != NULL) &&
(pv.vt == VT_CLSID))
{
// Display the functional category name
printf("Functional Category: ");
DisplayFunctionalCategory(*pv.puuid);
printf("\n");
// Display the content types supported for this category
CComPtr<IPortableDevicePropVariantCollection> pContentTypes;
hr = pCapabilities->GetSupportedContentTypes(*pv.puuid, &pContentTypes);
if (SUCCEEDED(hr))
{
printf("Supported Content Types: ");
DisplayContentTypes(pContentTypes);
printf("\n\n");
}
else
{
printf("! Failed to get supported content types from the device, hr = 0x%lx\n",hr);
}
}
else
{
printf("! Invalid functional category found\n");
}
}
PropVariantClear(&pv);
}
}
関連トピック