func_types.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:

midi

开发平台:

Unix_Linux

  1. #ifndef FUNC_TYPES_H
  2. #define FUNC_TYPES_H
  3. #include "common.h"
  4. /* Function Type */
  5. typedef struct FUNC_T {
  6.   char name[MAX_TOKEN_SIZE];  
  7.   double (*func_ptr)();
  8.   int num_args;
  9. } func_t;
  10. #endif