blob: 658bfa33ce287335fe3e1cf861231bd8abaf7b4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (c) 2006 Dell, Inc.
* by Matt Domsch <Matt_Domsch@dell.com>
* Licensed under the GNU General Public license, version 2.
*/
#ifndef GLUE_H_INCLUDED
#define GLUE_H_INCLUDED
struct bios_dev_name_opts {
int argc;
char **argv;
int optind;
int sortroutine;
int namingpolicy;
unsigned int verbose:1;
unsigned int show_all:1;
unsigned int debug:1;
unsigned int interface:1;
};
#endif /* GLUE_H_INCLUDED */
|