pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:24:
#define LFUN_MULTIPLY 10 #define LFUN_DIVIDE 11 #define LFUN_MOD 12 #define LFUN_COMPL 13 #define LFUN_EQ 14 #define LFUN_LT 15 #define LFUN_GT 16 #define LFUN___HASH 17 #define LFUN_CAST 18 #define LFUN_NOT 19
+
#define LFUN_INDEX 20
+
#define LFUN_ASSIGN_INDEX 21
-
#define NUM_LFUNS
20
+
#define NUM_LFUNS
22
extern char *lfun_names[]; struct svalue; struct module; struct object; /* I need: * a) one type that can point to a callable function. * (C function, or object->fun)