Changeset 4289 in vbox for trunk/src/VBox/Additions/WINNT/VBoxService
- Timestamp:
- Aug 22, 2007 3:36:51 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 23807
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxRestore.cpp
r4285 r4289 36 36 int VBoxRestoreInit(const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread) 37 37 { 38 HDC hdc; 39 BOOL ret; 40 38 41 dprintf(("VBoxRestoreInit\n")); 39 42 40 43 gCtx.pEnv = pEnv; 44 45 /* Check VRDP activity */ 46 hdc = GetDC(HWND_DESKTOP); 47 48 /* send to display driver */ 49 ret = ExtEscape(hdc, VBOXESC_ISVRDPACTIVE, 0, NULL, 0, NULL); 50 dprintf(("VBoxRestoreInit -> VRDP activate state = %d\n", ret)); 51 52 ReleaseDC(HWND_DESKTOP, hdc); 41 53 42 54 *pfStartThread = true;
Note:
See TracChangeset
for help on using the changeset viewer.