From 3bedd89e1dddda12bbe14040d23cbf7b169ab305 Mon Sep 17 00:00:00 2001 From: jussi Date: Mon, 8 Sep 2025 22:36:40 +0300 Subject: AudioStream management functions. --- include/lua_core.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/lua_core.h') diff --git a/include/lua_core.h b/include/lua_core.h index 405f054..8204b49 100644 --- a/include/lua_core.h +++ b/include/lua_core.h @@ -87,6 +87,7 @@ REILUAPI GlyphInfo* uluaGetGlyphInfo( lua_State* L, int index ); REILUAPI Wave* uluaGetWave( lua_State* L, int index ); REILUAPI Sound* uluaGetSound( lua_State* L, int index ); REILUAPI Music* uluaGetMusic( lua_State* L, int index ); +REILUAPI AudioStream* uluaGetAudioStream( lua_State* L, int index ); REILUAPI Light* uluaGetLight( lua_State* L, int index ); REILUAPI Material* uluaGetMaterial( lua_State* L, int index ); REILUAPI Model* uluaGetModel( lua_State* L, int index ); @@ -123,6 +124,7 @@ REILUAPI void uluaPushWave( lua_State* L, Wave wave ); REILUAPI void uluaPushSound( lua_State* L, Sound sound ); REILUAPI void uluaPushSoundAlias( lua_State* L, Sound alias ); REILUAPI void uluaPushMusic( lua_State* L, Music music ); +REILUAPI void uluaPushAudioStream( lua_State* L, AudioStream stream ); REILUAPI void uluaPushLight( lua_State* L, Light light ); REILUAPI void uluaPushMaterial( lua_State* L, Material material ); REILUAPI void uluaPushMesh( lua_State* L, Mesh mesh ); @@ -143,6 +145,7 @@ void uluaUnloadWave( Wave* wave ); void uluaUnloadSound( Sound* sound ); void uluaUnloadSoundAlias( Sound* sound ); void uluaUnloadMusic( Music* music ); +void uluaUnloadAudioStream( AudioStream* stream ); void uluaUnloadMaterial( Material* material, bool freeAll ); void uluaUnloadMesh( Mesh* mesh ); void uluaUnloadModel( Model* model ); -- cgit v1.2.3