decoder_plugin: rename struct to DecoderPlugin

This commit is contained in:
Max Kellermann
2013-10-21 20:31:34 +02:00
parent 65e54f6ed1
commit 72af3c0489
55 changed files with 93 additions and 93 deletions

View File

@@ -145,7 +145,7 @@ static const struct tag_handler print_handler = {
int main(int argc, char **argv)
{
const char *decoder_name, *path;
const struct decoder_plugin *plugin;
const struct DecoderPlugin *plugin;
#ifdef HAVE_LOCALE_H
/* initialize locale */

View File

@@ -48,7 +48,7 @@ my_log_func(const gchar *log_domain, gcc_unused GLogLevelFlags log_level,
struct decoder {
const char *uri;
const struct decoder_plugin *plugin;
const struct DecoderPlugin *plugin;
bool initialized;
};