func_types.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:0k
源码类别:

多媒体

开发平台:

MultiPlatform

  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