changeset 17465:103a37dd9398

applied changes from b0f6005b1330af13bce0bcb189a2c887036b5ea3 through 55f634c71a92c8052be5423a1578a21810e3fc48
author William Ehlhardt <williamehlhardt@gmail.com>
date Wed, 30 May 2007 03:57:31 +0000
parents a3e68bb05594
children c8ee24d443c6
files libpurple/cipher.c
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/cipher.c	Wed May 30 03:17:56 2007 +0000
+++ b/libpurple/cipher.c	Wed May 30 03:57:31 2007 +0000
@@ -1447,14 +1447,14 @@
  * Structs
  ******************************************************************************/
 struct _PurpleCipher {
-	gchar *name;
-	PurpleCipherOps *ops;
-	guint ref;
+	gchar *name;          /**< Internal name - used for searching */
+	PurpleCipherOps *ops; /**< Operations supported by this cipher */
+	guint ref;            /**< Reference count */
 };
 
 struct _PurpleCipherContext {
-	PurpleCipher *cipher;
-	gpointer data;
+	PurpleCipher *cipher; /**< Cipher this context is under */
+	gpointer data;        /**< Internal cipher state data */
 };
 
 /******************************************************************************