mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
ee6528788e
Submitted by: Shingo WATANABE <nabe@mobile.icc.titech.ac.jp>
26 lines
514 B
Plaintext
26 lines
514 B
Plaintext
--- include/vt.h.orig Fri Jan 24 16:08:13 1997
|
|
+++ include/vt.h Sat Aug 7 05:06:49 1999
|
|
@@ -59,7 +59,12 @@
|
|
ins,
|
|
active,
|
|
wrap,
|
|
+#if defined(__FreeBSD__)
|
|
+ text_mode,
|
|
+ cursor_key_mode;
|
|
+#else
|
|
text_mode;
|
|
+#endif
|
|
};
|
|
|
|
extern struct _con_info con;
|
|
@@ -75,6 +80,9 @@
|
|
extern void VtStart(void);
|
|
extern void VtEmu(const char*, int nchars);
|
|
extern void VtCleanup(void);
|
|
+#if defined(__FreeBSD__)
|
|
+extern int cons25tovt100(u_char *buff, int len, const int max);
|
|
+#endif
|
|
|
|
#define sjistojis(ch, cl)\
|
|
{\
|