Fixed a CLSCompliance issue.

This commit is contained in:
the_fiddler 2007-08-21 09:43:50 +00:00
parent 2e94140592
commit 022b37e3cc

View file

@ -165,7 +165,7 @@ namespace OpenTK.Platform.X11
[DllImport("libX11", EntryPoint = "XChangeProperty")]
public extern static int XChangeProperty(IntPtr display, IntPtr window, IntPtr property, IntPtr type, int format, PropertyMode mode, ref int value, int nelements);
[DllImport("libX11", EntryPoint = "XChangeProperty")]
[DllImport("libX11", EntryPoint = "XChangeProperty"), CLSCompliant(false)]
public extern static int XChangeProperty(IntPtr display, IntPtr window, IntPtr property, IntPtr type, int format, PropertyMode mode, ref IntPtr value, int nelements);
[DllImport("libX11", EntryPoint = "XChangeProperty"), CLSCompliant(false)]