comparison src/libmlk-core/core/sound.h @ 379:67c1c46af2c8

core: replace SDL2_mixer with OpenAL, closes #2528 @3h
author David Demelier <markand@malikania.fr>
date Wed, 05 Jan 2022 12:45:17 +0100
parents 460c78706989
children
comparison
equal deleted inserted replaced
378:460c78706989 379:67c1c46af2c8
45 45
46 int 46 int
47 sound_ok(const struct sound *); 47 sound_ok(const struct sound *);
48 48
49 int 49 int
50 sound_play(struct sound *, int, unsigned int); 50 sound_play(struct sound *);
51 51
52 void 52 void
53 sound_pause(struct sound *); 53 sound_pause(struct sound *);
54 54
55 void 55 void
56 sound_resume(struct sound *); 56 sound_resume(struct sound *);
57 57
58 void 58 void
59 sound_stop(struct sound *, unsigned int); 59 sound_stop(struct sound *);
60 60
61 void 61 void
62 sound_finish(struct sound *); 62 sound_finish(struct sound *);
63 63
64 CORE_END_DECLS 64 CORE_END_DECLS