mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-22 18:01:13 +00:00
SDL_GetVersion can be public
This commit is contained in:
parent
92f293416d
commit
df0b8c03d6
|
@ -865,7 +865,7 @@ namespace SDL2
|
|||
/// <param name="ver">the <see cref="SDL_version"/> structure that contains the version information</param>
|
||||
/// <remarks>This function may be called safely at any time, even before SDL_Init(). </remarks>
|
||||
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
private static extern void SDL_GetVersion(out SDL_version ver);
|
||||
public static extern void SDL_GetVersion(out SDL_version ver);
|
||||
|
||||
/// <summary>
|
||||
/// Use this function to get the code revision of SDL that is linked against your program.
|
||||
|
|
Loading…
Reference in a new issue