bbinit.h 242 B

1234567891011121314151617
  1. #ifndef BB_INIT_H
  2. #define BB_INIT_H
  3. //Simple list of stuff to get inited before main is run
  4. struct bbInit{
  5. bbInit *succ;
  6. const char *info;
  7. void (*init)();
  8. static bbInit *first;
  9. bbInit( const char *info,void(*init)() );
  10. };
  11. #endif