diff options
author | (no author) <(no author)@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-09-22 15:51:16 +0800 |
---|---|---|
committer | (no author) <(no author)@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-09-22 15:51:16 +0800 |
commit | 0cfe7b8112c995d82069bff7e65e0befc034aa2c (patch) | |
tree | 3a299ace7eafe10b33622ec269c29010c5fe6145 /include | |
parent | 1ee4665be1f684f7bc1b7d6ba397e85c849f3872 (diff) | |
download | pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.tar pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.tar.gz pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.tar.bz2 pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.tar.lz pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.tar.xz pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.tar.zst pttbbs-0cfe7b8112c995d82069bff7e65e0befc034aa2c.zip |
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1195 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/proto.h | 2 | ||||
-rw-r--r-- | include/pttstruct.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/proto.h b/include/proto.h index d1e51a48..a072c5d9 100644 --- a/include/proto.h +++ b/include/proto.h @@ -401,7 +401,7 @@ void initscr(); void Jaky_outs(char *str, int line); /* stuff */ -time_t gettime(int line, time_t dt); +time_t gettime(int line, time_t dt, char* head); void setcalfile(char *buf, char *userid); void stand_title(char *title); void pressanykey(); diff --git a/include/pttstruct.h b/include/pttstruct.h index 41ff9b81..f14317e7 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -6,6 +6,7 @@ typedef struct bid_t { int high; int buyitnow; + int usermax; int increment; char userid[IDLEN + 1]; time_t enddate; @@ -172,7 +173,7 @@ typedef struct fileheader_t { #define FILE_BM 0x40 /* BM only */ #define FILE_BOTH 0x80 /* both replay for mail and board */ #define FILE_MULTI 0x100 /* multi send for mail */ -#define FILE_BID 0x200 /* for bid */ +#define FILE_BID 0x20 /* for bid */ #define STRLEN 80 /* Length of most string data */ |