comparison finch/gntsound.c @ 18473:38ff7582c569

Silent sound for finch. The audible stuff will get in in a later release.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 11 Jul 2007 17:45:09 +0000
parents
children bf45ab338124 c8ad802a6167
comparison
equal deleted inserted replaced
18472:58aeac6930fa 18473:38ff7582c569
1 /**
2 * @file gntsound.c GNT Sound API
3 * @ingroup finch
4 *
5 * finch
6 *
7 * Finch is the legal property of its developers, whose names are too numerous
8 * to list here. Please refer to the COPYRIGHT file distributed with this
9 * source distribution.
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25 #include "gntsound.h"
26
27 const char *finch_sound_get_active_profile(void)
28 {
29 return NULL;
30 }
31
32 void finch_sound_set_active_profile(const char *name)
33 {
34 }
35
36 GList *finch_sound_get_profiles(void)
37 {
38 return NULL;
39 }
40
41 PurpleSoundUiOps *finch_sound_get_ui_ops(void)
42 {
43 return NULL;
44 }
45
46 void finch_sounds_show_all(void)
47 {
48 }
49