mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-06-19 13:08:00 +00:00
SDL_SetWindowBordered
This commit is contained in:
parent
a69308c8d6
commit
4f02e3d005
|
@ -880,6 +880,13 @@ namespace SDL2
|
||||||
int h
|
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* */
|
/* window refers to an SDL_Window* */
|
||||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||||
public static extern void SDL_SetWindowTitle(
|
public static extern void SDL_SetWindowTitle(
|
||||||
|
|
Loading…
Reference in a new issue