1b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org/*
2b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * libjingle
3b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * Copyright 2004--2010, Google Inc.
4b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *
5b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * Redistribution and use in source and binary forms, with or without
6b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * modification, are permitted provided that the following conditions are met:
7b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *
8b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  1. Redistributions of source code must retain the above copyright notice,
9b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *     this list of conditions and the following disclaimer.
10b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  2. Redistributions in binary form must reproduce the above copyright notice,
11b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *     this list of conditions and the following disclaimer in the documentation
12b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *     and/or other materials provided with the distribution.
13b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *  3. The name of the author may not be used to endorse or promote products
14b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *     derived from this software without specific prior written permission.
15b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org *
16b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org */
27b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
28bc669ace8f09d73e95f923253ecdadd366f9b7f1pbos@webrtc.org#include "webrtc/modules/audio_device/linux/pulseaudiosymboltable_linux.h"
29b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
30b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.orgnamespace webrtc_adm_linux_pulse {
31b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
32b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.orgLATE_BINDING_SYMBOL_TABLE_DEFINE_BEGIN(PulseAudioSymbolTable, "libpulse.so.0")
33b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org#define X(sym) \
34b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org    LATE_BINDING_SYMBOL_TABLE_DEFINE_ENTRY(PulseAudioSymbolTable, sym)
35b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.orgPULSE_AUDIO_SYMBOLS_LIST
36b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org#undef X
37b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.orgLATE_BINDING_SYMBOL_TABLE_DEFINE_END(PulseAudioSymbolTable)
38b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org
39b015cbede88899f67a53fbbe581b02ce8e32794andrew@webrtc.org}  // namespace webrtc_adm_linux_pulse
40