Changeset 3587 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jul 12, 2007 3:14:27 PM (17 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxService
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/Makefile.kmk
r3198 r3587 30 30 endif 31 31 VBoxService_DEFS = VBOX_HGCM 32 VBoxService_INCS = ../include 32 33 VBoxService_SOURCES = \ 33 34 VBoxService.cpp \ 35 VBoxSeamless.cpp \ 34 36 VBoxClipboard.cpp \ 35 37 helpers.cpp \ -
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.cpp
r3201 r3587 83 83 unsigned __stdcall VBoxClipboardThread (void *pInstance); 84 84 void VBoxClipboardDestroy (const VBOXSERVICEENV *pEnv, void *pInstance); 85 /* The seamless windows service prototypes */ 86 int VBoxSeamlessInit (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread); 87 void VBoxSeamlessDestroy (const VBOXSERVICEENV *pEnv, void *pInstance); 85 88 86 89 /* The service table. */ … … 92 95 VBoxClipboardThread, 93 96 VBoxClipboardDestroy 97 }, 98 { 99 "Seamless Windows", 100 VBoxSeamlessInit, 101 NULL, 102 VBoxSeamlessDestroy 94 103 }, 95 104 {
Note:
See TracChangeset
for help on using the changeset viewer.