git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
3045113db0bc14ea0ffda766498d90c7bc3e34d0
[lunaix-os.git]
/
lunaix-os
/
includes
/
usr
/
lunaix
/
device.h
1
#ifndef __LUNAIX_UDEVICE_H
2
#define __LUNAIX_UDEVICE_H
3
4
#include "ioctl_defs.h"
5
6
struct dev_info
7
{
8
unsigned int extra;
9
10
struct
11
{
12
unsigned int meta;
13
unsigned int device;
14
unsigned int variant;
15
} dev_id;
16
17
struct
18
{
19
char* buf;
20
unsigned int buf_len;
21
} dev_name;
22
};
23
24
#endif /* __LUNAIX_UDEVICE_H */