Mercurial > foo_out_sdl
comparison foo_out_sdl_funcs.h @ 0:e9bb126753e7
*: initial commit
totally untested besides the wrapper; need to get msvc running
| author | Paper <paper@tflc.us> |
|---|---|
| date | Sat, 03 Jan 2026 23:52:56 -0500 |
| parents | |
| children | 20d02a178406 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e9bb126753e7 |
|---|---|
| 1 FUNC(SDL_AudioStream *, OpenAudioDeviceStream, (SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata), (devid, spec, callback, userdata)) | |
| 2 FUNC(void, DestroyAudioStream, (SDL_AudioStream *stream), (stream)) | |
| 3 FUNC(bool, SetAudioStreamFormat, (SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec), (stream, src_spec, dst_spec)) | |
| 4 FUNC(bool, PutAudioStreamData, (SDL_AudioStream *stream, const void *buf, int len), (stream, buf, len)) | |
| 5 FUNC(bool, PauseAudioStreamDevice, (SDL_AudioStream *stream), (stream)) | |
| 6 FUNC(bool, ResumeAudioStreamDevice, (SDL_AudioStream *stream), (stream)) | |
| 7 FUNC(bool, ClearAudioStream, (SDL_AudioStream *stream), (stream)) | |
| 8 FUNC(bool, FlushAudioStream, (SDL_AudioStream *stream), (stream)) | |
| 9 FUNC(bool, SetAudioStreamGain, (SDL_AudioStream *stream, float gain), (stream, gain)) | |
| 10 FUNC(bool, InitSubSystem, (SDL_InitFlags flags), (flags)) | |
| 11 FUNC(void, QuitSubSystem, (SDL_InitFlags flags), (flags)) | |
| 12 #undef FUNC |
