Before I forget :-), I was adding the Swish constants to the PHP environment
and noticed that IN_ALL is using a bit flag that is not defined (for that
matter, so is IN_FILE). Basically, IN_ALL is #define'd as using OR'd values of
all the bit fields, but IN_FILE_BIT is not defined, thus making this attribute
useless. Is this suppose to be:
#define IN_FILE_BIT 0
#define IN_FILE (1<<IN_FILE_BIT);
#define IN_ALL (...|IN_FILE);
Regards,
Patrick O'Lone
polone@townnews.com
Received on Thu Jul 24 03:48:17 2003