Mercurial > pidgin.yaz
diff src/stringref.h @ 7791:21be2d9e8399
[gaim-migrate @ 8437]
what I came up with while disconnected
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Sun, 07 Dec 2003 18:44:49 +0000 |
parents | 203a18e56dc6 |
children | fa6395637e2c |
line wrap: on
line diff
--- a/src/stringref.h Sun Dec 07 16:41:24 2003 +0000 +++ b/src/stringref.h Sun Dec 07 18:44:49 2003 +0000 @@ -33,17 +33,17 @@ * directly! */ typedef struct _GaimStringref { - unsigned int ref; /**< The reference count of this string. - * Note that reference counts are only - * 31 bits, and the high-order bit - * indicates whether this string is up - * for GC at the next idle handler... - * But you aren't going to touch this - * anyway, right? */ - char value[0]; /**< The string contained in this ref. - * Notice that it is simply "hanging - * off the end" of the ref ... this - * is to save an allocation. */ + guint32 ref; /**< The reference count of this string. + * Note that reference counts are only + * 31 bits, and the high-order bit + * indicates whether this string is up + * for GC at the next idle handler... + * But you aren't going to touch this + * anyway, right? */ + char value[0]; /**< The string contained in this ref. + * Notice that it is simply "hanging + * off the end" of the ref ... this + * is to save an allocation. */ } GaimStringref; /**