decoder_list: convert to C++

This commit is contained in:
Max Kellermann
2013-01-30 17:18:48 +01:00
parent 8142080633
commit 01dd540d7e
14 changed files with 25 additions and 30 deletions

View File

@@ -190,6 +190,10 @@ decoder_plugin_container_scan( const struct decoder_plugin *plugin,
return plugin->container_scan(pathname, tnum);
}
#ifdef __cplusplus
extern "C" {
#endif
/**
* Does the plugin announce the specified file name suffix?
*/
@@ -204,4 +208,8 @@ bool
decoder_plugin_supports_mime_type(const struct decoder_plugin *plugin,
const char *mime_type);
#ifdef __cplusplus
}
#endif
#endif