diff options
author | Max Kellermann <max@duempel.org> | 2009-12-14 22:29:46 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-14 23:16:18 +0100 |
commit | 786c1f035f99f3a396dfd52a469601163de3e9af (patch) | |
tree | 152f9a1e628d1eb8bdb0f67fa6348b88d98cfb7d /src/input_plugin.h | |
parent | f70d2f58a1ac221d488a4fbb2fda39d83048ec53 (diff) | |
download | mpd-786c1f035f99f3a396dfd52a469601163de3e9af.tar.gz mpd-786c1f035f99f3a396dfd52a469601163de3e9af.tar.xz mpd-786c1f035f99f3a396dfd52a469601163de3e9af.zip |
input_plugin: method init() returns errors with GError
Not used by any plugin currently, but this eliminates the g_error()
call in input_plugin_config(), so it's worth it.
Diffstat (limited to 'src/input_plugin.h')
-rw-r--r-- | src/input_plugin.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input_plugin.h b/src/input_plugin.h index f38174d42..b0ba37959 100644 --- a/src/input_plugin.h +++ b/src/input_plugin.h @@ -35,10 +35,12 @@ struct input_plugin { /** * Global initialization. This method is called when MPD starts. * + * @param error_r location to store the error occuring, or + * NULL to ignore errors * @return true on success, false if the plugin should be * disabled */ - bool (*init)(const struct config_param *param); + bool (*init)(const struct config_param *param, GError **error_r); /** * Global deinitialization. Called once before MPD shuts |