blob: 98197d4702c3d765a7b2e00f803f228f8531ca0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* 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;
const char *prefix;
unsigned int debug:1;
unsigned int interface:1;
unsigned int usepci:1;
};
#endif /* GLUE_H_INCLUDED */
|