Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

10 lines
167 B

#ifndef __OP_H__
#define __OP_H__
#define OP_UNARY_MINUS 0
#define OP_LEFT_SHIFT 1
int PrefixOp(int op, int val);
int BinaryOp(int left, int op, int right);
#endif