comparison libmlk-core/mlk/core/sys_p.h @ 436:df92d5b056ce

core: use err.h in sound|music
author David Demelier <markand@malikania.fr>
date Sun, 16 Oct 2022 09:12:52 +0200
parents 38cf60f5a1c4
children 773a082f0b91
comparison
equal deleted inserted replaced
435:556c8e2ff995 436:df92d5b056ce
41 ALuint buffer; 41 ALuint buffer;
42 ALuint source; 42 ALuint source;
43 ALenum format; 43 ALenum format;
44 }; 44 };
45 45
46 struct audiostream * 46 int
47 audiostream_open(const char *); 47 audiostream_open(struct audiostream **, const char *);
48 48
49 struct audiostream * 49 int
50 audiostream_openmem(const void *, size_t); 50 audiostream_openmem(struct audiostream **, const void *, size_t);
51 51
52 void 52 void
53 audiostream_finish(struct audiostream *); 53 audiostream_finish(struct audiostream *);
54 54
55 #endif /* !MLK_CORE_SYS_P_H */ 55 #endif /* !MLK_CORE_SYS_P_H */