Changeset 66529 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Apr 12, 2017 12:45:55 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPR3HardenedMain-win.cpp
r66525 r66529 5806 5806 } 5807 5807 uBuf.szFileVersion[RT_ELEMENTS(uBuf.wszFileVersion)] = '\0'; 5808 if (RTStrVersionCompare(uBuf.szFileVersion, "7.3.0.0171") >= 0) 5808 #define VER_IN_RANGE(a_pszFirst, a_pszLast) \ 5809 (RTStrVersionCompare(uBuf.szFileVersion, a_pszFirst) >= 0 && RTStrVersionCompare(uBuf.szFileVersion, a_pszLast) <= 0) 5810 if ( VER_IN_RANGE("7.4.0.0000", "999999999.9.9.9999") 5811 || VER_IN_RANGE("7.3.1.1000", "7.3.1.3000") 5812 || VER_IN_RANGE("7.3.0.3000", "7.3.0.999999999") 5813 || VER_IN_RANGE("7.2.1.3000", "7.2.999999999.999999999") ) 5809 5814 { 5810 5815 uint32_t const fOldFound = fFound;
Note:
See TracChangeset
for help on using the changeset viewer.