evil: Remove OS version check

Summary:
Current version checking is done with GetVersion, which is now deprecated and issues the warning:

```
'GetVersion' is deprecated [-Wdeprecated-declarations]
```

The first approach of this commit was to replace GetVersion call with the newer (and more reliable) `IsWindowsVistaOrGreater()` from versionhelpers.h, but nowadays it makes more sense to actually not even make that check, since it is more than unlinkely to happen that someone tries to compile/run EFL in Windows XP.

Reviewers: vtorri, stefan_schmidt, raster

Reviewed By: vtorri, raster

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12095
This commit is contained in:
João Paulo Taylor Ienczak Zanette 2020-08-07 20:08:48 +01:00 committed by Carsten Haitzler (Rasterman)
parent 0e91ec6c78
commit 7d2f3e85ec
1 changed files with 0 additions and 11 deletions

View File

@ -23,17 +23,6 @@ evil_init(void)
if (++_evil_init_count != 1)
return _evil_init_count;
{
DWORD v;
v = GetVersion();
if (!v || ((DWORD)(LOBYTE(LOWORD(v))) < 6))
{
fprintf(stderr, "Windows XP not supported anymore, exiting.\n");
return 0;
}
}
QueryPerformanceFrequency(&freq);
_evil_time_freq = freq.QuadPart;