c44a193d0d
Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
17 lines
259 B
C
17 lines
259 B
C
#ifndef _GPXE_SETTINGS_UI_H
|
|
#define _GPXE_SETTINGS_UI_H
|
|
|
|
/** @file
|
|
*
|
|
* Option configuration console
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
struct settings;
|
|
|
|
extern int settings_ui ( struct settings *settings ) __nonnull;
|
|
|
|
#endif /* _GPXE_SETTINGS_UI_H */
|