summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/nvo.h
blob: b51431aa9a81a7903923ac290700f5941e2dbbce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _GPXE_NVO_H
#define _GPXE_NVO_H

/** @file
 *
 * Non-volatile stored options
 *
 */

struct nvs_device;
struct dhcp_option_block;

struct nvs_options {
	struct nvs_device *nvs;
	struct dhcp_option_block *options;
};

extern int nvo_register ( struct nvs_options *nvo );
extern void nvo_unregister ( struct nvs_options *nvo );

#endif /* _GPXE_NVO_H */