diff options
author | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-06 05:45:45 +0800 |
---|---|---|
committer | ptt <ptt@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-04-06 05:45:45 +0800 |
commit | 6b49f6bc1bf86a9bfa61e34afda72387126e2f53 (patch) | |
tree | 496f791a7ce500787c209d78eca93821d58e791b /include | |
parent | 2cbf4932a81de91bcc12a65eb314ff0c88d2a7ae (diff) | |
download | pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.tar pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.tar.gz pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.tar.bz2 pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.tar.lz pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.tar.xz pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.tar.zst pttbbs-6b49f6bc1bf86a9bfa61e34afda72387126e2f53.zip |
push bottom
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1701 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/proto.h | 2 | ||||
-rw-r--r-- | include/pttstruct.h | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/proto.h b/include/proto.h index 46eab16c..8d90a1b0 100644 --- a/include/proto.h +++ b/include/proto.h @@ -114,6 +114,7 @@ int apply_boards(int (*func)(boardheader_t *)); int haspostperm(char *bname); void inbtotal(int bid, int add); void setbtotal(int bid); +void setbottomtotal(int bid); unsigned int safe_sleep(unsigned int seconds); int apply_ulist(int (*fptr)(userinfo_t *)); userinfo_t *search_ulistn(int uid, int unum); @@ -665,6 +666,7 @@ int passwd_apply(int (*fptr)(int, userec_t *)); void passwd_lock(); void passwd_unlock(); int passwd_update_money(int num); +int passwd_query_money(int num); int initcuser(char *userid); int freecuser(); diff --git a/include/pttstruct.h b/include/pttstruct.h index c8944e02..20260ad1 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -377,10 +377,12 @@ typedef struct { boardheader_t *HBcache[HOTBOARDCACHE]; #endif #if DIRCACHESIZE - fileheader_t dircache[MAX_BOARD][DIRCACHESIZE]; + // Ptt: dricache À³³§ï令¨¥ucache ¼öö̪ùù¬Ýݪ©©Á×קKmemory®öö¶O + fileheader_t dircache[MAX_BOARD][DIRCACHESIZE]; #endif time_t busystate_b[MAX_BOARD]; int total[MAX_BOARD]; + unsigned char n_bottom[MAX_BOARD]; /* number of bottom */ int hbfl[MAX_BOARD][MAX_FRIEND + 1]; time_t lastposttime[MAX_BOARD]; time_t Buptime; |