- renamed aa to offset
[FaRetSys.git] / GdkCairo.cs
blob3bdf499f378d24eb94f73af78f5b86bdef06bc49
1 using System;
2 using System.Reflection;
3 using System.Runtime.InteropServices;
5 namespace Gdk
7 public class Context
9 [DllImport("libgdk-win32-2.0-0.dll")]
10 internal static extern IntPtr gdk_cairo_create(IntPtr handle);
12 public static Cairo.Context CreateDrawable(Gdk.Drawable drawable)
14 Cairo.Context g = new Cairo.Context(gdk_cairo_create(drawable.Handle));
16 return g;