Mercurial > audlegacy-plugins
comparison src/evdev-plug/ed.h @ 1656:95fab0931d47
fix evdev plugin
| author | mf0102 <0102@gmx.at> |
|---|---|
| date | Fri, 07 Sep 2007 14:41:18 +0200 |
| parents | 2649ba83333b |
| children | 3134a0987162 |
comparison
equal
deleted
inserted
replaced
| 1655:cf2a07573013 | 1656:95fab0931d47 |
|---|---|
| 30 void ed_config ( void ); | 30 void ed_config ( void ); |
| 31 void ed_about ( void ); | 31 void ed_about ( void ); |
| 32 | 32 |
| 33 GeneralPlugin ed_gp = | 33 GeneralPlugin ed_gp = |
| 34 { | 34 { |
| 35 NULL, /* handle */ | 35 .description = "EvDev-Plug " ED_VERSION_PLUGIN, |
| 36 NULL, /* filename */ | 36 .init = ed_init, |
| 37 "EvDev-Plug " ED_VERSION_PLUGIN, /* description */ | 37 .about = ed_about, |
| 38 ed_init, /* init */ | 38 .configure = ed_config, |
| 39 ed_about, /* about */ | 39 .cleanup = ed_cleanup |
| 40 ed_config, /* configure */ | |
| 41 ed_cleanup /* cleanup */ | |
| 42 }; | 40 }; |
| 43 | 41 |
| 44 #endif /* !_I_ED_H */ | 42 #endif /* !_I_ED_H */ |
