00001 /* sys/ioc_disk.h - Disk ioctl() command codes. Author: Kees J. Bot 00002 * 23 Nov 2002 00003 * 00004 */ 00005 00006 #ifndef _S_I_DISK_H 00007 #define _S_I_DISK_H 00008 00009 #include <minix/ioctl.h> 00010 00011 #define DIOCSETP _IOW('d', 3, struct partition) 00012 #define DIOCGETP _IOR('d', 4, struct partition) 00013 #define DIOCEJECT _IO ('d', 5) 00014 #define DIOCTIMEOUT _IOW('d', 6, int) 00015 #define DIOCOPENCT _IOR('d', 7, int) 00016 00017 #endif /* _S_I_DISK_H */
1.4.6