mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-03-04 17:59:51 +00:00
SDL_SetWindowBordered
This commit is contained in:
parent
a69308c8d6
commit
4f02e3d005
|
@ -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(
|
||||
|
|
Loading…
Reference in a new issue