Changeset 106173 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Sep 27, 2024 11:18:49 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-win.cpp
r106061 r106173 48 48 #include <iprt/asm.h> 49 49 #include <iprt/asm-amd64-x86.h> 50 #include <iprt/buildconfig.h> 50 51 #include <iprt/critsect.h> 51 52 #include <iprt/dbg.h> … … 341 342 342 343 /* Use RTLogBackdoorPrintf to make sure that this goes to VBox.log on the host. */ 343 RTLogBackdoorPrintf("VBoxGuest: Windows version %u.%u, build %u\n", ulMajorVer, ulMinorVer, ulBuildNo);344 if (fCheckedBuild)345 RTLogBackdoorPrintf("VBoxGuest: Windows checked build\n");344 RTLogBackdoorPrintf("VBoxGuest: %s r%s Windows version %u.%u, build %u%s\n", 345 RTBldCfgVersion(), RTBldCfgRevisionStr(), ulMajorVer, ulMinorVer, ulBuildNo, 346 fCheckedBuild ? ", checked build" : ""); 346 347 347 348 #ifdef VBOX_STRICT
Note:
See TracChangeset
for help on using the changeset viewer.