iPXE
skeleton.h
Go to the documentation of this file.
1#ifndef _SKELETON_H
2#define _SKELETON_H
3
4/** @file
5 *
6 * Skeleton network driver
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11
12/** Skeleton BAR size */
13#define SKELETON_BAR_SIZE 256
14
15/** A skeleton network card */
17 /** Registers */
18 void *regs;
19};
20
21#endif /* _SKELETON_H */
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
A skeleton network card.
Definition skeleton.h:16
void * regs
Registers.
Definition skeleton.h:18