# HG changeset patch # User William Ehlhardt # Date 1180497451 0 # Node ID 103a37dd9398bbd29158465eeec0bc0044c1eae5 # Parent a3e68bb05594cf3297c009f53e178e9cef001fe8 applied changes from b0f6005b1330af13bce0bcb189a2c887036b5ea3 through 55f634c71a92c8052be5423a1578a21810e3fc48 diff -r a3e68bb05594 -r 103a37dd9398 libpurple/cipher.c --- 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 */ }; /******************************************************************************