CollectionsListCopyAndMarshall - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// sensorsutils.h

NTSTATUS CollectionsListCopyAndMarshall(
  [in]  PSENSOR_COLLECTION_LIST       Target,
  [out] const PSENSOR_COLLECTION_LIST Source
);
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nf-sensorsutils-collectionslistcopyandmarshall)

CollectionsListCopyAndMarshall function

Description

This routine copies and marshalls a collection list from source to target.

Parameters

Target [in]

A pointer to a collection list.

Source [out]

A pointer to a collection list.

Return value

This function returns NTSTATUS.

Remarks

[!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.

See also