MonobjcMonobjc Documented Class Library
CGDataProviderSkipForwardCallback Delegate
NamespacesMonobjc.ApplicationServicesCGDataProviderSkipForwardCallback

A callback function that advances the current position in the data stream supplied by the provider.

Original signature is : off_t (*CGDataProviderSkipForwardCallback) ( void *info, off_t count );

Available in Mac OS X v10.5 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate uint CGDataProviderSkipForwardCallback(
	IntPtr info,
	uint count
)
Public Delegate Function CGDataProviderSkipForwardCallback ( _
	info As IntPtr, _
	count As UInteger _
) As UInteger
public delegate unsigned int CGDataProviderSkipForwardCallback(
	IntPtr info, 
	unsigned int count
)
Parameters
info (IntPtr)
A generic pointer to private data shared among your callback functions. This is the same pointer you supplied to CGDataProviderCreate.
count (UInt32)
The number of bytes to skip.
Return Value
The number of bytes that were actually skipped.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.AppKit (Module: Monobjc.AppKit)