Cairo.NativeMethods.cairo_device_reference C# (CSharp) Метод

cairo_device_reference() приватный Метод

private cairo_device_reference ( IntPtr device ) : IntPtr
device System.IntPtr
Результат System.IntPtr
        internal static extern IntPtr cairo_device_reference(IntPtr device);

Usage Example

Пример #1
0
        internal Device(IntPtr handle)
        {
            if (handle == IntPtr.Zero)
            {
                throw new ArgumentException("handle should not be NULL", "handle");
            }

            this.handle = NativeMethods.cairo_device_reference(handle);
        }
All Usage Examples Of Cairo.NativeMethods::cairo_device_reference
NativeMethods