order.h
changeset 1615 cee18da24b41
parent 1530 caa16c506a22
child 1786 a54634efeb98
--- a/order.h	Sat Apr 02 00:17:16 2005 +0000
+++ b/order.h	Sat Apr 02 01:08:01 2005 +0000
@@ -15,6 +15,8 @@
 };
 
 /* Order flags -- please use OFB instead OF and use HASBIT/SETBIT/CLEARBIT */
+
+/* Order flag masks - these are for direct bit operations */
 enum {
 	//Flags for stations:
 	OF_UNLOAD         = 0x2,
@@ -28,7 +30,7 @@
 	OF_NON_STOP  = 0x8
 };
 
-/* Order flags bits */
+/* Order flags bits - these are for the *BIT macros */
 enum {
 	OFB_UNLOAD         = 1,
 	OFB_FULL_LOAD      = 2,
@@ -37,6 +39,7 @@
 	OFB_NON_STOP       = 3
 };
 
+
 /* Possible clone options */
 enum {
 	CO_SHARE   = 0,