Changeset 42 in vbox
- Timestamp:
- Jan 15, 2007 5:53:25 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/src/VBox/HostDrivers/Support/SUPDRVIOC.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDRVIOC.h
r1 r42 76 76 ( (3U << 30) | ((0x22) << 8) | ((Function) | SUP_IOCTL_FLAG) | (0 << 16) ) 77 77 # else 78 # include <sys/ioctl.h> 79 # define SUP_CTL_CODE(Function) _IOWR('V', (Function) | SUP_IOCTL_FLAG, sizeof(SUPDRVIOCTLDATA)) 80 # define SUP_CTL_CODE_FAST(Function) _IO( 'V', (Function) | SUP_IOCTL_FLAG) 78 # include <linux/ioctl.h> 79 # if 1 /* figure out when this changed. */ 80 # define SUP_CTL_CODE(Function) _IOWR('V', (Function) | SUP_IOCTL_FLAG, SUPDRVIOCTLDATA) 81 # define SUP_CTL_CODE_FAST(Function) _IO( 'V', (Function) | SUP_IOCTL_FLAG) 82 # else /* now: _IO_BAD and _IOWR_BAD */ 83 # define SUP_CTL_CODE(Function) _IOWR('V', (Function) | SUP_IOCTL_FLAG, sizeof(SUPDRVIOCTLDATA)) 84 # define SUP_CTL_CODE_FAST(Function) _IO( 'V', (Function) | SUP_IOCTL_FLAG) 85 # endif 81 86 # endif 82 87
Note:
See TracChangeset
for help on using the changeset viewer.

