Changeset 3811 in vbox for trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.cpp
- Timestamp:
- Jul 24, 2007 11:37:53 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxService/VBoxService.cpp
r3789 r3811 21 21 22 22 #include "VBoxService.h" 23 #include "VBoxSeamless.h" 23 24 #include "resource.h" 24 25 #include <malloc.h> … … 75 76 unsigned __stdcall VBoxClipboardThread (void *pInstance); 76 77 void VBoxClipboardDestroy (const VBOXSERVICEENV *pEnv, void *pInstance); 77 /* The seamless windows service prototypes */78 int VBoxSeamlessInit (const VBOXSERVICEENV *pEnv, void **ppInstance, bool *pfStartThread);79 unsigned __stdcall VBoxSeamlessThread (void *pInstance);80 void VBoxSeamlessDestroy (const VBOXSERVICEENV *pEnv, void *pInstance);81 78 82 79 /* The service table. */ … … 900 897 break; 901 898 899 case WM_VBOX_INSTALL_SEAMLESS_HOOK: 900 901 break; 902 903 case WM_VBOX_REMOVE_SEAMLESS_HOOK: 904 break; 905 902 906 default: 903 907 return DefWindowProc(hwnd, msg, wParam, lParam);
Note:
See TracChangeset
for help on using the changeset viewer.