Changeset 55210 in vbox for trunk/src/VBox
- Timestamp:
- Apr 13, 2015 2:28:04 PM (10 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Video/mp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPWddm.cpp
r54957 r55210 30 30 #include <VBoxDisplay.h> /* this is from Additions/WINNT/include/ to include escape codes */ 31 31 #include <VBox/Hardware/VBoxVideoVBE.h> 32 #include <VBox/Version.h> 32 33 33 34 #include <stdio.h> … … 7410 7411 7411 7412 #ifdef VBOX_WDDM_WIN8 7412 LOGREL(("VBox WDDM Driver for Windows 8, %d bit; Built %s %s", (sizeof (void*) << 3), __DATE__, __TIME__)); 7413 LOGREL(("VBox WDDM Driver for Windows 8 version %d.%d.%dr%d, %d bit; Built %s %s", 7414 VBOX_VERSION_MAJOR, VBOX_VERSION_MINOR, VBOX_VERSION_BUILD, VBOX_SVN_REV, 7415 (sizeof (void*) << 3), __DATE__, __TIME__)); 7413 7416 #else 7414 LOGREL(("VBox WDDM Driver for Windows Vista and 7, %d bit; Built %s %s", (sizeof (void*) << 3), __DATE__, __TIME__)); 7417 LOGREL(("VBox WDDM Driver for Windows Vista and 7 version %d.%d.%dr%d, %d bit; Built %s %s", 7418 VBOX_VERSION_MAJOR, VBOX_VERSION_MINOR, VBOX_VERSION_BUILD, VBOX_SVN_REV, 7419 (sizeof (void*) << 3), __DATE__, __TIME__)); 7415 7420 #endif 7416 7421 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/xpdm/VBoxMPDriver.cpp
r53008 r55210 25 25 #include "VBoxDisplay.h" 26 26 #include <iprt/initterm.h> 27 #include <VBox/version.h> 27 28 28 29 /* Resource list */ … … 726 727 LOGF_ENTER(); 727 728 729 LOGREL(("VBox XPDM Driver for Windows version %d.%d.%dr%d, %d bit; Built %s %s", 730 VBOX_VERSION_MAJOR, VBOX_VERSION_MINOR, VBOX_VERSION_BUILD, VBOX_SVN_REV, 731 (sizeof (void*) << 3), __DATE__, __TIME__)); 732 728 733 VIDEO_HW_INITIALIZATION_DATA vhwData; 729 734
Note:
See TracChangeset
for help on using the changeset viewer.