// sensorsutils.h
NTSTATUS CollectionsListCopyAndMarshall(
[in] PSENSOR_COLLECTION_LIST Target,
[out] const PSENSOR_COLLECTION_LIST Source
);
View the official Windows Driver Kit DDI referenceNo description available.
This routine copies and marshalls a collection list from source to target.
Target [in]A pointer to a collection list.
Source [out]A pointer to a collection list.
This function returns NTSTATUS.
[!WARNING] This method assumes the structure sizes stay the same during marshalling. Avoid using this method if passing the data between processes that can have different bit-ness values (e.g. 32 bit <-> 64 bit). Use CollectionsListSerializeToBuffer instead.