#ifndef LIBAO_H
#define LIBAO_H
typedef enum{wav,wim,mp3} io_type_t;
typedef struct IOINFO{
io_type_t type; //文件類型編號
char *name; //wav wim,mp3等
char *author; //作者
char *time; //編寫時間
char *describe; //模塊描述
} io_info_t;
typedef struct LIBIO{
io_info_t info; //模塊信息
int (*ropen)(char *devname,int *sample,short *channel,short bit) //打開文件
{
printf("1\n");
}
} io_t;
extern io_t *getfile(io_type_t type);
#endif
libio.h:16: 錯誤:expected ‘:’, ‘,’, ‘;’, ‘}’ or ‘__attribute__’ before ‘{’ token
函數指針是指向函數的指針變量,即本質是一個指針變量。你把他當成了函數並且去實現了,不錯才怪!!!
int (*f) (int x); /* 聲明一個函數指針 /
f=func; / 將func函數的首地址賦給指針f */