blob: 4aba50ec7454eb0dbe995e812f46bd56b9a7ee14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* @file llvieweraudio.h
* @brief Audio functions originally in viewer.cpp
*
* Copyright (c) 2000-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_VIEWERAUDIO_H
#define LL_VIEWERAUDIO_H
void init_audio();
void audio_update_volume(bool force_update = true);
void audio_update_listener();
void audio_update_wind(bool force_update = true);
#endif //LL_VIEWER_H
|