diff options
author | Christian Grothoff <christian@grothoff.org> | 2011-01-03 15:59:48 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2011-01-03 15:59:48 +0000 |
commit | 28f2d2dc169a07a7dc4dbfa0b33978e2bdcbd910 (patch) | |
tree | ce7a282b9831589f751fe51cc41051d964cbdea2 | |
parent | 200062e46dcf35f8d6f639360d4ab14b5433f206 (diff) | |
download | libextractor-28f2d2dc169a07a7dc4dbfa0b33978e2bdcbd910.tar.gz libextractor-28f2d2dc169a07a7dc4dbfa0b33978e2bdcbd910.zip |
new constant
-rw-r--r-- | src/include/extractor.h | 5 | ||||
-rw-r--r-- | src/main/extractor_metatypes.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/include/extractor.h b/src/include/extractor.h index ec6020c..f195dce 100644 --- a/src/include/extractor.h +++ b/src/include/extractor.h | |||
@@ -32,7 +32,7 @@ extern "C" { | |||
32 | * 0.2.6-1 => 0x00020601 | 32 | * 0.2.6-1 => 0x00020601 |
33 | * 4.5.2-0 => 0x04050200 | 33 | * 4.5.2-0 => 0x04050200 |
34 | */ | 34 | */ |
35 | #define EXTRACTOR_VERSION 0x00060200 | 35 | #define EXTRACTOR_VERSION 0x00060201 |
36 | 36 | ||
37 | #include <stdio.h> | 37 | #include <stdio.h> |
38 | 38 | ||
@@ -316,8 +316,9 @@ enum EXTRACTOR_MetaType | |||
316 | EXTRACTOR_METATYPE_RIPPER = 177, | 316 | EXTRACTOR_METATYPE_RIPPER = 177, |
317 | EXTRACTOR_METATYPE_PRODUCER = 178, | 317 | EXTRACTOR_METATYPE_PRODUCER = 178, |
318 | EXTRACTOR_METATYPE_GROUP = 179, | 318 | EXTRACTOR_METATYPE_GROUP = 179, |
319 | EXTRACTOR_METATYPE_GNUNET_ORIGINAL_FILENAME = 180, | ||
319 | 320 | ||
320 | EXTRACTOR_METATYPE_LAST = 180 | 321 | EXTRACTOR_METATYPE_LAST = 181 |
321 | }; | 322 | }; |
322 | 323 | ||
323 | 324 | ||
diff --git a/src/main/extractor_metatypes.c b/src/main/extractor_metatypes.c index c4b57f5..b3145d0 100644 --- a/src/main/extractor_metatypes.c +++ b/src/main/extractor_metatypes.c | |||
@@ -433,6 +433,8 @@ static const struct MetaTypeDescription meta_type_descriptions[] = { | |||
433 | { gettext_noop ("group"), | 433 | { gettext_noop ("group"), |
434 | gettext_noop ("name of the group or band") }, | 434 | gettext_noop ("name of the group or band") }, |
435 | /* 180 */ | 435 | /* 180 */ |
436 | { gettext_noop ("original filename"), | ||
437 | gettext_noop ("name of the original file (reserved for GNUnet)") }, | ||
436 | { gettext_noop ("last"), | 438 | { gettext_noop ("last"), |
437 | gettext_noop ("last") } | 439 | gettext_noop ("last") } |
438 | }; | 440 | }; |