# HG changeset patch # User nenolod # Date 1180048367 25200 # Node ID 247737fdf8ce2b80d0bade218e990700dd15acb9 # Parent 91f6c4647bae924b98bb1cb0bbaca0fd39f0458c [svn] - esd: transition to plugin API v2 diff -r 91f6c4647bae -r 247737fdf8ce ChangeLog --- a/ChangeLog Thu May 24 16:07:16 2007 -0700 +++ b/ChangeLog Thu May 24 16:12:47 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-24 23:07:16 +0000 William Pitcock + revision [2318] + - filewriter: transition to plugin API v2 + + trunk/src/filewriter/filewriter.c | 10 ++++------ + 1 file changed, 4 insertions(+), 6 deletions(-) + + 2007-05-24 22:53:40 +0000 William Pitcock revision [2316] - conversion to yaz's style was not needed, just API v2 ;p diff -r 91f6c4647bae -r 247737fdf8ce src/esd/esd.c --- a/src/esd/esd.c Thu May 24 16:07:16 2007 -0700 +++ b/src/esd/esd.c Thu May 24 16:12:47 2007 -0700 @@ -1,5 +1,4 @@ - -/* xmms - esound outputmkdir plugin +/* xmms - esound output plugin * Copyright (C) 1999 Galex Yen * * this program is free software @@ -24,7 +23,7 @@ OutputPlugin esd_op = { NULL, NULL, - NULL, /* Description */ + "ESD Output Plugin", esdout_init, NULL, esdout_about, @@ -43,9 +42,6 @@ esdout_tell }; -OutputPlugin * -get_oplugin_info(void) -{ - esd_op.description = g_strdup_printf(_("eSound Output Plugin")); - return &esd_op; -} +OutputPlugin *esd_oplist[] = { &esd_op, NULL }; + +DECLARE_PLUGIN(esd, NULL, NULL, NULL, esd_oplist, NULL, NULL, NULL);