From 4f02e3d005f8f1c67f83b2468c3cdd7525e0a829 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Sun, 28 Apr 2013 14:53:16 -0400 Subject: [PATCH] SDL_SetWindowBordered --- src/SDL2.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/SDL2.cs b/src/SDL2.cs index c2fe43e..d44e27f 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -880,6 +880,13 @@ namespace SDL2 int h ); + /* window refers to an SDL_Window* */ + [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + public static extern void SDL_SetWindowBordered( + IntPtr window, + SDL_bool bordered + ); + /* window refers to an SDL_Window* */ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SDL_SetWindowTitle(