2005-04-21 16:53:53 +02:00
|
|
|
/* sys/ioc_disk.h - Disk ioctl() command codes. Author: Kees J. Bot
|
|
|
|
* 23 Nov 2002
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _S_I_DISK_H
|
|
|
|
#define _S_I_DISK_H
|
|
|
|
|
|
|
|
#include <minix/ioctl.h>
|
|
|
|
|
|
|
|
#define DIOCSETP _IOW('d', 3, struct partition)
|
|
|
|
#define DIOCGETP _IOR('d', 4, struct partition)
|
|
|
|
#define DIOCEJECT _IO ('d', 5)
|
2006-06-20 10:40:26 +02:00
|
|
|
#define DIOCTIMEOUT _IORW('d', 6, int)
|
2005-09-14 03:44:13 +02:00
|
|
|
#define DIOCOPENCT _IOR('d', 7, int)
|
2005-04-21 16:53:53 +02:00
|
|
|
|
|
|
|
#endif /* _S_I_DISK_H */
|