diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-13 19:50:24 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-13 19:50:24 +0800 |
commit | 6d6273c57b2a35a2d71c778de11643376b5eb015 (patch) | |
tree | 653af56c3c279496cef16884e95fad547b5df08a /include | |
parent | afd40b73c635e700c5ba4dda6a3e162c78ea52cd (diff) | |
download | pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.tar pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.tar.gz pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.tar.bz2 pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.tar.lz pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.tar.xz pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.tar.zst pttbbs-6d6273c57b2a35a2d71c778de11643376b5eb015.zip |
- add calendar in login view
- add color help in calendar help
- change param of more path to const
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4157 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 2 | ||||
-rw-r--r-- | include/proto.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/config.h b/include/config.h index 849519d7..aec5b3df 100644 --- a/include/config.h +++ b/include/config.h @@ -260,7 +260,7 @@ #define MAX_SIGLINES (6) /* 帽郎ま程︽计 */ #define MAX_CROSSNUM (9) /* 程crosspostΩ计 */ #define MAX_REVIEW (7) /* 程瞴臮 */ -#define NUMVIEWFILE (14) /* 秈礶程计 */ +#define NUMVIEWFILE (15) /* 秈礶程计 */ #define MAX_SWAPUSED (0.7) /* SWAP程蔼ㄏノ瞯 */ #define LOGINATTEMPTS (3) /* 程秈ア粇Ω计 */ #define WHERE /* 琌Τ珿秏 */ diff --git a/include/proto.h b/include/proto.h index 7115a87d..a223ac78 100644 --- a/include/proto.h +++ b/include/proto.h @@ -419,9 +419,9 @@ void m_sob_brd(char *bname,char *fromdir); #endif /* old more */ -int more(char *fpath, int promptend); +int more(const char *fpath, int promptend); /* piaip's new pager, pmore.c */ -int pmore(char *fpath, int promptend); +int pmore(const char *fpath, int promptend); /* piaip's new telnet, telnet.c */ void telnet_init(void); ssize_t tty_read(unsigned char *buf, size_t max); |