Skip to content
Snippets Groups Projects
Commit 8d30597a authored by slevy's avatar slevy
Browse files

List of all known plugins, with #ifdef's on each one's init-function.

parent de98cff1
No related branches found
No related tags found
No related merge requests found
extern void warp_init();
extern void pp_spi_init();
extern void nethack_init();
extern void sixdof_init();
extern void parti_model_init();
extern void parti_ieee_init();
void plugin_init() {
#ifdef USE_ELUMENS
pp_spi_init();
#endif
#ifdef USE_NETHACK
nethack_init();
#endif
#ifdef USE_SIXDOF /* spaceball, etc. */
sixdof_init();
#endif
#ifdef USE_MODEL
parti_model_init();
#endif
#ifdef USE_WARP
warp_init();
#endif
#ifdef USE_IEEEIO
parti_ieee_init();
#endif
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment