MonobjcMonobjc Documented Class Library
CGDataProviderSkipBytesCallback Delegate
NamespacesMonobjc.ApplicationServicesCGDataProviderSkipBytesCallback

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

Original signature is : void (*CGDataProviderSkipBytesCallback) ( void *info, size_t count );

Available in Mac OS X v10.3 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void CGDataProviderSkipBytesCallback(
	IntPtr info,
	NSUInteger count
)
Public Delegate Sub CGDataProviderSkipBytesCallback ( _
	info As IntPtr, _
	count As NSUInteger _
)
public delegate void CGDataProviderSkipBytesCallback(
	IntPtr info, 
	NSUInteger 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 (NSUInteger)
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)