Changes
This commit is contained in:
@@ -17,10 +17,6 @@
|
||||
* Copyright 2021-2022 Cacodemon345
|
||||
* Copyright 2021-2022 Teemu Korhonen
|
||||
*/
|
||||
|
||||
#ifdef _WIN32
|
||||
#define UNICODE 1
|
||||
#endif
|
||||
#include <QApplication>
|
||||
#include <QSurfaceFormat>
|
||||
#include <QDebug>
|
||||
@@ -224,13 +220,13 @@ main(int argc, char *argv[])
|
||||
|
||||
#ifdef Q_OS_WINDOWS
|
||||
# if !defined(EMU_BUILD_NUM) || (EMU_BUILD_NUM != 5624)
|
||||
HWND winbox = FindWindow(L"TWinBoxMain", NULL);
|
||||
HWND winbox = FindWindowW(L"TWinBoxMain", NULL);
|
||||
if (winbox &&
|
||||
FindWindowEx(winbox, NULL, L"TToolBar", NULL) &&
|
||||
FindWindowEx(winbox, NULL, L"TListBox", NULL) &&
|
||||
FindWindowEx(winbox, NULL, L"TStatusBar", NULL) &&
|
||||
(winbox = FindWindowEx(winbox, NULL, L"TPageControl", NULL)) && /* holds a TTabSheet even on VM pages */
|
||||
FindWindowEx(winbox, NULL, L"TTabSheet", NULL))
|
||||
FindWindowExW(winbox, NULL, L"TToolBar", NULL) &&
|
||||
FindWindowExW(winbox, NULL, L"TListBox", NULL) &&
|
||||
FindWindowExW(winbox, NULL, L"TStatusBar", NULL) &&
|
||||
(winbox = FindWindowExW(winbox, NULL, L"TPageControl", NULL)) && /* holds a TTabSheet even on VM pages */
|
||||
FindWindowExW(winbox, NULL, L"TTabSheet", NULL))
|
||||
# endif
|
||||
{
|
||||
QMessageBox warningbox(QMessageBox::Icon::Warning, QObject::tr("WinBox is no longer supported"),
|
||||
|
Reference in New Issue
Block a user