pike.git
/
src
/
program.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $Id: program.h,v 1.
94
2000/07/
10
18
:
21
:
33
grubba Exp $
+
* $Id: program.h,v 1.
95
2000/07/
12
16
:
09
:
36
grubba Exp $
*/ #ifndef PROGRAM_H #define PROGRAM_H #include <stdarg.h> #include "global.h" #include "pike_types.h" #include "pike_macros.h" #include "svalue.h" #include "time_stuff.h"
pike.git/src/program.h:171:
#define ID_STATIC 0x01 /* Symbol is not visible by indexing */ #define ID_PRIVATE 0x02 /* Symbol is not visible by inherit */ #define ID_NOMASK 0x04 /* Symbol may not be overloaded */ #define ID_PUBLIC 0x08 #define ID_PROTECTED 0x10 #define ID_INLINE 0x20 #define ID_HIDDEN 0x40 /* needed? */ #define ID_INHERITED 0x80 #define ID_OPTIONAL 0x100 /* Symbol is not required by the interface */ #define ID_EXTERN 0x200 /* Symbol is defined later */
+
#define ID_VARIANT 0x400 /* Function is overloaded by argument. */
-
#define ID_MODIFIER_MASK
0x03ff
+
#define ID_MODIFIER_MASK
0x07ff
#define ID_STRICT_TYPES 0x8000 /* #pragma strict_types */ struct reference { unsigned INT16 inherit_offset; unsigned INT16 identifier_offset; INT16 id_flags; /* static, private etc.. */ };