SDL_SetWindowBordered

This commit is contained in:
Ethan Lee 2013-04-28 14:53:16 -04:00
parent a69308c8d6
commit 4f02e3d005

View file

@ -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(