mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:35:29 +00:00
Added SDL_InitSubSystem method
This commit is contained in:
parent
98b4883efd
commit
6d0427b928
|
@ -233,6 +233,10 @@ namespace OpenTK.Platform.SDL2
|
|||
[DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_Init", ExactSpelling = true)]
|
||||
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>
|
||||
/// Determines if the specified joystick is supported by the GameController API.
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in a new issue