Skip to content
Snippets Groups Projects
Commit 5622e5de authored by rswindell's avatar rswindell
Browse files

Moved CHAT_* definitions closer to QWK_* definitions.

Incremented revision.
parent e4df0923
Branches
Tags
No related merge requests found
...@@ -48,10 +48,10 @@ ...@@ -48,10 +48,10 @@
#ifdef JAVASCRIPT #ifdef JAVASCRIPT
#define VERSION "3.10" /* Version: Major.minor */ #define VERSION "3.10" /* Version: Major.minor */
#define REVISION 'A' #define REVISION 'B'
#else #else
#define VERSION "3.00" /* Version: Major.minor */ #define VERSION "3.00" /* Version: Major.minor */
#define REVISION 'F' #define REVISION 'G'
#endif #endif
#define VERSION_NOTICE "Synchronet BBS for "PLATFORM_DESC\ #define VERSION_NOTICE "Synchronet BBS for "PLATFORM_DESC\
...@@ -396,6 +396,14 @@ typedef enum { /* Values for xtrn_t.event */ ...@@ -396,6 +396,14 @@ typedef enum { /* Values for xtrn_t.event */
#define QWK_VIA (1L<<11) /* Include "@VIA" seen-bys in msgs */ #define QWK_VIA (1L<<11) /* Include "@VIA" seen-bys in msgs */
#define QWK_NOCTRL (1L<<12) /* No extraneous control files */ #define QWK_NOCTRL (1L<<12) /* No extraneous control files */
/* 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_DIR 0xffff /* Invalid directory value */
#define INVALID_SUB 0xffff /* Invalid sub-board value */ #define INVALID_SUB 0xffff /* Invalid sub-board value */
...@@ -735,12 +743,6 @@ enum { /* Values for 'mode' in listfileinfo */ ...@@ -735,12 +743,6 @@ enum { /* Values for 'mode' in listfileinfo */
#define L_LOGON 1 /* Logon List maintenance */ #define L_LOGON 1 /* Logon List maintenance */
#define LOL_SIZE 81 /* Length of each logon list entry */ #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 */ /* Bits in mode of scanposts() function */
#define SCAN_CONST (1<<0) /* Continuous message scanning */ #define SCAN_CONST (1<<0) /* Continuous message scanning */
#define SCAN_NEW (1<<1) /* New scanning */ #define SCAN_NEW (1<<1) /* New scanning */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment