Quellcode durchsuchen

lib/srdb1: added the ability to use bitwise-and in DB queries

- This is used in the changes to add db only mode to pua
- This enhancement was made by Paul Pankhurst at Crocodile RCS
pd vor 14 Jahren
Ursprung
Commit
659fe4b6ae
1 geänderte Dateien mit 2 neuen und 0 gelöschten Zeilen
  1. 2 0
      lib/srdb1/db_op.h

+ 2 - 0
lib/srdb1/db_op.h

@@ -42,6 +42,8 @@
 #define OP_GEQ ">="
 #define OP_GEQ ">="
 /** operator negation */
 /** operator negation */
 #define OP_NEQ "!="
 #define OP_NEQ "!="
+/** bitise AND */
+#define OP_BITWISE_AND "&"
 
 
 
 
 /**
 /**