diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-17 09:47:43 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2008-04-17 09:47:43 +0800 |
commit | 9e11577128c92707c2db3f3e44814a3be0d7bf6f (patch) | |
tree | 25d438fbc3009315f1d9c54764225325921a2ccc /include/proto.h | |
parent | e20bd69d66148c34fee47e1f1f372963a871c047 (diff) | |
download | pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.tar pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.tar.gz pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.tar.bz2 pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.tar.lz pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.tar.xz pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.tar.zst pttbbs-9e11577128c92707c2db3f3e44814a3be0d7bf6f.zip |
- (internal) visio: add vgets
- (internal) add key name KEY_BS2
- (internal) move getDBCSstatus to DBCS_Status
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@4174 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include/proto.h')
-rw-r--r-- | include/proto.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/include/proto.h b/include/proto.h index 0b2cebde..674fea53 100644 --- a/include/proto.h +++ b/include/proto.h @@ -577,12 +577,16 @@ int inansistr(char *str, int n); void move_ansi(int y, int x); void getyx_ansi(int *py, int *px); void region_scroll_up(int top, int bottom); + +#ifndef USE_PFTERM +# define SOLVE_ANSI_CACHE() {} +#else // !USE_PFTERM +# define SOLVE_ANSI_CACHE() { outs(" \b"); } +#endif // !USE_PFTERM + #define HAVE_GRAYOUT void grayout(int start, int end, int level); -void save_cursor(void); -void restore_cursor(void); - /* AIDS */ typedef uint64_t aidu_t; aidu_t fn2aidu(char *fn); @@ -706,9 +710,8 @@ int u_cloak(void); int u_list(void); #ifdef DBCSAWARE int u_detectDBCSAwareEvilClient(); -int getDBCSstatus(unsigned char *s, int pos); -#define ISDBCSAWARE() (cuser.uflag & DBCSAWARE_FLAG) #endif +#define ISDBCSAWARE() (cuser.uflag & DBCSAWARE_FLAG) /* vote */ void b_suckinfile(FILE *fp, char *fname); |