func_types.h
Upload User: kjfoods
Upload Date: 2020-07-06
Package Size: 29949k
Code Size: 0k
Category:

midi program

Development Platform:

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