func_types.h
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:
midi
开发平台:
Unix_Linux
- #ifndef FUNC_TYPES_H
- #define FUNC_TYPES_H
- #include "common.h"
- /* Function Type */
- typedef struct FUNC_T {
- char name[MAX_TOKEN_SIZE];
- double (*func_ptr)();
- int num_args;
- } func_t;
- #endif