@MarshalsPointer public static long toNative(CGImageDestinationCopySourceOptions o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.data, flags); }
@MarshalsPointer public static long toNative(CFStringTransform o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(CTFrameClippingPath o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.data, flags); }
@MarshalsPointer public static long toNative(CMImageDescriptionFlavor o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(CMFormatDescriptionExtension o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.data, flags); }
@MarshalsPointer public static long toNative(CFStreamSocketSOCKSVersion o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(CGImagePropertyGIF o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(CMMetadataKeySpace o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(CVBufferAttributes o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.data, flags); }
@MarshalsPointer public static long toNative(CMMetadataFormatDescriptionMetadataSpecification o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.data, flags); }
@MarshalsPointer public static long toNative(CFURLUbiquitousItemDownloadingStatus o, long flags) { if (o == null) { return 0L; } return CFType.Marshaler.toNative(o.value(), flags); }
@MarshalsPointer public static long toNative(List<CFStreamSocketSOCKSVersion> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CFStreamSocketSOCKSVersion i : l) { array.add(i.value()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CGImagePropertyGIF> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CGImagePropertyGIF o : l) { array.add(o.value()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CMMetadataKeySpace> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CMMetadataKeySpace o : l) { array.add(o.value()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CMImageDescriptionFlavor> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CMImageDescriptionFlavor o : l) { array.add(o.value()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<ABSource> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (ABSource i : l) { array.add(i); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CFURLUbiquitousItemDownloadingStatus> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CFURLUbiquitousItemDownloadingStatus o : l) { array.add(o.value()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CGImageDestinationCopySourceOptions> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CGImageDestinationCopySourceOptions i : l) { array.add(i.getDictionary()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CMFormatDescriptionExtension> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CMFormatDescriptionExtension i : l) { array.add(i.getDictionary()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CTFrameClippingPath> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CTFrameClippingPath i : l) { array.add(i.getDictionary()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<CVBufferAttributes> l, long flags) { if (l == null) { return 0L; } CFArray array = CFMutableArray.create(); for (CVBufferAttributes i : l) { array.add(i.getDictionary()); } return CFType.Marshaler.toNative(array, flags); }
@MarshalsPointer public static long toNative(List<? extends CFType> l, long flags) { if (l == null) { return 0L; } CFArray o = null; if (l instanceof CFArray) { o = (CFArray) l; } else { o = CFArray.create((List<? extends CFType>) l); } return CFType.Marshaler.toNative(o, flags); }