From 5622e5de3af1eb4eb32789ab2f35b1621258e27c Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Thu, 2 Aug 2001 04:08:58 +0000 Subject: [PATCH] Moved CHAT_* definitions closer to QWK_* definitions. Incremented revision. --- src/sbbs3/sbbsdefs.h | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/sbbs3/sbbsdefs.h b/src/sbbs3/sbbsdefs.h index 02f569ccd9..b195a2c9ad 100644 --- a/src/sbbs3/sbbsdefs.h +++ b/src/sbbs3/sbbsdefs.h @@ -48,10 +48,10 @@ #ifdef JAVASCRIPT #define VERSION "3.10" /* Version: Major.minor */ - #define REVISION 'A' + #define REVISION 'B' #else #define VERSION "3.00" /* Version: Major.minor */ - #define REVISION 'F' + #define REVISION 'G' #endif #define VERSION_NOTICE "Synchronet BBS for "PLATFORM_DESC\ @@ -396,8 +396,16 @@ typedef enum { /* Values for xtrn_t.event */ #define QWK_VIA (1L<<11) /* Include "@VIA" seen-bys in msgs */ #define QWK_NOCTRL (1L<<12) /* No extraneous control files */ -#define INVALID_DIR 0xffff /* Invalid directory value */ -#define INVALID_SUB 0xffff /* Invalid sub-board value */ + /* Bits in user.chat */ +#define CHAT_ECHO (1<<0) /* Multinode chat echo */ +#define CHAT_ACTION (1<<1) /* Chat actions */ +#define CHAT_NOPAGE (1<<2) /* Can't be paged */ +#define CHAT_NOACT (1<<3) /* No activity alerts */ +#define CHAT_SPLITP (1<<4) /* Split screen private chat */ + + +#define INVALID_DIR 0xffff /* Invalid directory value */ +#define INVALID_SUB 0xffff /* Invalid sub-board value */ #define KEY_BUFSIZE 1024 /* Size of keyboard input buffer */ #define SAVE_LINES 4 /* Maximum number of lines to save */ @@ -735,12 +743,6 @@ enum { /* Values for 'mode' in listfileinfo */ #define L_LOGON 1 /* Logon List maintenance */ #define LOL_SIZE 81 /* Length of each logon list entry */ -#define CHAT_ECHO (1<<0) /* Multinode chat echo */ -#define CHAT_ACTION (1<<1) /* Chat actions */ -#define CHAT_NOPAGE (1<<2) /* Can't be paged */ -#define CHAT_NOACT (1<<3) /* No activity alerts */ -#define CHAT_SPLITP (1<<4) /* Split screen private chat */ - /* Bits in mode of scanposts() function */ #define SCAN_CONST (1<<0) /* Continuous message scanning */ #define SCAN_NEW (1<<1) /* New scanning */ -- GitLab