CMBufferCompare Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Delegate signature to compare two CoreFoundation objects, used to sort objects in a CMBufferQueue.
public delegate int CMBufferCompare(INativeObject first, INativeObject second);
type CMBufferCompare = delegate of INativeObject * INativeObject -> int
Parameters
- first
- INativeObject
The first object to compare.
- second
- INativeObject
The second object to compare.
Return Value
Zero for the same object, -1 for first being sma
Remarks
The objects passed are the same ones that have been added to the CMBufferQueue object, it wont surface arbitrary objects.