Changeset 78466 in vbox for trunk/src/VBox/Additions
- Timestamp:
- May 10, 2019 7:35:30 PM (6 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk
r78440 r78466 81 81 VBoxLA.cpp 82 82 endif 83 ## Now handled by VBoxService.84 #ifdef VBOX_WITH_SHARED_FOLDERS85 # VBoxTray_DEFS += VBOX_WITH_SHARED_FOLDERS86 # VBoxTray_SOURCES += \87 # VBoxSharedFolders.cpp88 # VBoxTray_LIBS.win += \89 # mpr.lib90 #endif91 83 ifdef VBOX_WITH_WDDM 92 84 VBoxTray_DEFS += VBOX_WITH_WDDM -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r77557 r78466 31 31 #include "VBoxVRDP.h" 32 32 #include "VBoxHostVersion.h" 33 #ifdef VBOX_WITH_SHARED_FOLDERS34 # include "VBoxSharedFolders.h"35 #endif36 33 #ifdef VBOX_WITH_DRAG_AND_DROP 37 34 # include "VBoxDnD.h" … … 852 849 if (RT_SUCCESS(rc)) 853 850 { 854 #ifdef VBOX_WITH_SHARED_FOLDERS 855 /* Do the Shared Folders auto-mounting stuff. */ 856 rc = VBoxSharedFoldersAutoMount(); 857 #endif 858 if (RT_SUCCESS(rc)) 859 { 860 /* Report the host that we're up and running! */ 861 hlpReportStatus(VBoxGuestFacilityStatus_Active); 862 } 851 /* Report the host that we're up and running! */ 852 hlpReportStatus(VBoxGuestFacilityStatus_Active); 863 853 } 864 854
Note:
See TracChangeset
for help on using the changeset viewer.