mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-07-06 11:20:40 +00:00
Added SDL_InitSubSystem method
This commit is contained in:
parent
4a13415fc6
commit
3660509dee
|
@ -233,6 +233,10 @@ namespace OpenTK.Platform.SDL2
|
||||||
[DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_Init", ExactSpelling = true)]
|
[DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_Init", ExactSpelling = true)]
|
||||||
public static extern int Init(SystemFlags flags);
|
public static extern int Init(SystemFlags flags);
|
||||||
|
|
||||||
|
[SuppressUnmanagedCodeSecurity]
|
||||||
|
[DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_InitSubSystem", ExactSpelling = true)]
|
||||||
|
public static extern int InitSubSystem(SystemFlags flags);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Determines if the specified joystick is supported by the GameController API.
|
/// Determines if the specified joystick is supported by the GameController API.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in a new issue