diff options
author | Sergeanur <s.anureev@yandex.ua> | 2020-09-13 02:10:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-13 02:10:14 +0200 |
commit | 25a22cc6f25c01c7fc777bc41f632e6237ac8426 (patch) | |
tree | 4323944c27801c403fcea94a4fee9913570b172e /src/audio/DMAudio.h | |
parent | Merge pull request #701 from erorcun/miami (diff) | |
parent | Add missing file (diff) | |
download | re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.gz re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.bz2 re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.lz re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.xz re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.tar.zst re3-25a22cc6f25c01c7fc777bc41f632e6237ac8426.zip |
Diffstat (limited to 'src/audio/DMAudio.h')
-rw-r--r-- | src/audio/DMAudio.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/audio/DMAudio.h b/src/audio/DMAudio.h index e7d3a23b..ef62294e 100644 --- a/src/audio/DMAudio.h +++ b/src/audio/DMAudio.h @@ -30,6 +30,7 @@ public: void DestroyAllGameCreatedEntities(void); void SetMonoMode(uint8 mono); + void SetMP3BoostVolume(uint8 volume); void SetEffectsMasterVolume(uint8 volume); void SetMusicMasterVolume(uint8 volume); void SetEffectsFadeVol(uint8 volume); @@ -90,5 +91,13 @@ public: uint8 GetRadioInCar(void); void SetRadioInCar(uint32 radio); void SetRadioChannel(int8 radio, int32 pos); + + void SetStartingTrackPositions(uint8 isStartGame); + float *GetListenTimeArray(); + uint32 GetFavouriteRadioStation(); + int32 GetRadioPosition(uint32 station); + void SetPedTalkingStatus(class CPed *ped, uint8 status); + void SetPlayersMood(uint8 mood, int32 time); + void ShutUpPlayerTalking(uint8 state); }; extern cDMAudio DMAudio; |