diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-05-27 22:08:15 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2007-05-27 22:08:15 +0800 |
commit | a8ac9d593f193d06a2dff50bb91f81bfee6b9a94 (patch) | |
tree | 3b9304cd7fd3780facdd57afb1b9d6e49c843049 /include | |
parent | 1eb01fd5c3a2c09a3c9fb897e00b309c8bb3ff5f (diff) | |
download | pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.tar pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.tar.gz pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.tar.bz2 pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.tar.lz pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.tar.xz pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.tar.zst pttbbs-a8ac9d593f193d06a2dff50bb91f81bfee6b9a94.zip |
* add shutdown flag
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3516 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/pttstruct.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index db5eb794..67fa00cf 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -100,9 +100,9 @@ typedef struct userec_t { unsigned short chc_tie; /* 象棋戰績 和 */ int mobile; /* 手機號碼 */ char mind[4]; /* 心情 not a null-terminate string */ - unsigned short go_win; /* 圍祺戰績 勝 */ - unsigned short go_lose; /* 圍祺戰績 敗 */ - unsigned short go_tie; /* 圍祺戰績 和 */ + unsigned short go_win; /* 圍棋戰績 勝 */ + unsigned short go_lose; /* 圍棋戰績 敗 */ + unsigned short go_tie; /* 圍棋戰績 和 */ char pad0[5]; /* 從前放 ident 身份證字號,現在可以拿來做別的事了, 不過最好記得要先清成 0 */ unsigned char signature; /* 慣用簽名檔 */ @@ -594,6 +594,7 @@ typedef struct { time4_t now; #endif int nWelcomes; + int shutdown; /* shutdown flag */ /* 注意, 應保持 align sizeof(int) */ } e; |