Changeset 10487 in vbox
- Timestamp:
- Jul 10, 2008 9:08:17 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33162
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r10234 r10487 1100 1100 1101 1101 #if defined(RT_OS_WINDOWS) 1102 # if 0 /** @todo Andy, enable this locally and make it work (may require changes to WINNT/VBoxGuest and other places that 1103 * calls it). Then remove all the #else cases in the #ifdef VBOXGUEST_IOCTL_CODE test below and commit. (see #2993) */ 1104 # define VBOXGUEST_IOCTL_CODE(Function, Size) IOCTL_CODE(FILE_DEVICE_UNKNOWN, 2048 + (Function), METHOD_BUFFERED, FILE_WRITE_ACCESS, 0) 1105 # define VBOXGUEST_IOCTL_STRIP_SIZE(Code) (Code) 1106 # else 1102 1107 /* legacy encoding. */ 1103 1108 # define IOCTL_CODE(DeviceType, Function, Method, Access, DataSize_ignored) \ 1104 1109 ( ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method)) 1110 # endif 1105 1111 1106 1112 #elif defined(RT_OS_OS2)
Note:
See TracChangeset
for help on using the changeset viewer.