1 /* sys/ioc_disk.h - Disk ioctl() command codes. Author: Kees J. Bot
9 #include <minix/ioctl.h>
11 #define DIOCSETP _IOW('d', 3, struct partition)
12 #define DIOCGETP _IOR('d', 4, struct partition)
13 #define DIOCEJECT _IO ('d', 5)
14 #define DIOCTIMEOUT _IORW('d', 6, int)
15 #define DIOCOPENCT _IOR('d', 7, int)
16 #define DIOCFLUSH _IO ('d', 8)
17 #define DIOCSETWC _IOW('d', 9, int)
18 #define DIOCGETWC _IOR('d', 10, int)
20 #endif /* _S_I_DISK_H */