Changeset 39600 in vbox for trunk/src/VBox
- Timestamp:
- Dec 14, 2011 8:58:22 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75373
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Installer/VBoxGuestAdditionsVista.nsh
r39558 r39600 27 27 ${EndIf} 28 28 29 ${If} $g_bWithD3D == "true" 30 ; Validate D3D files 31 Call ValidateD3DFiles 32 Pop $0 33 ${If} $0 == "1" ; D3D files are invalid 34 ${If} $g_bWithWDDM == "true" 35 MessageBox MB_ICONSTOP|MB_OK $(VBOX_COMPONENT_D3D_INVALID_WDDM) /SD IDOK 36 goto failure 37 ${Else} 38 MessageBox MB_ICONSTOP|MB_OKCANCEL $(VBOX_COMPONENT_D3D_INVALID_XPDM) /SD IDCANCEL IDCANCEL failure 39 ${EndIf} 29 ; Validate D3D files, regardless whether D3D support is selected or not 30 Call ValidateD3DFiles 31 Pop $0 32 ${If} $0 == "1" ; D3D files are invalid 33 ${If} $g_bWithWDDM == "true" 34 MessageBox MB_ICONSTOP|MB_OK $(VBOX_COMPONENT_D3D_INVALID_WDDM) /SD IDOK 35 goto failure 36 ${Else} 37 MessageBox MB_ICONSTOP|MB_OKCANCEL $(VBOX_COMPONENT_D3D_INVALID_XPDM) /SD IDCANCEL IDCANCEL failure 40 38 ${EndIf} 41 39 ${EndIf}
Note:
See TracChangeset
for help on using the changeset viewer.