19 lines
441 B
C
19 lines
441 B
C
|
/*
|
||
|
* iaxclient: a cross-platform IAX softphone library
|
||
|
*
|
||
|
* Copyrights:
|
||
|
* Copyright (C) 2003 HorizonLive.com, (c) 2004, Horizon Wimba, Inc.
|
||
|
*
|
||
|
* Contributors:
|
||
|
* Steve Kann <stevek@stevek.com>
|
||
|
*
|
||
|
* This program is free software, distributed under the terms of
|
||
|
* the GNU Lesser (Library) General Public License
|
||
|
*/
|
||
|
#ifndef _AUDIO_FILE_H
|
||
|
#define _AUDIO_FILE_H
|
||
|
|
||
|
int file_initialize(struct iaxc_audio_driver *d , int sample_rate);
|
||
|
|
||
|
#endif
|