Mercurial > audlegacy-plugins
changeset 1143:48aba1f78016 trunk
[svn] - rocklight: convert to plugin2 architecture.
author | nenolod |
---|---|
date | Mon, 28 May 2007 03:03:18 -0700 |
parents | b10c821f0b4e |
children | 359cd2c10405 |
files | ChangeLog src/rocklight/rocklight.c |
diffstat | 2 files changed, 11 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon May 28 03:01:41 2007 -0700 +++ b/ChangeLog Mon May 28 03:03:18 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-28 10:01:41 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [2450] + - spectrum: convert to plugin2 architecture. + + trunk/src/spectrum/spectrum.c | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + + 2007-05-28 09:59:10 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [2448] - blur_scope: convert to plugin2 architecture.
--- a/src/rocklight/rocklight.c Mon May 28 03:01:41 2007 -0700 +++ b/src/rocklight/rocklight.c Mon May 28 03:03:18 2007 -0700 @@ -126,6 +126,6 @@ .render_freq = rocklight_render_freq }; -VisPlugin *get_vplugin_info(void) { - return &rocklight_vp; -} +VisPlugin *rocklight_vplist[] = { &rocklight_vp, NULL }; + +DECLARE_PLUGIN(rocklight, NULL, NULL, NULL, NULL, NULL, NULL, rocklight_vplist);