//<>< (C) 2016-2017 C. N. Lohr, MOSTLY Under MIT/x11 License. // #ifndef _SURVIVE_INTERNAL_H #define _SURVIVE_INTERNAL_H #include #include #include #include //Driver registration #define MAX_DRIVERS 32 void * GetDriver( const char * name ); const char * GetDriverNameMatching( const char * prefix, int place ); void ListDrivers(); void *GetDriverByConfig(SurviveContext *ctx, const char *name, const char *configname, const char *configdef, int verbose); #endif