Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920
  1. #ifndef _GPXE_SANBOOT_H
  2. #define _GPXE_SANBOOT_H
  3. FILE_LICENCE ( GPL2_OR_LATER );
  4. #include <gpxe/tables.h>
  5. struct sanboot_protocol {
  6. const char *prefix;
  7. int ( * boot ) ( const char *root_path );
  8. };
  9. #define SANBOOT_PROTOCOLS \
  10. __table ( struct sanboot_protocol, "sanboot_protocols" )
  11. #define __sanboot_protocol __table_entry ( SANBOOT_PROTOCOLS, 01 )
  12. extern int keep_san ( void );
  13. #endif /* _GPXE_SANBOOT_H */