Recupero di tipi di vettore
Alcune proprietà e campi dati contengono matrici di informazioni. Ad esempio, la proprietà SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE contiene una matrice di interi senza segno a 4 byte. Tuttavia, quando si ricevono tali matrici tramite l'API Sensore, vengono sempre rappresentati come tipo VT_VECTOR| UI1, matrice di caratteri a byte singolo, indipendentemente dal tipo effettivo dei dati nella matrice. Per questi tipi, è necessario prestare attenzione a eseguire il cast delle variabili di matrice al tipo di dati corretto per la proprietà o il campo dati.
Per informazioni sulle proprietà, sui campi dati e sui relativi tipi, vedere Costanti.
Il codice di esempio seguente illustra come eseguire il cast dei dati recuperati in SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE al tipo corretto.
PROPVARIANT pvCurve;
PropVariantInit(&pvCurve);
// Retrieve the property value.
hr = pSensor->GetProperty(SENSOR_PROPERTY_LIGHT_RESPONSE_CURVE, &pvCurve);
if (SUCCEEDED(hr))
{
if ((VT_UI1|VT_VECTOR) == V_VT(pvCurve)) // Note actual type of UI1
{
// Cast the array to UINT, a 4-byte unsigned integer.
// Item count for the array.
UINT cElement = pvCurve.caub.cElems/sizeof(UINT);
// Array pointer.
UINT* pElement = (UINT*)(pvCurve.caub.pElems);
// Use the array.
}
}
// Remember to free the PROPVARIANT when done.
PropVariantClear(&pvCurve);