]> git.sesse.net Git - vlc/blob - modules/visualization/galaktos/func_types.h
dcd758350c884f472175c2e0ecdb18da0f303e9c
[vlc] / modules / visualization / galaktos / func_types.h
1 #ifndef FUNC_TYPES_H
2 #define FUNC_TYPES_H
3 #include "common.h"
4
5
6 /* Function Type */
7 typedef struct FUNC_T {
8   char name[MAX_TOKEN_SIZE];  
9   double (*func_ptr)();
10   int num_args;
11 } func_t;
12
13 #endif