1 #ifndef BOOT_H_ 2 #define BOOT_H_ 3 4 #include <sys/types.h> 5 6 typedef void (*boot_entry_t)(int, int, int (*)(void *), void *, u_int); 7 8 void main(void); 9 10 #ifdef HAVE_CHANGEDISK_HOOK 11 struct open_file; 12 13 void changedisk_hook(struct open_file *of); 14 #endif 15 16 void freeall(void); 17 18 #endif /* BOOT_H_ */ 19