From f41b9942af7278ab67dc799ad6c17ad74dc0aa1b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 16 Sep 2008 19:11:40 +0200 Subject: lyrics: converted in-process plugins to external programs In-process plugins are very problematic. It is much easier and flexible to move the lyrics plugins to external programs, with a trivial protocol. This is work in progress, among the things missing: - protocol specification, including exit codes - plugin installation - plugin search directory - run-time configuration (currently hard coded) - automatic polling (using glib's main loop?) - better and more robust error handling --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 52cbd4758..d54fd3717 100644 --- a/src/main.c +++ b/src/main.c @@ -25,7 +25,7 @@ #include "options.h" #include "conf.h" #include "command.h" -#include "src_lyrics.h" +#include "lyrics.h" #include "screen.h" #include "screen_utils.h" #include "strfsong.h" @@ -252,7 +252,7 @@ main(int argc, const char *argv[]) ncurses_init(); - src_lyr_init (); + lyrics_init(); /* connect to our music player daemon */ mpd = mpdclient_new(); -- cgit v1.2.3