comparison src/audacious/xconvert.h @ 3749:e97cee2185ce

add include guard
author William Pitcock <nenolod@atheme.org>
date Sun, 14 Oct 2007 03:57:38 -0500
parents 3b6d316f8b09
children
comparison
equal deleted inserted replaced
3748:08e87e5051d8 3749:e97cee2185ce
1 /* 1 /*
2 * Copyright (C) 2003 Haavard Kvaalen <havardk@xmms.org> 2 * Copyright (C) 2003 Haavard Kvaalen <havardk@xmms.org>
3 * 3 *
4 * Licensed under GNU GPL version 3. 4 * Licensed under GNU GPL version 3.
5 */ 5 */
6
7 #ifndef _AUDACIOUS_XCONVERT_H
8 #define _AUDACIOUS_XCONVERT_H
6 9
7 #include <audacious/plugin.h> 10 #include <audacious/plugin.h>
8 11
9 struct xmms_convert_buffers; 12 struct xmms_convert_buffers;
10 13
30 convert_channel_func_t xmms_convert_get_channel_func(AFormat fmt, 33 convert_channel_func_t xmms_convert_get_channel_func(AFormat fmt,
31 int output, 34 int output,
32 int input); 35 int input);
33 convert_freq_func_t xmms_convert_get_frequency_func(AFormat fmt, 36 convert_freq_func_t xmms_convert_get_frequency_func(AFormat fmt,
34 int channels); 37 int channels);
38
39 #endif