aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-08-02 19:51:29 +0000
committerChristian Grothoff <christian@grothoff.org>2012-08-02 19:51:29 +0000
commit15d3cc42d0780fb0178c2d0073d38e500890a836 (patch)
tree6aff062e39d2614af0d8108a6e5a8542a4fb5d0a
parent7a3b043383533db5515daf21a9eae2ee24613030 (diff)
downloadlibextractor-15d3cc42d0780fb0178c2d0073d38e500890a836.tar.gz
libextractor-15d3cc42d0780fb0178c2d0073d38e500890a836.zip
-fix
-rw-r--r--doc/version.texi4
-rw-r--r--src/main/extractor_ipc.c2
-rw-r--r--src/main/extractor_ipc.h8
3 files changed, 7 insertions, 7 deletions
diff --git a/doc/version.texi b/doc/version.texi
index 90fbb01..737fef7 100644
--- a/doc/version.texi
+++ b/doc/version.texi
@@ -1,4 +1,4 @@
1@set UPDATED 12 May 2012 1@set UPDATED 29 January 2012
2@set UPDATED-MONTH May 2012 2@set UPDATED-MONTH January 2012
3@set EDITION 0.6.3 3@set EDITION 0.6.3
4@set VERSION 0.6.3 4@set VERSION 0.6.3
diff --git a/src/main/extractor_ipc.c b/src/main/extractor_ipc.c
index 50cf072..a48249a 100644
--- a/src/main/extractor_ipc.c
+++ b/src/main/extractor_ipc.c
@@ -108,7 +108,7 @@ EXTRACTOR_IPC_process_reply_ (struct EXTRACTOR_PluginList *plugin,
108 if (meta.meta_type >= EXTRACTOR_metatype_get_max ()) 108 if (meta.meta_type >= EXTRACTOR_metatype_get_max ())
109 meta.meta_type = EXTRACTOR_METATYPE_UNKNOWN; 109 meta.meta_type = EXTRACTOR_METATYPE_UNKNOWN;
110 proc (proc_cls, 110 proc (proc_cls,
111 plugin, 111 plugin,
112 (enum EXTRACTOR_MetaType) meta.meta_type, 112 (enum EXTRACTOR_MetaType) meta.meta_type,
113 (enum EXTRACTOR_MetaFormat) meta.meta_format, 113 (enum EXTRACTOR_MetaFormat) meta.meta_format,
114 mime_type, value, meta.value_size); 114 mime_type, value, meta.value_size);
diff --git a/src/main/extractor_ipc.h b/src/main/extractor_ipc.h
index 8e9a162..e2899a6 100644
--- a/src/main/extractor_ipc.h
+++ b/src/main/extractor_ipc.h
@@ -424,17 +424,17 @@ EXTRACTOR_IPC_channel_send_ (struct EXTRACTOR_Channel *channel,
424 * @param plugin plugin of the channel sending the message 424 * @param plugin plugin of the channel sending the message
425 * @param meta_type type of the meta data 425 * @param meta_type type of the meta data
426 * @param meta_format format of the meta data 426 * @param meta_format format of the meta data
427 * @param value_len number of bytes in 'value'
428 * @param value 'data' send from the plugin
429 * @param mime mime string send from the plugin 427 * @param mime mime string send from the plugin
428 * @param value 'data' send from the plugin
429 * @param value_len number of bytes in 'value'
430 */ 430 */
431typedef void (*EXTRACTOR_ChannelMessageProcessor) (void *cls, 431typedef void (*EXTRACTOR_ChannelMessageProcessor) (void *cls,
432 struct EXTRACTOR_PluginList *plugin, 432 struct EXTRACTOR_PluginList *plugin,
433 enum EXTRACTOR_MetaType meta_type, 433 enum EXTRACTOR_MetaType meta_type,
434 enum EXTRACTOR_MetaFormat meta_format, 434 enum EXTRACTOR_MetaFormat meta_format,
435 size_t value_len, 435 const char *mime,
436 const void *value, 436 const void *value,
437 const char *mime); 437 size_t value_len);
438 438
439 439
440/** 440/**