/* This is a function each platform must define to register all available * system drivers. */ void _al_register_system_interfaces(void) { #ifdef ALLEGRO_WITH_XWINDOWS ALLEGRO_SYSTEM_INTERFACE **add; /* This is the only system driver right now */ add = _al_vector_alloc_back(&_al_system_interfaces); *add = _al_system_xglx_driver(); #endif }
/* This is a function each platform must define to register all available * system drivers. */ void _al_register_system_interfaces(void) { ALLEGRO_SYSTEM_INTERFACE **add; #if defined ALLEGRO_UNIX /* This is the only system driver right now */ add = _al_vector_alloc_back(&_al_system_interfaces); *add = _al_system_xglx_driver(); #endif }
/* This is a function each platform must define to register all available * system drivers. */ void _al_register_system_interfaces(void) { ALLEGRO_SYSTEM_INTERFACE **add; #if defined ALLEGRO_WITH_XWINDOWS && !defined ALLEGRO_RASPBERRYPI add = _al_vector_alloc_back(&_al_system_interfaces); *add = _al_system_xglx_driver(); #elif defined ALLEGRO_RASPBERRYPI add = _al_vector_alloc_back(&_al_system_interfaces); *add = _al_system_raspberrypi_driver(); #endif }