libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit 8322dfd5adc84bf1624fe3556e89dd40bdf0e3a4
parent 39dc26131c25be9dbbf40dd9ad7a37db441aeb53
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 21 Mar 2005 17:42:39 +0000

fixing mantis #789

Diffstat:
Msrc/include/extractor.h | 1+
Msrc/main/extractor.c | 5+++--
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/include/extractor.h b/src/include/extractor.h @@ -121,6 +121,7 @@ typedef enum { EXTRACTOR_MEDIA_TYPE = 68, EXTRACTOR_CONTACT = 69, EXTRACTOR_THUMBNAIL_DATA = 70, + EXTRACTOR_PUBLICATION_DATE = 71, } EXTRACTOR_KeywordType; /** diff --git a/src/main/extractor.c b/src/main/extractor.c @@ -1,6 +1,6 @@ /* This file is part of libextractor. - (C) 2002 - 2005 Vidyut Samanta and Christian Grothoff + (C) 2002, 2003, 2004, 2005 Vidyut Samanta and Christian Grothoff libextractor is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -105,11 +105,12 @@ static const char *keywordTypes[] = { gettext_noop("media type"), gettext_noop("contact"), gettext_noop("binary thumbnail data"), + gettext_noop("publication date"), NULL, }; /* the number of keyword types (for bounds-checking) */ -#define HIGHEST_TYPE_NUMBER 71 +#define HIGHEST_TYPE_NUMBER 72 #ifdef HAVE_LIBOGG #if HAVE_VORBIS