Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

sanboot.h 417B

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 */