diff options
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 */ |