diff options
Diffstat (limited to '')
-rw-r--r-- | src/decoder_api.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder_api.h b/src/decoder_api.h index bb8517227..c82e01f7e 100644 --- a/src/decoder_api.h +++ b/src/decoder_api.h @@ -70,7 +70,7 @@ typedef int (*InputPlugin_fileDecodeFunc) (struct decoder *, * or read */ typedef MpdTag *(*InputPlugin_tagDupFunc) (char *file); -typedef struct _InputPlugin { +struct decoder_plugin { const char *name; InputPlugin_initFunc initFunc; InputPlugin_finishFunc finishFunc; @@ -85,7 +85,7 @@ typedef struct _InputPlugin { /* last element in these arrays must always be a NULL: */ const char *const*suffixes; const char *const*mimeTypes; -} InputPlugin; +}; /** |