This commit is contained in:
Nishi 2026-05-23 02:26:17 +09:00
commit 57a53f4c1f
153 changed files with 136173 additions and 0 deletions

22
include/fishtalk.h Normal file
View file

@ -0,0 +1,22 @@
#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