diff libgaim/pluginpref.h @ 14720:e68e20e6a653

[gaim-migrate @ 17474] As far as I can tell GaimStringFormatType is only used by the pluginpref api and was added as part of a change to the pluginpref stuff, so why it was put in prefs.h I'm not sure, pluginpref.h seems like a better place to me. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Fri, 13 Oct 2006 00:28:18 +0000
parents 60b1bc8dbf37
children
line wrap: on
line diff
--- a/libgaim/pluginpref.h	Fri Oct 13 00:26:54 2006 +0000
+++ b/libgaim/pluginpref.h	Fri Oct 13 00:28:18 2006 +0000
@@ -29,6 +29,16 @@
 typedef struct _GaimPluginPrefFrame		GaimPluginPrefFrame;
 typedef struct _GaimPluginPref			GaimPluginPref;
 
+/**
+ * String format for preferences.
+ */
+typedef enum
+{
+	GAIM_STRING_FORMAT_TYPE_NONE      = 0,
+	GAIM_STRING_FORMAT_TYPE_MULTILINE = 1 << 0,
+	GAIM_STRING_FORMAT_TYPE_HTML      = 1 << 1
+} GaimStringFormatType;
+
 typedef enum {
 	GAIM_PLUGIN_PREF_NONE,
 	GAIM_PLUGIN_PREF_CHOICE,