fishtalk/include/fishtalk_port.h
2026-05-23 10:23:33 +09:00

18 lines
333 B
C

#ifndef __FISHTALK_PORT_H__
#define __FISHTALK_PORT_H__
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>
#ifdef _FISHTALK
typedef struct ft_handle* FT_HANDLE;
#else
typedef void* FT_HANDLE;
#endif
typedef void (*FT_SAMPLE_PROC)(FT_HANDLE handle, short* wave, long length);
#endif