Tightened access restrictions to native functions.

This commit is contained in:
Jarl Gullberg 2017-05-21 02:32:09 +02:00
parent 66568d567e
commit b95197e6ca
No known key found for this signature in database
GPG key ID: FBB69BD7CAE095A0

View file

@ -341,10 +341,10 @@ namespace OpenTK
#if GTK3
[SuppressUnmanagedCodeSecurity, DllImport("libgdk-3-0.dll", CallingConvention = CallingConvention.Cdecl)]
public static extern IntPtr gdk_win32_window_get_handle(IntPtr w);
static extern IntPtr gdk_win32_window_get_handle(IntPtr w);
#else
[SuppressUnmanagedCodeSecurity, DllImport("libgdk-win32-2.0-0.dll")]
public static extern IntPtr gdk_win32_drawable_get_handle(IntPtr d);
static extern IntPtr gdk_win32_drawable_get_handle(IntPtr d);
#endif
#endregion