Changeset 76934 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Jan 22, 2019 12:13:49 PM (6 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Installer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditions.nsi
r76553 r76934 85 85 !define REPLACEDLL_NOREGISTER ; Replace in use DLL function 86 86 !include "ReplaceDLL.nsh" 87 !include "dumplog.nsh" ; Dump log to file function88 87 89 88 !if $%BUILD_TARGET_ARCH% == "amd64" … … 177 176 !endif 178 177 178 ; Must come after MUI includes to have certain defines set for DumpLog 179 !include "dumplog.nsh" ; Dump log to file function 180 179 181 ; Language files 180 182 !include "Languages\English.nsh" … … 202 204 ShowUnInstDetails show 203 205 RequestExecutionLevel highest 206 207 ; Whether to use the Unicode version of NSIS 208 ; Note: Using Unicode will result in the installer not working on a Windows 95/98/ME guest 209 ;Unicode true 204 210 205 211 ; Internal parameters -
trunk/src/VBox/Additions/WINNT/Installer/dumplog.nsh
r31634 r76934 1 !define LVM_GETITEMCOUNT 0x1004 2 !define LVM_GETITEMTEXT 0x102D 1 !ifndef LVM_GETITEMCOUNT 2 !define LVM_GETITEMCOUNT 0x1004 3 !endif 4 !ifndef LVM_GETITEMTEXT 5 !define LVM_GETITEMTEXT 0x102D 6 !endif 3 7 4 8 !macro DumpLog un
Note:
See TracChangeset
for help on using the changeset viewer.