~ubuntu-branches/ubuntu/saucy/monodevelop/saucy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
// Copyright 2012 Xamarin
//
using System;
using System.Runtime.InteropServices;
using MonoMac.ObjCRuntime;

namespace MonoMac.CoreFoundation {
	public class CFType {
		[DllImport (Constants.CoreFoundationLibrary, EntryPoint="CFGetTypeID")]
		public static extern int GetTypeID (IntPtr typeRef);
	}

	public interface ICFType : INativeObject {
	}
}