http://git.etherboot.org
/
people
/
sha0
/
gpxe.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
[tables] Incorporate table data type information into table definition
[people/sha0/gpxe.git]
/
src
/
include
/
gpxe
/
errortab.h
1
#ifndef _GPXE_ERRORTAB_H
2
#define _GPXE_ERRORTAB_H
3
4
/** @file
5
*
6
* Error message tables
7
*
8
*/
9
10
#include <gpxe/tables.h>
11
12
struct errortab {
13
int errno;
14
const char *text;
15
};
16
17
#define ERRORTAB __table ( struct errortab, "errortab" )
18
19
#define __errortab __table_entry ( ERRORTAB, 01 )
20
21
#endif /* _GPXE_ERRORTAB_H */