diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-03-26 19:06:05 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-03-26 19:06:05 +0800 |
commit | 632edbc87172c2d452637d5ad2f02f2f9d94f3bd (patch) | |
tree | 9eecbfb3c3a5bd98ff87c6634c666b991d33277d /include/pttstruct.h | |
parent | 54bd97319d19e80a2414d3f78383c23a2391a2b1 (diff) | |
download | pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.gz pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.bz2 pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.lz pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.xz pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.tar.zst pttbbs-632edbc87172c2d452637d5ad2f02f2f9d94f3bd.zip |
user could set if hilight favorite
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@717 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include/pttstruct.h')
-rw-r--r-- | include/pttstruct.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index d424d24d..dc457e75 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -1,4 +1,4 @@ -/* $Id: pttstruct.h,v 1.30 2003/03/26 10:21:40 in2 Exp $ */ +/* $Id: pttstruct.h,v 1.31 2003/03/26 11:06:04 in2 Exp $ */ #ifndef INCLUDE_STRUCT_H #define INCLUDE_STRUCT_H @@ -86,13 +86,14 @@ typedef struct userec_t { #define MOVIE_FLAG 0x40 /* true if show movie */ #define COLOR_FLAG 0x80 /* true if the color mode open */ #define MIND_FLAG 0x100 /* true if mind search mode open <-Heat*/ -#define FAVNEW_FLAG 0x20 /* true if add new board into one's fav */ /* these are flags in userec_t.uflag2 */ #define WATER_MASK 000003 /* water mask */ #define WATER_ORIG 0x0 #define WATER_NEW 0x1 #define WATER_OFO 0x2 #define WATERMODE(mode) ((cuser.uflag2 & WATER_MASK) == mode) +#define FAVNOHILIGHT 0x10 /* false if hilight favorite */ +#define FAVNEW_FLAG 0x20 /* true if add new board into one's fav */ #define BTLEN 48 /* Length of board title */ |