comparison src/aosd/aosd.h @ 1655:cf2a07573013

fixed AOSD plugin
author mf0102 <0102@gmx.at>
date Fri, 07 Sep 2007 14:39:24 +0200
parents 2649ba83333b
children 3134a0987162
comparison
equal deleted inserted replaced
1654:1b5f236208d8 1655:cf2a07573013
33 void aosd_configure ( void ); 33 void aosd_configure ( void );
34 void aosd_about ( void ); 34 void aosd_about ( void );
35 35
36 GeneralPlugin aosd_gp = 36 GeneralPlugin aosd_gp =
37 { 37 {
38 NULL, /* handle */ 38 .description= "Audacious OSD " AOSD_VERSION_PLUGIN,
39 NULL, /* filename */ 39 .init = aosd_init,
40 "Audacious OSD " AOSD_VERSION_PLUGIN, /* description */ 40 .about = aosd_about,
41 aosd_init, /* init */ 41 .configure = aosd_configure,
42 aosd_about, /* about */ 42 .cleanup = aosd_cleanup
43 aosd_configure, /* configure */
44 aosd_cleanup /* cleanup */
45 }; 43 };
46 44
47 #endif /* !_I_AOSD_H */ 45 #endif /* !_I_AOSD_H */