diff options
author | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-06-07 12:13:59 +0800 |
---|---|---|
committer | piaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-06-07 12:13:59 +0800 |
commit | 6d2c21c4eb53964be68892a738e103c85421cf89 (patch) | |
tree | 18cea23db2d13fffdff2a67dd3d4c697d4bceda3 /include | |
parent | 0a67db88f03c6d12a6da5e8a61f78e4e56d88672 (diff) | |
download | pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.tar pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.tar.gz pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.tar.bz2 pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.tar.lz pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.tar.xz pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.tar.zst pttbbs-6d2c21c4eb53964be68892a738e103c85421cf89.zip |
DBCS Aware for getdata and edit.
Thanks to Michael Hsin (mhsin) for his patching edit.
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2781 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/modes.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/modes.h b/include/modes.h index 317effac..0ea53e19 100644 --- a/include/modes.h +++ b/include/modes.h @@ -148,6 +148,12 @@ #define AUTHOR_NEXT (RS_AUTHOR | RS_FORWARD) #define AUTHOR_PREV (RS_AUTHOR) +/* DBCS aware modes */ +enum { + DBCS_ASCII, + DBCS_LEADING, + DBCS_TRAILING, +} _DBCS_STATUS; enum {STRIP_ALL = 0, ONLY_COLOR, NO_RELOAD}; |