summaryrefslogtreecommitdiff
path: root/src/mir_core/src/Windows/winver.cpp
blob: b3fadf2043f2a4243b975a19acfa2c8bdb431727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
/*
Copyright (C) 2012-25 Miranda NG team (https://miranda-ng.org)

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation version 2
of the License.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "../stdafx.h"

#ifndef _WIN32_WINNT_WIN8
#define _WIN32_WINNT_WIN8     0x0602 // Windows 8
#endif

#ifndef _WIN32_WINNT_WINBLUE
#define _WIN32_WINNT_WINBLUE  0x0603 // Windows 8.1
#endif

#ifndef _WIN32_WINNT_WIN10
#define _WIN32_WINNT_WIN10    0x0A00 // Windows 10
#endif

static int dwWinVer;
static bool bIsWine = false;

void InitWinver()
{
	uint32_t dwVer = LOWORD(GetVersion());
	dwWinVer = MAKEWORD(HIBYTE(dwVer), LOBYTE(dwVer));
	bIsWine = GetProcAddress(g_hNtdll, "wine_get_version") != 0;
}

MIR_CORE_DLL(BOOL) IsWinVerVistaPlus()
{
	return dwWinVer >= _WIN32_WINNT_VISTA;
}

MIR_CORE_DLL(BOOL) IsWinVer7Plus()
{
	return dwWinVer >= _WIN32_WINNT_WIN7;
}

MIR_CORE_DLL(BOOL) IsWinVer8Plus()
{
	return dwWinVer >= _WIN32_WINNT_WIN8;
}

MIR_CORE_DLL(BOOL) IsWinVer81Plus()
{
	return dwWinVer >= _WIN32_WINNT_WINBLUE;
}

MIR_CORE_DLL(BOOL) IsWinVer10Plus()
{
	return dwWinVer >= _WIN32_WINNT_WIN10;
}

MIR_CORE_DLL(BOOL) IsWine()
{
	return bIsWine;
}

MIR_CORE_DLL(BOOL) IsFullScreen()
{
	RECT rcScreen = {};
	rcScreen.right = GetSystemMetrics(SM_CXSCREEN);
	rcScreen.bottom = GetSystemMetrics(SM_CYSCREEN);

	HMONITOR hMon = MonitorFromWindow(GetForegroundWindow(), MONITOR_DEFAULTTONEAREST);
	MONITORINFO mi;
	mi.cbSize = sizeof(mi);
	if (GetMonitorInfoW(hMon, &mi))
		rcScreen = mi.rcMonitor;

	HWND hWndDesktop = GetDesktopWindow();
	HWND hWndShell = GetShellWindow();

	// check foregroundwindow
	HWND hWnd = GetForegroundWindow();
	if (hWnd && hWnd != hWndDesktop && hWnd != hWndShell) {
		wchar_t tszClassName[128] = L"";
		GetClassName(hWnd, tszClassName, _countof(tszClassName));
		if (wcscmp(tszClassName, L"WorkerW")) {
			RECT rect, rectw, recti;
			GetWindowRect(hWnd, &rectw);

			GetClientRect(hWnd, &rect);
			ClientToScreen(hWnd, (LPPOINT)&rect);
			ClientToScreen(hWnd, (LPPOINT)&rect.right);

			if (EqualRect(&rect, &rectw) && IntersectRect(&recti, &rect, &rcScreen) && EqualRect(&recti, &rcScreen))
				return true;
		}
	}

	return false;
}

MIR_CORE_DLL(BOOL) IsWorkstationLocked(void)
{
	HDESK hDesk = OpenInputDesktop(0, FALSE, DESKTOP_SWITCHDESKTOP);
	if (hDesk == nullptr)
		return true;

	wchar_t tszName[100];
	DWORD cbName;
	BOOL bLocked = (!GetUserObjectInformation(hDesk, UOI_NAME, tszName, _countof(tszName), &cbName) || mir_wstrcmpi(tszName, L"default") != 0);
	CloseDesktop(hDesk);
	return bLocked;
}

MIR_CORE_DLL(BOOL) IsTerminalDisconnected(void)
{
	PVOID pBuffer = nullptr;
	DWORD pBytesReturned = 0;
	BOOL result = FALSE;

	if (WTSQuerySessionInformation(WTS_CURRENT_SERVER_HANDLE, WTS_CURRENT_SESSION, WTSConnectState, (LPTSTR *)&pBuffer, &pBytesReturned))
		if (*(PDWORD)pBuffer == WTSDisconnected)
			result = TRUE;

	if (pBuffer)
		WTSFreeMemory(pBuffer);
	return result;
}

MIR_CORE_DLL(BOOL) IsScreenSaverRunning(void)
{
	BOOL rc = FALSE;
	SystemParametersInfo(SPI_GETSCREENSAVERRUNNING, 0, &rc, FALSE);
	return rc != 0;
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

MIR_CORE_DLL(BOOL) OS_GetShortString(char *buf, size_t bufSize)
{
	if (buf == nullptr || bufSize == 0)
		return false;

	mir_snprintf(buf, bufSize, "Windows NT %d.%d", HIBYTE(dwWinVer), LOBYTE(dwWinVer));
	return true;
}

//////////////////////////////////////////////////////////////////////////////////////////////////////

#ifndef PRODUCT_CORE_N // Win8
#define PRODUCT_CORE_SINGLELANGUAGE               0x00000064
#define PRODUCT_PROFESSIONAL_WMC                  0x00000067
#endif

typedef BOOL(WINAPI *PGPI)(uint32_t, uint32_t, uint32_t, uint32_t, PDWORD);
typedef LPCSTR(WINAPI *WGV)(void);

MIR_CORE_DLL(BOOL) OS_GetDisplayString(char *buf, size_t bufSize)
{
	if (buf == nullptr || bufSize == 0)
		return 0;

	buf[0] = 0;

	OSVERSIONINFOEX osvi = { 0 };
	osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFOEX);
	BOOL bOsVersionInfoEx = GetVersionEx((OSVERSIONINFO *)&osvi);
	if (!bOsVersionInfoEx) {
		osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
		if (!GetVersionEx((OSVERSIONINFO*)&osvi))
			return false;
	}

	if (VER_PLATFORM_WIN32_NT != osvi.dwPlatformId || osvi.dwMajorVersion <= 4)
		return false;

	SYSTEM_INFO sysInfo = { 0 };
	GetNativeSystemInfo(&sysInfo);

	CMStringA ret("Microsoft ");

	// Test for the specific product.
	if (osvi.dwMajorVersion >= 6) {
		int iVersion = (osvi.dwBuildNumber >= 22000) ? 11 : 10;
		if (osvi.dwMajorVersion == 10) {
			if (osvi.wProductType == VER_NT_WORKSTATION)
				ret.AppendFormat("Windows %d ", iVersion);
			else
				ret.AppendFormat("Windows Server %d ", iVersion);
		}
		else switch (osvi.dwMinorVersion) {
		case 0:
			if (osvi.wProductType == VER_NT_WORKSTATION)
				ret.Append("Windows Vista ");
			else
				ret.Append("Windows Server 2008 ");
			break;

		case 1:
			if (osvi.wProductType == VER_NT_WORKSTATION)
				ret.Append("Windows 7 ");
			else
				ret.Append("Windows Server 2008 R2 ");
			break;

		case 2:
			if (osvi.wProductType == VER_NT_WORKSTATION)
				ret.Append("Windows 8 ");
			else
				ret.Append("Windows Server 2012 ");
			break;

		case 3:
			if (osvi.wProductType == VER_NT_WORKSTATION)
				ret.Append("Windows 8.1 ");
			else
				ret.Append("Windows Server 2012 R2 ");
			break;
		}

		DWORD dwType = 0;
		HMODULE hKernel = GetModuleHandle(L"kernel32.dll");
		PGPI pGPI = (PGPI)GetProcAddress(hKernel, "GetProductInfo");
		if (pGPI != nullptr)
			pGPI(osvi.dwMajorVersion, osvi.dwMinorVersion, 0, 0, &dwType);

		switch (dwType) {
		case PRODUCT_ULTIMATE:
			ret.Append("Ultimate Edition");
			break;
		case PRODUCT_PROFESSIONAL:
			ret.Append("Professional Edition");
			break;
		case PRODUCT_PROFESSIONAL_WMC:
			ret.Append("Professional Edition with Media Center");
			break;
		case PRODUCT_HOME_PREMIUM:
			ret.Append("Home Premium Edition");
			break;
		case PRODUCT_HOME_BASIC:
			ret.Append("Home Basic Edition");
			break;
		case PRODUCT_ENTERPRISE:
			ret.Append("Enterprise Edition");
			break;
		case PRODUCT_BUSINESS:
			ret.Append("Business Edition");
			break;
		case PRODUCT_STARTER:
			ret.Append("Starter Edition");
			break;
		case PRODUCT_CLUSTER_SERVER:
			ret.Append("Cluster Server Edition");
			break;
		case PRODUCT_DATACENTER_SERVER:
			ret.Append("Datacenter Edition");
			break;
		case PRODUCT_DATACENTER_SERVER_CORE:
			ret.Append("Datacenter Edition (core installation)");
			break;
		case PRODUCT_ENTERPRISE_SERVER:
			ret.Append("Enterprise Edition");
			break;
		case PRODUCT_ENTERPRISE_SERVER_CORE:
			ret.Append("Enterprise Edition (core installation)");
			break;
		case PRODUCT_ENTERPRISE_SERVER_IA64:
			ret.Append("Enterprise Edition for Itanium-based Systems");
			break;
		case PRODUCT_SMALLBUSINESS_SERVER:
			ret.Append("Small Business Server");
			break;
		case PRODUCT_SMALLBUSINESS_SERVER_PREMIUM:
			ret.Append("Small Business Server Premium Edition");
			break;
		case PRODUCT_STANDARD_SERVER:
			ret.Append("Standard Edition");
			break;
		case PRODUCT_STANDARD_SERVER_CORE:
			ret.Append("Standard Edition (core installation)");
			break;
		case PRODUCT_WEB_SERVER:
			ret.Append("Web Server Edition");
			break;
		case PRODUCT_CORE_SINGLELANGUAGE:
			ret.Append("Home Single Language");
			break;
		}
		if (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
			ret.Append(", 64-bit");
		else if (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
			ret.Append(", 32-bit");
	}

	if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 2) {
		if (GetSystemMetrics(SM_SERVERR2))
			ret.Append("Windows Server 2003 R2, ");
		else if (osvi.wSuiteMask == VER_SUITE_STORAGE_SERVER)
			ret.Append("Windows Storage Server 2003");
		else if (osvi.wSuiteMask == VER_SUITE_WH_SERVER)
			ret.Append("Windows Home Server");
		else if (osvi.wProductType == VER_NT_WORKSTATION && sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
			ret.Append("Windows XP Professional x64 Edition");
		else
			ret.Append("Windows Server 2003, ");

		// Test for the server type.
		if (osvi.wProductType != VER_NT_WORKSTATION) {
			if (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_IA64) {
				if (osvi.wSuiteMask & VER_SUITE_DATACENTER)
					ret.Append("Datacenter Edition for Itanium-based Systems");
				else if (osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
					ret.Append("Enterprise Edition for Itanium-based Systems");
			}
			else if (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) {
				if (osvi.wSuiteMask & VER_SUITE_DATACENTER)
					ret.Append("Datacenter x64 Edition");
				else if (osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
					ret.Append("Enterprise x64 Edition");
				else ret.Append("Standard x64 Edition");
			}
			else {
				if (osvi.wSuiteMask & VER_SUITE_COMPUTE_SERVER)
					ret.Append("Compute Cluster Edition");
				else if (osvi.wSuiteMask & VER_SUITE_DATACENTER)
					ret.Append("Datacenter Edition");
				else if (osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
					ret.Append("Enterprise Edition");
				else if (osvi.wSuiteMask & VER_SUITE_BLADE)
					ret.Append("Web Edition");
				else ret.Append("Standard Edition");
			}
		}
	}

	if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 1) {
		ret.Append("Windows XP ");
		if (osvi.wSuiteMask & VER_SUITE_PERSONAL)
			ret.Append("Home Edition");
		else ret.Append("Professional");
	}

	if (osvi.dwMajorVersion == 5 && osvi.dwMinorVersion == 0) {
		ret.Append("Windows 2000 ");

		if (osvi.wProductType == VER_NT_WORKSTATION)
			ret.Append("Professional");
		else {
			if (osvi.wSuiteMask & VER_SUITE_DATACENTER)
				ret.Append("Datacenter Server");
			else if (osvi.wSuiteMask & VER_SUITE_ENTERPRISE)
				ret.Append("Advanced Server");
			else ret.Append("Server");
		}
	}

	// Include service pack (if any) and build number.
	if (mir_wstrlen(osvi.szCSDVersion) > 0) {
		ret.Append(" ");
		ret.Append(_T2A(osvi.szCSDVersion));
	}

	ret.AppendFormat(" (build %d)", osvi.dwBuildNumber);

	if (WGV wine_get_version = (WGV)GetProcAddress(g_hNtdll, "wine_get_version"))
		ret.AppendFormat(" (Wine %s)", wine_get_version());

	mir_strncpy(buf, ret, bufSize);
	return true;
}