aboutsummaryrefslogtreecommitdiffhomepage
path: root/output.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-05 10:44:08 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-05 10:44:08 -0800
commit063a465227f13c0d673a0d9cd82d0b9cff1f0fc2 (patch)
treeff5116ed36ca692c9793730de6f8b03abbc1c29f /output.h
parent230fb921ec89e3a30d5ccdad57beb1b77b4ab055 (diff)
Begin to rework term256 support
Diffstat (limited to 'output.h')
-rw-r--r--output.h14
1 files changed, 6 insertions, 8 deletions
diff --git a/output.h b/output.h
index 2b7d9d31..30fb2325 100644
--- a/output.h
+++ b/output.h
@@ -154,16 +154,14 @@ void output_set_writer( int (*writer)(char) );
*/
int (*output_get_writer())(char) ;
-/**
- Set the terminal name
- */
+/** Set the terminal name */
void output_set_term( const wchar_t *term );
-/**
- Return the terminal name
- */
+
+/** Return the terminal name */
const wchar_t *output_get_term();
-/** Determines whether term256 colors are supported */
-bool allow_term256(void);
+/** Sets whether term256 colors are supported */
+bool output_get_supports_term256();
+void output_set_supports_term256(bool val);
#endif