Changeset 6978 in vbox for trunk/include
- Timestamp:
- Feb 18, 2008 7:55:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r6849 r6978 993 993 # define VBOXGUEST_IOCTL_CODE(Function, Size) _IOC(_IOC_READ|_IOC_WRITE, 'V', (Function) | VBOXGUEST_IOCTL_FLAG, (Size)) 994 994 # define VBOXGUEST_IOCTL_CODE_FAST(Function) _IO( 'V', (Function) | VBOXGUEST_IOCTL_FLAG) 995 # define VBOXGUEST_IOCTL_STRIP_SIZE(Function) ((Function) - _IOC_SIZE((Function))) 996 997 /** @todo r=bird: Please remove. See discussion in xTracker and elsewhere; VBOXGUEST_IOCTL_STRIP_SIZE is all we need here and it must be defined everywhere. */ 998 # define VBOXGUEST_IOCTL_NUMBER(Code) (_IOC_NR((Code)) & ~VBOXGUEST_IOCTL_FLAG) 995 # define VBOXGUEST_IOCTL_STRIP_SIZE(Code) VBOXGUEST_IOCTL_CODE(_IOC_NR((Code)), 0) 999 996 # define VBOXGUEST_IOCTL_SIZE(Code) (_IOC_SIZE((Code))) 1000 997
Note:
See TracChangeset
for help on using the changeset viewer.