22 lines
392 B
C
22 lines
392 B
C
|
|
#ifndef __FISHTALK_H__
|
||
|
|
#define __FISHTALK_H__
|
||
|
|
|
||
|
|
#include <fishtalk_port.h>
|
||
|
|
#ifdef _FISHTALK
|
||
|
|
#include <fishtalk_int.h>
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
FT_HANDLE FishTalkInit(FT_SAMPLE_PROC sample, int rate);
|
||
|
|
void FishTalkBuffer(FT_HANDLE handle, const char* buffer);
|
||
|
|
void FishTalkSync(FT_HANDLE handle);
|
||
|
|
void FishTalkFree(FT_HANDLE handle);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|