diff options
author | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-24 08:31:48 +0800 |
---|---|---|
committer | scw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-05-24 08:31:48 +0800 |
commit | 0d1688520003011abbcb9c37074f2c2dce88f72a (patch) | |
tree | 2c02e8a6fdcef4191ef2ae45c10fb6ce63bf2172 /include/proto.h | |
parent | 919bd1cabc73f19279bd94f8bbae1b26bee84e87 (diff) | |
download | pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.tar pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.tar.gz pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.tar.bz2 pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.tar.lz pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.tar.xz pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.tar.zst pttbbs-0d1688520003011abbcb9c37074f2c2dce88f72a.zip |
Merge from scw.angel.
*NOTE* Before running this revision, please read PttCurrent board
at telnet://ptt.cc or http://scwg.wiki.ptt.cc/-Angel
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2014 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include/proto.h')
-rw-r--r-- | include/proto.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/include/proto.h b/include/proto.h index 206593cb..a3e6c557 100644 --- a/include/proto.h +++ b/include/proto.h @@ -456,7 +456,7 @@ char *genpasswd(char *pw); /* screen */ void mouts(int y, int x, char *str); void move(int y, int x); -void outs(char *str); +void outs(const char *str); void clrtoeol(void); void clear(void); void refresh(void); @@ -468,13 +468,13 @@ void redoscr(void); void clrtoline(int line); void standout(void); void standend(void); -int edit_outs(char *text); +int edit_outs(const char *text); void outch(unsigned char c); void rscroll(void); void scroll(void); void getyx(int *y, int *x); void initscr(void); -void out_lines(char *str, int line); +void out_lines(const char *str, int line); /* stuff */ #define isprint2(ch) ((ch & 0x80) || isprint(ch)) @@ -541,6 +541,9 @@ int toconnect(char *host, int port); int toread(int fd, void *buf, int len); int towrite(int fd, void *buf, int len); #endif +#ifdef PLAY_ANGEL +void pressanykey_or_callangel(void); +#endif /* syspost */ int post_msg(char* bname, char* title, char *msg, char* author); @@ -582,6 +585,13 @@ int isvisible_uid(int tuid); int friend_stat(userinfo_t *me, userinfo_t * ui); int call_in(userinfo_t *uentp, int fri_stat); int make_connection_to_somebody(userinfo_t *uin, int timeout); +#ifdef PLAY_ANGEL +int t_changeangel(void); +void CallAngel(void); +void SwitchBeingAngel(void); +void SwitchAngelSex(int); +int t_switchangel(void); +#endif /* tmpjack */ int reg_barbq(void); |