Changeset 42003 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jul 3, 2012 2:57:45 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78883
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsVista.nsh
r41014 r42003 77 77 78 78 !ifdef VBOX_WITH_MMR 79 FILE "$%PATH_OUT%\bin\additions\VBoxMMR .dll"79 FILE "$%PATH_OUT%\bin\additions\VBoxMMRHook.dll" 80 80 !endif 81 81 … … 90 90 91 91 !ifdef VBOX_WITH_MMR 92 DetailPrint "Registering VBoxMMR.dll ..."93 nsExec::ExecToLog '"$g_strSystemDir\regsvr32.exe" -s "$INSTDIR\VBoxMMR.dll"'92 !insertmacro ReplaceDLL "$%PATH_OUT%\bin\additions\VBoxMMRHook.dll" "$g_strSystemDir\VBoxMMRHook.dll" "$INSTDIR" 93 AccessControl::GrantOnFile "$g_strSystemDir\VBoxMMRHook.dll" "(BU)" "GenericRead" 94 94 !endif 95 95 … … 135 135 136 136 !ifdef VBOX_WITH_MMR 137 DetailPrint "Unregistering VBoxMMR.dll ..." 138 nsExec::ExecToLog '"$g_strSystemDir\regsvr32.exe" -s -u "$INSTDIR\VBoxMMR.dll"' 139 140 Delete /REBOOTOK "$INSTDIR\VBoxMMR.dll" 137 Delete /REBOOTOK "$g_strSystemDir\VBoxMMRHook.dll" 138 Delete /REBOOTOK "$INSTDIR\VBoxMMRHook.dll" 141 139 !endif 142 140 -
trunk/src/VBox/Additions/WINNT/VBoxTray/Makefile.kmk
r41477 r42003 51 51 mpr.lib 52 52 endif 53 ifdef VBOX_WITH_MMR 54 VBoxTray_DEFS += VBOX_WITH_MMR 55 VBoxTray_SOURCES += \ 56 VBoxMMR.cpp 57 endif 53 58 54 59 VBoxTray_LIBS = \ -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.cpp
r40498 r42003 32 32 #include "VBoxIPC.h" 33 33 #include "VBoxLA.h" 34 #include "VBoxMMR.h" 34 35 #include <VBoxHook.h> 35 36 #include "resource.h" … … 114 115 VBoxLADestroy 115 116 }, 117 #ifdef VBOX_WITH_MMR 118 { 119 "Multimedia Redirection", 120 VBoxMMRInit, 121 VBoxMMRThread, 122 VBoxMMRDestroy 123 }, 124 #endif 116 125 { 117 126 NULL
Note:
See TracChangeset
for help on using the changeset viewer.