00001 #ifndef _GPXE_ERRORTAB_H 00002 #define _GPXE_ERRORTAB_H 00003 00004 /** @file 00005 * 00006 * Error message tables 00007 * 00008 */ 00009 00010 FILE_LICENCE ( GPL2_OR_LATER ); 00011 00012 #include <gpxe/tables.h> 00013 00014 struct errortab { 00015 int errno; 00016 const char *text; 00017 }; 00018 00019 #define ERRORTAB __table ( struct errortab, "errortab" ) 00020 00021 #define __errortab __table_entry ( ERRORTAB, 01 ) 00022 00023 #endif /* _GPXE_ERRORTAB_H */
1.5.7.1