diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/audio.h | 2 | ||||
| -rw-r--r-- | include/core.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/audio.h b/include/audio.h index 7367de8..58afc7f 100644 --- a/include/audio.h +++ b/include/audio.h @@ -9,6 +9,7 @@ int laudioGetMasterVolume( lua_State *L ); /* Wave/Sound loading/unloading functions. */ int laudioLoadSound( lua_State *L ); int laudioLoadWave( lua_State *L ); +int laudioLoadWaveFromMemory( lua_State *L ); int laudioIsWaveReady( lua_State *L ); int laudioLoadSoundFromWave( lua_State *L ); int laudioLoadSoundAlias( lua_State *L ); @@ -32,6 +33,7 @@ int laudioWaveCopy( lua_State *L ); int laudioWaveCrop( lua_State *L ); /* Music management functions. */ int laudioLoadMusicStream( lua_State *L ); +int laudioLoadMusicStreamFromMemory( lua_State *L ); int laudioIsMusicReady( lua_State *L ); int laudioUnloadMusicStream( lua_State *L ); int laudioPlayMusicStream( lua_State *L ); diff --git a/include/core.h b/include/core.h index ddfefb1..a130692 100644 --- a/include/core.h +++ b/include/core.h @@ -222,6 +222,7 @@ int lcoreUpdateCamera3DPro( lua_State *L ); /* Buffer management functions. */ int lcoreLoadBuffer( lua_State *L ); int lcoreLoadBufferFromFile( lua_State *L ); +int lcoreLoadBufferFromString( lua_State *L ); int lcoreUnloadBuffer( lua_State *L ); int lcoreGetBufferData( lua_State *L ); int lcoreGetBufferType( lua_State *L ); |
