24#include <wx/msw/registry.h>
26#define MIN_WIN_VERSION "10.7.2"
30 const wxString versionValName = wxT(
"Version" );
31 wxRegKey smKey( wxRegKey::HKLM, wxT(
"Software\\3Dconnexion\\3DxSoftware" ) );
36 if( !smKey.HasValue( versionValName ) )
40 if( !smKey.QueryValue( versionValName, versionStr ) )
43 return !versionStr.empty()
bool compareVersionStrings(const std::string &aVersionStr1, const std::string &aVersionStr2)
Compare two version strings of the form "major.minor.patch.build".