Subversion Repositories filter_foundry

Rev

Rev 259 | Rev 439 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 259 Rev 299
Line 27... Line 27...
27
 
27
 
28
/* if this type is floating point, then #define FP_VALUE */
28
/* if this type is floating point, then #define FP_VALUE */
29
#ifdef FP_VALUE
29
#ifdef FP_VALUE
30
typedef double value_type;
30
typedef double value_type;
31
#else
31
#else
-
 
32
// According to the FilterFactory manual, all operations are on signed 32-bit integers
32
typedef long value_type;
33
typedef int value_type;
33
#endif
34
#endif
34
typedef value_type (*pfunc_type)(value_type,...);
35
typedef value_type (*pfunc_type)(value_type,...);
35
 
36
 
36
struct sym_rec{
37
struct sym_rec{
37
        struct sym_rec *next;
38
        struct sym_rec *next;