Changeset 17618 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
- Timestamp:
- Mar 10, 2009 11:11:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r17583 r17618 1191 1191 VBoxSetupDisplays((PDEVICE_EXTENSION)HwDeviceExtension, ConfigInfo, AdapterMemorySize); 1192 1192 #else 1193 /* Guest supports only HGSMI, the old VBVA via VMMDev is not supported. Old 1194 * code will be ifdef'ed and later removed. 1195 * The host will however support both old and new interface to keep compatibility 1196 * with old guest additions. 1197 */ 1193 1198 if (VBoxHGSMIIsSupported ()) 1194 1199 { … … 1196 1201 1197 1202 VBoxSetupDisplaysHGSMI((PDEVICE_EXTENSION)HwDeviceExtension, ConfigInfo, AdapterMemorySize); 1198 }1199 else1200 {1201 /* Initialize VBoxGuest library */1202 rc = VbglInit ();1203 1204 dprintf(("VBoxVideo::VBoxVideoFindAdapter: VbglInit returned 0x%x\n", rc));1205 1206 /* Setup the Device Extension and if possible secondary displays. */1207 VBoxSetupDisplays((PDEVICE_EXTENSION)HwDeviceExtension, ConfigInfo, AdapterMemorySize);1208 1203 } 1209 1204 #endif /* VBOX_WITH_HGSMI */
Note:
See TracChangeset
for help on using the changeset viewer.