diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:09 +0200 |
commit | e754ed01a77a0dfb5039148cd4990a669ea9024c (patch) | |
tree | e759b3b1aae66fa75bbe36aee62476d3cb87d876 /src/decoder_list.h | |
parent | 772d3da98a31b5cefa9d4de0dd5056fb19eae00f (diff) | |
download | mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.tar.gz mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.tar.xz mpd-e754ed01a77a0dfb5039148cd4990a669ea9024c.zip |
renamed functions in decoder_list.h
InputPlugin to decoder_plugin, and no camelCase.
Diffstat (limited to 'src/decoder_list.h')
-rw-r--r-- | src/decoder_list.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/decoder_list.h b/src/decoder_list.h index 4f3bf3595..dc7c7c590 100644 --- a/src/decoder_list.h +++ b/src/decoder_list.h @@ -24,23 +24,25 @@ struct decoder_plugin; /* individual functions to load/unload plugins */ -void loadInputPlugin(struct decoder_plugin * inputPlugin); -void unloadInputPlugin(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 *getInputPluginFromSuffix(const char *suffix, unsigned int next); +struct decoder_plugin *decoder_plugin_from_suffix(const char *suffix, + unsigned int next); -struct decoder_plugin *getInputPluginFromMimeType(const char *mimeType, unsigned int next); +struct decoder_plugin *decoder_plugin_from_mime_type(const char *mimeType, + unsigned int next); -struct decoder_plugin *getInputPluginFromName(const char *name); +struct decoder_plugin *decoder_plugin_from_name(const char *name); -void printAllInputPluginSuffixes(FILE * fp); +void decoder_plugin_print_all_suffixes(FILE * fp); /* this is where we "load" all the "plugins" ;-) */ -void initInputPlugins(void); +void decoder_plugin_init_all(void); /* this is where we "unload" all the "plugins" */ -void finishInputPlugins(void); +void decoder_plugin_deinit_all(void); #endif |