annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
1 FUNC(SDL_AudioStream *, OpenAudioDeviceStream, (SDL_AudioDeviceID devid, const SDL_AudioSpec *spec, SDL_AudioStreamCallback callback, void *userdata), (devid, spec, callback, userdata))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
2 FUNC(void, DestroyAudioStream, (SDL_AudioStream *stream), (stream))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
3 FUNC(bool, SetAudioStreamFormat, (SDL_AudioStream *stream, const SDL_AudioSpec *src_spec, const SDL_AudioSpec *dst_spec), (stream, src_spec, dst_spec))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
4 FUNC(bool, PutAudioStreamData, (SDL_AudioStream *stream, const void *buf, int len), (stream, buf, len))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
5 FUNC(bool, PauseAudioStreamDevice, (SDL_AudioStream *stream), (stream))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
6 FUNC(bool, ResumeAudioStreamDevice, (SDL_AudioStream *stream), (stream))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
7 FUNC(bool, ClearAudioStream, (SDL_AudioStream *stream), (stream))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
8 FUNC(bool, FlushAudioStream, (SDL_AudioStream *stream), (stream))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
9 FUNC(bool, SetAudioStreamGain, (SDL_AudioStream *stream, float gain), (stream, gain))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
10 FUNC(bool, InitSubSystem, (SDL_InitFlags flags), (flags))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
11 FUNC(void, QuitSubSystem, (SDL_InitFlags flags), (flags))
e9bb126753e7 *: initial commit
Paper <paper@tflc.us>
parents:
diff changeset
12 #undef FUNC