Changeset 4304 in vbox
- Timestamp:
- Aug 23, 2007 8:20:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxRestore.cpp
r4303 r4304 22 22 #include <VBoxDisplay.h> 23 23 #include <VBox/VBoxDev.h> 24 #include <VBoxGuestInternal.h> 24 25 #include <iprt/assert.h> 25 26 #include "helpers.h" … … 77 78 if (ret != gCtx.fRDPState) 78 79 { 79 if (!DeviceIoControl (gCtx.pEnv->gDriver, (ret) ? IOCTL_VBOXGUEST_ENABLE_VRDP_SESSION : IOCTL_VBOXGUEST_DISABLE_VRDP_SESSION, NULL, 0, NULL, 0, &cbReturned, NULL)) 80 DWORD cbReturned; 81 82 if (!DeviceIoControl (gCtx.pEnv->hDriver, (ret) ? IOCTL_VBOXGUEST_ENABLE_VRDP_SESSION : IOCTL_VBOXGUEST_DISABLE_VRDP_SESSION, NULL, 0, NULL, 0, &cbReturned, NULL)) 80 83 { 81 84 dprintf(("VBoxRestoreThread: DeviceIOControl(CtlMask) failed, SeamlessChangeThread exited\n"));
Note:
See TracChangeset
for help on using the changeset viewer.