Framework for exporting system header to user space (#59)
[lunaix-os.git] / lunaix-os / includes / usr / lunaix / device.h
1 #ifndef _LUNAIX_UHDR_UDEVICE_H
2 #define _LUNAIX_UHDR_UDEVICE_H
3
4 #include "ioctl.h"
5
6 struct dev_info
7 {
8     unsigned int extra;
9
10     struct
11     {
12         unsigned int group;
13         unsigned int unique;
14     } dev_id;
15
16     struct
17     {
18         char* buf;
19         unsigned int buf_len;
20     } dev_name;
21 };
22
23 #endif /* _LUNAIX_UHDR_UDEVICE_H */