From fdfa3f430bcedb43bb8c662d630b2a5ca591a4c0 Mon Sep 17 00:00:00 2001 From: zbacsko Date: Mon, 6 May 2024 00:50:27 +0200 Subject: [PATCH] Proxy presence and NT4 version check fixes --- drivercfg/Views.h | 45 ++++++++++++++++++++++++++++++++------------- version.h | 2 +- 2 files changed, 33 insertions(+), 14 deletions(-) diff --git a/drivercfg/Views.h b/drivercfg/Views.h index 17ebbc8..314e963 100644 --- a/drivercfg/Views.h +++ b/drivercfg/Views.h @@ -310,6 +310,31 @@ static void SaveDwordValue(LPCTSTR key, DWORD value) reg.Close(); } } + +static TCHAR* getProxyPath(TCHAR* result, unsigned int length) +{ + if (GetWindowsDirectory(result, length)) + { + _tcscat_s(result, length, _T("\\SysWOW64\\vstmididrv\\vstmidiproxy.exe")); + + if (GetFileAttributes(result) == INVALID_FILE_ATTRIBUTES) + { + if (GetWindowsDirectory(result, length)) + { + _tcscat_s(result, length, _T("\\System32\\vstmididrv\\vstmidiproxy.exe")); + + if (GetFileAttributes(result) == INVALID_FILE_ATTRIBUTES) + { + _tcscpy_s(result, length, _T("")); + + } + } + } + } + + return result; +} + #pragma endregion utility functions #if _MSC_VER > 1000 @@ -1690,6 +1715,7 @@ class CView4 : public CDialogImpl chkPrivAsio = GetDlgItem(IDC_PRIVATEASIO); chkKeepDriver = GetDlgItem(IDC_KEEPDRIVER); cmbHighDpi = GetDlgItem(IDC_HIGHDPI); + btnProxy = GetDlgItem(IDC_PROXY); cmbHighDpi.AddString(_T("System")); cmbHighDpi.AddString(_T("System enhanced")); @@ -1727,7 +1753,10 @@ class CView4 : public CDialogImpl else chkPrivAsio.EnableWindow(false); - chkKeepDriver.SetCheck(keepDriverLoaded); + chkKeepDriver.SetCheck(keepDriverLoaded); + + TCHAR tmpPath[MAX_PATH] = { 0 }; + btnProxy.EnableWindow((BOOL)!!_tcslen(getProxyPath(tmpPath, MAX_PATH))); return TRUE; } @@ -1793,18 +1822,8 @@ class CView4 : public CDialogImpl { TCHAR tmpPath[MAX_PATH] = { 0 }; - if (GetWindowsDirectory(tmpPath, MAX_PATH)) - { - _tcscat_s(tmpPath, _T("\\SysWOW64\\vstmididrv\\vstmidiproxy.exe")); - - if (GetFileAttributes(tmpPath) == INVALID_FILE_ATTRIBUTES) - { - if (GetWindowsDirectory(tmpPath, MAX_PATH)) - { - _tcscat_s(tmpPath, _T("\\System32\\vstmididrv\\vstmidiproxy.exe")); - } - } - + if (_tcslen(getProxyPath(tmpPath, MAX_PATH))) + { ShellExecute(NULL, NULL, tmpPath, NULL, NULL, SW_SHOWNORMAL); } diff --git a/version.h b/version.h index f80d2e2..1a0854d 100644 --- a/version.h +++ b/version.h @@ -30,7 +30,7 @@ inline TCHAR* GetFileVersion(TCHAR* result) inline bool IsWinNT4() { - return (GetVersion() & 0x8000000F) == 4; + return (GetVersion() & 0x800000FF) == 4; }