Changeset 6020 in vbox for trunk/include
- Timestamp:
- Dec 9, 2007 8:33:41 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 26646
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r5999 r6020 51 51 /** The support device name. */ 52 52 # define VBOXGUEST_DEVICE_NAME "\\Dev\\VBoxGst$" 53 54 #elif defined(RT_OS_SOLARIS) 55 /** The support device name. */ 56 # define VBOXGUEST_DEVICE_NAME "/devices/pseudo/vboxadd@0:vboxadd" 53 57 54 58 #elif defined(RT_OS_WINDOWS) … … 964 968 /* VBOXGUEST_IOCTL_CODE(Function, sizeof(type)) == _IOWR('V', (Function) | VBOXGUEST_IOCTL_FLAG, (type)) */ 965 969 # define VBOXGUEST_IOCTL_CODE(Function, Size) _IOC(_IOC_READ|_IOC_WRITE, 'V', Function, Size) 970 # define VBOXGUEST_IOCTL_CODE_FAST(Function) _IO( 'V', (Function) | VBOXGUEST_IOCTL_FLAG) 971 972 #elif defined(RT_OS_SOLARIS) 973 # include <sys/ioccom.h> 974 # define VBOXGUEST_IOCTL_CODE(Function, Size) _IOWR('V', (Function) | VBOXGUEST_IOCTL_FLAG, (Size)) 966 975 # define VBOXGUEST_IOCTL_CODE_FAST(Function) _IO( 'V', (Function) | VBOXGUEST_IOCTL_FLAG) 967 976
Note:
See TracChangeset
for help on using the changeset viewer.