Panda3D
 All Classes Functions Variables Enumerations
config_openalAudio.h
1 // Filename: config_openalAudio.h
2 // Created by: Ben Buchwald <bb2@alumni.cmu.edu>
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef CONFIG_OPENALAUDIO_H
16 #define CONFIG_OPENALAUDIO_H
17 
18 #include "pandabase.h"
19 
20 #include "notifyCategoryProxy.h"
21 #include "dconfig.h"
22 #include "audioManager.h"
23 
24 ConfigureDecl(config_openalAudio, EXPCL_OPENAL_AUDIO, EXPTP_OPENAL_AUDIO);
25 NotifyCategoryDecl(openalAudio, EXPCL_OPENAL_AUDIO, EXPTP_OPENAL_AUDIO);
26 
27 extern EXPCL_OPENAL_AUDIO void init_libOpenALAudio();
28 extern "C" EXPCL_OPENAL_AUDIO Create_AudioManager_proc *get_audio_manager_func_openal_audio();
29 
30 extern ConfigVariableString openal_device;
31 
32 #endif // CONFIG_OPENALAUDIO_H
This is a convenience class to specialize ConfigVariable as a string type.