comparison src/audiocompress/audacious-glue.c @ 1637:ed5d7f51ac38

audiocompress: C99 initialisers
author William Pitcock <nenolod@atheme.org>
date Fri, 07 Sep 2007 05:43:30 -0500
parents 761e17b23e0c
children f6f5603a0954
comparison
equal deleted inserted replaced
1636:16c1ca141387 1637:ed5d7f51ac38
43 43
44 static int inited = 0; 44 static int inited = 0;
45 45
46 46
47 static EffectPlugin xmms_plugin = { 47 static EffectPlugin xmms_plugin = {
48 NULL, NULL, 48 .description = "AudioCompressor AGC plugin",
49 "AudioCompressor AGC plugin", 49 .init = myInit,
50 myInit, 50 .cleanup = myCleanup,
51 myCleanup, 51 .about = myAbout,
52 myAbout, 52 .configure = myPrefs,
53 myPrefs, 53 .mod_samples = myModify,
54 myModify,
55 NULL
56 }; 54 };
57 55
58 EffectPlugin *audiocompress_eplist[] = { &xmms_plugin, NULL }; 56 EffectPlugin *audiocompress_eplist[] = { &xmms_plugin, NULL };
59 57
60 DECLARE_PLUGIN(audiocompress, NULL, NULL, NULL, NULL, audiocompress_eplist, NULL, NULL, NULL); 58 DECLARE_PLUGIN(audiocompress, NULL, NULL, NULL, NULL, audiocompress_eplist, NULL, NULL, NULL);