Changeset 6118 in vbox for trunk/include/VBox
- Timestamp:
- Dec 18, 2007 9:55:20 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26841
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/include/VBox/VBoxGuest.h ¶
r6065 r6118 54 54 #elif defined(RT_OS_SOLARIS) 55 55 /** The support device name. */ 56 # define VBOXGUEST_DEVICE_NAME "/devices/pci@0 :0/pci80ee,cafe@4:vboxadd"56 # define VBOXGUEST_DEVICE_NAME "/devices/pci@0,0/pci80ee,cafe@4:vboxadd" 57 57 58 58 #elif defined(RT_OS_WINDOWS) … … 972 972 #elif defined(RT_OS_SOLARIS) 973 973 # include <sys/ioccom.h> 974 # define VBOXGUEST_IOCTL_CODE(Function, Size) _IOWR ('V', (Function) | VBOXGUEST_IOCTL_FLAG, (Size))974 # define VBOXGUEST_IOCTL_CODE(Function, Size) _IOWRN('V', (Function) | VBOXGUEST_IOCTL_FLAG, (Size)) 975 975 # define VBOXGUEST_IOCTL_CODE_FAST(Function) _IO( 'V', (Function) | VBOXGUEST_IOCTL_FLAG) 976 976 … … 1045 1045 * on systems where this matters. */ 1046 1046 #ifdef VBOXGUEST_IOCTL_CODE 1047 # define VBOXGUEST_IOCTL_VMMREQUEST(Size) VBOXGUEST_IOCTL_CODE(3, sizeof(VMMDevRequestHeader))1047 # define VBOXGUEST_IOCTL_VMMREQUEST(Size) VBOXGUEST_IOCTL_CODE(3, (Size)) 1048 1048 # define IOCTL_VBOXGUEST_VMMREQUEST VBOXGUEST_IOCTL_VMMREQUEST(sizeof(VMMDevRequestHeader)) 1049 1049 #else
Note:
See TracChangeset
for help on using the changeset viewer.