diff options
author | Josh Coalson <jcoalson@users.sourceforce.net> | 2007-08-21 08:07:29 +0000 |
---|---|---|
committer | Josh Coalson <jcoalson@users.sourceforce.net> | 2007-08-21 08:07:29 +0000 |
commit | a8bd44b80e4ba645c2c254291ac283fa47b3a01a (patch) | |
tree | ea3e5bea71ad7778ee20932896582d9f81471beb /include | |
parent | f178b143238fd8fd34f38e2f0d8bddeca4de530f (diff) | |
download | flac-a8bd44b80e4ba645c2c254291ac283fa47b3a01a.tar.gz |
#include for off_t, minor comments
Diffstat (limited to 'include')
-rw-r--r-- | include/FLAC/metadata.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/FLAC/metadata.h b/include/FLAC/metadata.h index a8f3d2bc..f371f96f 100644 --- a/include/FLAC/metadata.h +++ b/include/FLAC/metadata.h @@ -32,6 +32,7 @@ #ifndef FLAC__METADATA_H #define FLAC__METADATA_H +#include <stdio.h> /* for off_t */ #include "export.h" #include "callback.h" #include "format.h" @@ -545,7 +546,8 @@ FLAC_API FLAC__bool FLAC__metadata_simple_iterator_get_application_id(FLAC__Meta * \a iterator has been successfully initialized with * FLAC__metadata_simple_iterator_init() * \retval FLAC__StreamMetadata* - * The current metadata block. + * The current metadata block, or \c NULL if there was a memory + * allocation error. */ FLAC_API FLAC__StreamMetadata *FLAC__metadata_simple_iterator_get_block(FLAC__Metadata_SimpleIterator *iterator); |