Changeset 95049 in vbox
- Timestamp:
- May 20, 2022 8:05:44 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 151512
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r93299 r95049 671 671 DWORD VBoxDispIfInit(PVBOXDISPIF pDispIf) 672 672 { 673 /* Note: NT4 is handled implicitly by VBoxDispIfSwitchMode(). */ 673 674 VBoxDispIfSwitchMode(pDispIf, VBOXDISPIF_MODE_XPDM, NULL); 674 675 … … 2601 2602 return NO_ERROR; 2602 2603 2604 /* Make sure that we never try to run anything else but VBOXDISPIF_MODE_XPDM_NT4 on NT4 guests. 2605 * Anything else will get us into serious trouble. */ 2606 if (RTSystemGetNtVersion() < RTSYSTEM_MAKE_NT_VERSION(5, 0, 0)) 2607 enmMode = VBOXDISPIF_MODE_XPDM_NT4; 2608 2603 2609 #ifdef VBOX_WITH_WDDM 2604 2610 if (pIf->enmMode >= VBOXDISPIF_MODE_WDDM)
Note:
See TracChangeset
for help on using the changeset viewer.