# HG changeset patch # User William Ehlhardt # Date 1180497356 0 # Node ID 4c1f8041e57379e1c4267c0d5566389caa19ab10 # Parent 7ed10c05182095493ba25a4c7893fb47a674c41c - Add documentation for the internal CipherContext struct diff -r 7ed10c051820 -r 4c1f8041e573 libpurple/cipher.c --- a/libpurple/cipher.c Tue May 29 21:51:53 2007 +0000 +++ b/libpurple/cipher.c Wed May 30 03:55:56 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 */ }; /******************************************************************************