Release 970112
[wine.git] / debugger / expr.h
blobc2d19bd5a5908e7aeeb36f1568f3bba54591d249
1 #define EXP_OP_LOR 0x01
2 #define EXP_OP_LAND 0x02
3 #define EXP_OP_OR 0x03
4 #define EXP_OP_AND 0x04
5 #define EXP_OP_XOR 0x05
6 #define EXP_OP_EQ 0x06
7 #define EXP_OP_GT 0x07
8 #define EXP_OP_LT 0x08
9 #define EXP_OP_GE 0x09
10 #define EXP_OP_LE 0x0a
11 #define EXP_OP_NE 0x0b
12 #define EXP_OP_SHL 0x0c
13 #define EXP_OP_SHR 0x0d
14 #define EXP_OP_ADD 0x0e
15 #define EXP_OP_SUB 0x0f
16 #define EXP_OP_MUL 0x10
17 #define EXP_OP_DIV 0x11
18 #define EXP_OP_REM 0x12
19 #define EXP_OP_NEG 0x13
20 #define EXP_OP_NOT 0x24
21 #define EXP_OP_LNOT 0x25
22 #define EXP_OP_DEREF 0x26
23 #define EXP_OP_ADDR 0x27
24 #define EXP_OP_ARR 0x28
25 #define EXP_OP_SEG 0x29
26 #define EXP_OP_FORCE_DEREF 0x2a