summaryrefslogtreecommitdiff
path: root/telepathy-glib/debug-ansi.h
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-10-20 17:59:13 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-10-21 11:51:31 +0100
commit3434bbbf21533a1da316cf24136cb9b7feb532ff (patch)
treedf18d1b3e7617ff3e87659a35ecd7a05cfa3dcdb /telepathy-glib/debug-ansi.h
parent0744cfa5762de5a04d1bd02ebc7a0201d578dde2 (diff)
downloadtelepathy-glib-3434bbbf21533a1da316cf24136cb9b7feb532ff.tar.gz
debug-ansi: deprecate
Diffstat (limited to 'telepathy-glib/debug-ansi.h')
-rw-r--r--telepathy-glib/debug-ansi.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/telepathy-glib/debug-ansi.h b/telepathy-glib/debug-ansi.h
index f805a1b55..90899eb2e 100644
--- a/telepathy-glib/debug-ansi.h
+++ b/telepathy-glib/debug-ansi.h
@@ -5,124 +5,168 @@
*
* This header provides some ANSI escapes you can use to make debug messages
* more colourful. Please use sparingly.
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#ifndef __TP_DEBUG_ANSI_H__
#define __TP_DEBUG_ANSI_H__
+#ifndef TP_DISABLE_DEPRECATED
+
/**
* TP_ANSI_RESET:
*
* Reset all attributes.
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_RESET "\x1b[0m"
/**
* TP_ANSI_BOLD_ON:
*
* Set the bold attribute.
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BOLD_ON "\x1b[1m"
/**
* TP_ANSI_INVERSE_ON:
*
* Set the inverse video attribute.
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_INVERSE_ON "\x1b[7m"
/**
* TP_ANSI_BOLD_OFF:
*
* Clear the bold attribute.
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BOLD_OFF "\x1b[22m"
/**
* TP_ANSI_FG_BLACK:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_BLACK "\x1b[30m"
/**
* TP_ANSI_FG_RED:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_RED "\x1b[31m"
/**
* TP_ANSI_FG_GREEN:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_GREEN "\x1b[32m"
/**
* TP_ANSI_FG_YELLOW:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_YELLOW "\x1b[33m"
/**
* TP_ANSI_FG_BLUE:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_BLUE "\x1b[34m"
/**
* TP_ANSI_FG_MAGENTA:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_MAGENTA "\x1b[35m"
/**
* TP_ANSI_FG_CYAN:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_CYAN "\x1b[36m"
/**
* TP_ANSI_FG_WHITE:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_FG_WHITE "\x1b[37m"
/**
* TP_ANSI_BG_RED:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_RED "\x1b[41m"
/**
* TP_ANSI_BG_GREEN:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_GREEN "\x1b[42m"
/**
* TP_ANSI_BG_YELLOW:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_YELLOW "\x1b[43m"
/**
* TP_ANSI_BG_BLUE:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_BLUE "\x1b[44m"
/**
* TP_ANSI_BG_MAGENTA:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_MAGENTA "\x1b[45m"
/**
* TP_ANSI_BG_CYAN:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_CYAN "\x1b[46m"
/**
* TP_ANSI_BG_WHITE:
*
* <!---->
+ *
+ * Deprecated: 0.13.UNRELEASED
*/
#define TP_ANSI_BG_WHITE "\x1b[47m"
+#endif
+
#endif /* __TP_DEBUG_ANSI_H__ */