pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: program.h,v 1.
185
2003/
08
/
20
12
:
08
:
46
grubba Exp $
+
|| $Id: program.h,v 1.
186
2003/
09
/
04
15
:
02
:
02
grubba Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "pike_macros.h" #include "pike_error.h"
pike.git/src/program.h:69:
#define LFUN_RMOD 37 #define LFUN_ADD_EQ 38 #define LFUN__IS_TYPE 39 #define LFUN__SPRINTF 40 #define LFUN__EQUAL 41 #define LFUN__M_DELETE 42 #define LFUN__GET_ITERATOR 43 #define NUM_LFUNS 44
+
/* NOTE: After this point there are only fake lfuns.
+
* ie use low_find_lfun(), and NOT FIND_LFUN()!
+
*/
+
#define LFUN__SEARCH 44
+
extern char *lfun_names[]; extern struct pike_string *lfun_strings[]; #ifndef STRUCT_SVALUE_DECLARED #define STRUCT_SVALUE_DECLARED struct svalue; #endif #ifndef STRUCT_NODE_S_DECLARED