commit 6948964112407d3284baaa072693a2519a170506
parent 67cafd90bbf90c5a5d3f8ccc8e91c216d685faab
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 28 Aug 2009 09:05:24 +0000
stuff
Diffstat:
2 files changed, 5 insertions(+), 3 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 0x00052300
+#define EXTRACTOR_VERSION 0x00052301
#include <stdio.h>
@@ -190,6 +190,7 @@ typedef enum {
EXTRACTOR_DISC_NUMBER = 134,
EXTRACTOR_GNUNET_DISPLAY_TYPE = 135,
EXTRACTOR_GNUNET_ECBC_URI = 136,
+ EXTRACTOR_GNUNET_FULL_DATA = 137
} EXTRACTOR_KeywordType;
/**
diff --git a/src/main/extractor.c b/src/main/extractor.c
@@ -179,11 +179,12 @@ static const char *keywordTypes[] = {
gettext_noop("disc number"), /* 134 */
gettext_noop("preferred display style (GNUnet)"),
gettext_noop("GNUnet URI of ECBC data"),
- NULL,
+ gettext_noop("Complete file data (for non-binary files only)"),
+ NULL
};
/* the number of keyword types (for bounds-checking) */
-#define HIGHEST_TYPE_NUMBER 137
+#define HIGHEST_TYPE_NUMBER 138
#ifdef HAVE_LIBOGG
#if HAVE_VORBIS