Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

errortab.h 286B

1234567891011121314151617181920
  1. #ifndef _GPXE_ERRORTAB_H
  2. #define _GPXE_ERRORTAB_H
  3. /** @file
  4. *
  5. * Error message tables
  6. *
  7. */
  8. #include <errno.h>
  9. #include <gpxe/tables.h>
  10. struct errortab {
  11. int errno;
  12. const char *text;
  13. };
  14. #define __errortab __table ( struct errortab, errortab, 01 )
  15. #endif /* _GPXE_ERRORTAB_H */