From 5036368f540af93372b750fe80e1c191b409a7a9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 1 Nov 2008 14:51:41 +0100 Subject: decoder: return const decoder_plugin structs The decoder_plugin structs must never change. Don't work with non-const pointers. --- src/decoder_list.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'src/decoder_list.h') diff --git a/src/decoder_list.h b/src/decoder_list.h index ea3eb7f92..2e18438fb 100644 --- a/src/decoder_list.h +++ b/src/decoder_list.h @@ -24,18 +24,19 @@ struct decoder_plugin; /* individual functions to load/unload plugins */ -void decoder_plugin_load(struct decoder_plugin * inputPlugin); -void decoder_plugin_unload(struct decoder_plugin * inputPlugin); +void decoder_plugin_load(struct decoder_plugin *inputPlugin); +void decoder_plugin_unload(struct decoder_plugin *inputPlugin); /* interface for using plugins */ -struct decoder_plugin *decoder_plugin_from_suffix(const char *suffix, - unsigned int next); +const struct decoder_plugin * +decoder_plugin_from_suffix(const char *suffix, unsigned int next); -struct decoder_plugin *decoder_plugin_from_mime_type(const char *mimeType, - unsigned int next); +const struct decoder_plugin * +decoder_plugin_from_mime_type(const char *mimeType, unsigned int next); -struct decoder_plugin *decoder_plugin_from_name(const char *name); +const struct decoder_plugin * +decoder_plugin_from_name(const char *name); void decoder_plugin_print_all_suffixes(FILE * fp); -- cgit v1.2.3