Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump ext/SDL from 6ff31e1 to 8387fae #418

Merged
merged 2 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cs/production/SDL/Generated/AssemblyAttributes.gen.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// To disable generating this file set `isEnabledGenerateAssemblyAttributes` to `false` in the config file for generating C# code.
// <auto-generated>
// This code was generated by the following tool on 2023-08-31 14:43:54 GMT+00:00:
// This code was generated by the following tool on 2023-09-04 01:17:19 GMT+00:00:
// https://github.com/bottlenoselabs/c2cs (v6.1.3.0)
//
// Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
10 changes: 9 additions & 1 deletion src/cs/production/SDL/Generated/SDL.gen.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

// <auto-generated>
// This code was generated by the following tool on 2023-08-31 14:43:54 GMT+00:00:
// This code was generated by the following tool on 2023-09-04 01:17:19 GMT+00:00:
// https://github.com/bottlenoselabs/c2cs (v6.1.3.0)
//
// Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down Expand Up @@ -599,6 +599,10 @@ public static unsafe partial class SDL
[DllImport(LibraryName, EntryPoint = "SDL_GetAudioStreamFormat", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_GetAudioStreamFormat(SDL_AudioStream* stream, SDL_AudioSpec* src_spec, SDL_AudioSpec* dst_spec);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_GetAudioStreamSpeed", CallingConvention = CallingConvention.Cdecl)]
public static extern float SDL_GetAudioStreamSpeed(SDL_AudioStream* stream);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_GetBasePath", CallingConvention = CallingConvention.Cdecl)]
public static extern CString SDL_GetBasePath();
Expand Down Expand Up @@ -2307,6 +2311,10 @@ public static unsafe partial class SDL
[DllImport(LibraryName, EntryPoint = "SDL_SetAudioStreamPutCallback", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_SetAudioStreamPutCallback(SDL_AudioStream* stream, SDL_AudioStreamCallback callback, void* userdata);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_SetAudioStreamSpeed", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_SetAudioStreamSpeed(SDL_AudioStream* stream, float speed);

[CNode(Kind = "Function")]
[DllImport(LibraryName, EntryPoint = "SDL_SetClipboardData", CallingConvention = CallingConvention.Cdecl)]
public static extern int SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void* userdata, CString* mime_types, ulong num_mime_types);
Expand Down