chore: Remove checkfor windows < xpSp3 we need windows 7 or higher to runthe app now

This commit is contained in:
sithlord48
2025-11-06 16:18:03 -05:00
committed by Chris Rizzitello
parent 8b89489d40
commit 0a407b6726

View File

@ -21,7 +21,6 @@
#include "deskflow/Screen.h"
#include "platform/MSWindowsScreen.h"
#include <VersionHelpers.h>
#include <Windows.h>
#include <conio.h>
#include <memory>
@ -105,10 +104,6 @@ static int foregroundStartupStatic()
int AppUtilWindows::run()
{
if (!IsWindowsXPSP3OrGreater()) {
throw std::runtime_error("unsupported os version, xp sp3 or greater required");
}
// record window instance for tray icon, etc
ArchMiscWindows::setInstanceWin32(GetModuleHandle(nullptr));