您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

errortab.h 267B

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