comparison finch/libgnt/gntstyle.h @ 20874:acf284962b40

Add @since doxygen tags for finch/libgnt.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Wed, 10 Oct 2007 03:54:14 +0000
parents 44b4e8bd759b
children 8d73d519155a b1fa7765ca4b
comparison
equal deleted inserted replaced
20869:2a6ef74f5a4e 20874:acf284962b40
51 * @param group The name of the group in the keyfile. If @c NULL, the prgname 51 * @param group The name of the group in the keyfile. If @c NULL, the prgname
52 * will be used first, if available. Otherwise, "general" will be used. 52 * will be used first, if available. Otherwise, "general" will be used.
53 * @param key The key 53 * @param key The key
54 * 54 *
55 * @return The value of the setting as a string, or @c NULL 55 * @return The value of the setting as a string, or @c NULL
56 *
57 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
56 */ 58 */
57 char *gnt_style_get_from_name(const char *group, const char *key); 59 char *gnt_style_get_from_name(const char *group, const char *key);
58 60
59 /** 61 /**
60 * Parse a boolean preference. For example, if 'value' is "false" (ignoring case) 62 * Parse a boolean preference. For example, if 'value' is "false" (ignoring case)
61 * or "0", the return value will be @c FALSE, otherwise @c TRUE. 63 * or "0", the return value will be @c FALSE, otherwise @c TRUE.
62 * 64 *
63 * @param value The value of the boolean setting as a string 65 * @param value The value of the boolean setting as a string
64 * @return The boolean value 66 * @return The boolean value
67 *
68 * @since 2.0.0 (gnt), 2.1.0 (pidgin)
65 */ 69 */
66 gboolean gnt_style_parse_bool(const char *value); 70 gboolean gnt_style_parse_bool(const char *value);
67 71
68 /** 72 /**
69 * 73 *