pike.git
/
src
/
pike_types.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/pike_types.h:63:
#define PT_FLAG_ASSIGN_6 0x040000 /* The subtree assigns '6'. */ #define PT_FLAG_ASSIGN_7 0x080000 /* The subtree assigns '7'. */ #define PT_FLAG_ASSIGN_8 0x100000 /* The subtree assigns '8'. */ #define PT_FLAG_ASSIGN_9 0x200000 /* The subtree assigns '9'. */ #define PT_FLAG_ASSIGN 0x3ff000 /* The subtree holds assigns. */ #define PT_FLAG_MARK_ASSIGN 0x3ff3ff /* Assigns AND Markers. */ #define PT_FLAG_INT_ONLY 0x1000000 /* Filter non-integers. */
+
#define PT_FLAG_VOIDABLE 0x2000000
+
/* * Flags used by remap_marker{,s}(): */ enum pt_remap_flags { PT_FLAG_REMAP_SWAP_MARKERS = 0x01, /* Swap A & B */ PT_FLAG_REMAP_BOTH_MARKERS = 0x02, /* Look in both sets. */ PT_FLAG_REMAP_BOTH_MARKERS_AND = 0x02, /* And both markers */ PT_FLAG_REMAP_BOTH_MARKERS_OR = 0x06, /* Or both markers */ PT_FLAG_REMAP_BOTH_MARKERS_MASK = 0x06, /* Mask for the above */