svn path=/trunk/; revision=7038
This commit is contained in:
Matthias Clasen 2008-06-15 00:03:54 +00:00
parent 4c78992dbf
commit 7ba2244a2d
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2008-06-14 Matthias Clasen <mclasen@redhat.com>
* glib/gchecksum.h: Add docs.
2008-06-13 Matthias Clasen <mclasen@redhat.com>
Bug 538119 glib's mainloop leaks a pipe to sub-processes

View File

@ -49,6 +49,15 @@ typedef enum {
G_CHECKSUM_SHA256
} GChecksumType;
/**
* GChecksum:
*
* An opaque structure representing a checksumming operation.
* To create a new GChecksum, use g_checksum_new(). To free
* a GChecksum, use g_checksum_free().
*
* Since: 2.16
*/
typedef struct _GChecksum GChecksum;
gssize g_checksum_type_get_length (GChecksumType checksum_type);