mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-16 12:11:47 -06:00
23.01
This commit is contained in:
@@ -1,19 +1,29 @@
|
||||
// Windows/NtCheck.h
|
||||
|
||||
#ifndef __WINDOWS_NT_CHECK_H
|
||||
#define __WINDOWS_NT_CHECK_H
|
||||
#ifndef ZIP7_INC_WINDOWS_NT_CHECK_H
|
||||
#define ZIP7_INC_WINDOWS_NT_CHECK_H
|
||||
|
||||
#ifdef _WIN32
|
||||
|
||||
#include "../Common/MyWindows.h"
|
||||
|
||||
#if !defined(_WIN64) && !defined(UNDER_CE)
|
||||
|
||||
#if defined(_MSC_VER) && _MSC_VER >= 1900
|
||||
#pragma warning(push)
|
||||
// GetVersionExW was declared deprecated
|
||||
#pragma warning(disable : 4996)
|
||||
#endif
|
||||
static inline bool IsItWindowsNT()
|
||||
{
|
||||
OSVERSIONINFO vi;
|
||||
vi.dwOSVersionInfoSize = sizeof(vi);
|
||||
return (::GetVersionEx(&vi) && vi.dwPlatformId == VER_PLATFORM_WIN32_NT);
|
||||
}
|
||||
#if defined(_MSC_VER) && _MSC_VER >= 1900
|
||||
#pragma warning(pop)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#ifndef _UNICODE
|
||||
|
||||
Reference in New Issue
Block a user