// sensorsutils.h
NTSTATUS PropVariantGetInformation(
[in] const PROPVARIANT *PropVariantValue,
[out] ULONG *PropVariantOffset,
[out] ULONG *PropVariantSize,
[out] PVOID *PropVariantPointer,
[out] DEVPROPTYPE *RemappedType
);
View the official Windows Driver Kit DDI referenceNo description available.
This routine gets offset, size, location pointer and DEVPROPTYPE, of a PROPVARIANT.
PropVariantValue [in]Pointer to a PROPVARIANT.
PropVariantOffset [out]The offset of the location pointer in PROPVARIANT.
PropVariantSize [out]Size of data.
PropVariantPointer [out]C The location of data.
RemappedType [out]The DEVPROPTYPE.
This function returns STATUS_NOT_SUPPORTED if the PROPVARIANT is not a supported type, STATUS_SUCCESS otherwise.