libextractor

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

commit 28f2d2dc169a07a7dc4dbfa0b33978e2bdcbd910
parent 200062e46dcf35f8d6f639360d4ab14b5433f206
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  3 Jan 2011 15:59:48 +0000

new constant

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

diff --git a/src/include/extractor.h b/src/include/extractor.h @@ -32,7 +32,7 @@ extern "C" { * 0.2.6-1 => 0x00020601 * 4.5.2-0 => 0x04050200 */ -#define EXTRACTOR_VERSION 0x00060200 +#define EXTRACTOR_VERSION 0x00060201 #include <stdio.h> @@ -316,8 +316,9 @@ enum EXTRACTOR_MetaType EXTRACTOR_METATYPE_RIPPER = 177, EXTRACTOR_METATYPE_PRODUCER = 178, EXTRACTOR_METATYPE_GROUP = 179, + EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME = 180, - EXTRACTOR_METATYPE_LAST = 180 + EXTRACTOR_METATYPE_LAST = 181 }; diff --git a/src/main/extractor_metatypes.c b/src/main/extractor_metatypes.c @@ -433,6 +433,8 @@ static const struct MetaTypeDescription meta_type_descriptions[] = { { gettext_noop ("group"), gettext_noop ("name of the group or band") }, /* 180 */ + { gettext_noop ("original filename"), + gettext_noop ("name of the original file (reserved for GNUnet)") }, { gettext_noop ("last"), gettext_noop ("last") } };