source:
trunk/minix/include/sys/ioc_disk.h@
9
| Last change on this file since 9 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 393 bytes | |
| Line | |
|---|---|
| 1 | /* sys/ioc_disk.h - Disk ioctl() command codes. Author: Kees J. Bot |
| 2 | * 23 Nov 2002 |
| 3 | * |
| 4 | */ |
| 5 | |
| 6 | #ifndef _S_I_DISK_H |
| 7 | #define _S_I_DISK_H |
| 8 | |
| 9 | #include <minix/ioctl.h> |
| 10 | |
| 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 _IOW('d', 6, int) |
| 15 | #define DIOCOPENCT _IOR('d', 7, int) |
| 16 | |
| 17 | #endif /* _S_I_DISK_H */ |
Note:
See TracBrowser
for help on using the repository browser.