Changeset 4281 in vbox for trunk/src/VBox/Additions/WINNT/VBoxService
- Timestamp:
- Aug 22, 2007 2:12:20 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxService
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/Makefile.kmk
r4266 r4281 31 31 VBoxClipboard.cpp \ 32 32 VBoxDisplay.cpp \ 33 VBoxRestore.cpp \ 33 34 helpers.cpp \ 34 35 VBoxService.rc -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.cpp
r4266 r4281 19 19 #include "VBoxClipboard.h" 20 20 #include "VBoxDisplay.h" 21 #include "VBoxRestore.h" 21 22 #include <VBoxHook.h> 22 23 #include "resource.h" … … 90 91 VBoxSeamlessThread, 91 92 VBoxSeamlessDestroy 93 }, 94 { 95 "Restore", 96 VBoxRestoreInit, 97 VBoxRestoreThread, 98 VBoxRestoreDestroy, 92 99 }, 93 100 { … … 426 433 break; 427 434 435 case WM_VBOX_RESTORED: 436 VBoxRestoreSession(); 437 break; 438 428 439 default: 429 440 return DefWindowProc(hwnd, msg, wParam, lParam); -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.h
r4071 r4281 29 29 #include <VBox/version.h> 30 30 31 32 #define WM_VBOX_RESTORED 0x2005 33 34 31 35 /* The environment information for services. */ 32 36 typedef struct _VBOXSERVICEENV
Note:
See TracChangeset
for help on using the changeset viewer.