Page Menu
Home
desp's stash
Search
Configure Global Search
Log In
Files
F547446
SystemInformation.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Subscribers
None
SystemInformation.cpp
View Options
#include
"SystemInformation.h"
OPERATING_SYSTEM
SystemInformation
::
currenOS
=
UNKNOWN_OS
;
bool
SystemInformation
::
getSystemInformation
()
{
OSVERSIONINFOEX
osvi
=
{
0
};
SYSTEM_INFO
si
=
{
0
};
def_GetNativeSystemInfo
_GetNativeSystemInfo
=
0
;
osvi
.
dwOSVersionInfoSize
=
sizeof
(
OSVERSIONINFOEX
);
if
(
!
GetVersionEx
((
OSVERSIONINFO
*
)
&
osvi
))
{
return
false
;
}
if
((
osvi
.
dwMajorVersion
<
5
)
||
((
osvi
.
dwMajorVersion
==
5
)
&&
(
osvi
.
dwMinorVersion
==
0
)))
{
return
false
;
}
_GetNativeSystemInfo
=
(
def_GetNativeSystemInfo
)
GetProcAddress
(
GetModuleHandle
(
L
"kernel32.dll"
),
"GetNativeSystemInfo"
);
if
(
_GetNativeSystemInfo
)
{
_GetNativeSystemInfo
(
&
si
);
}
else
{
GetSystemInfo
(
&
si
);
}
bool
isX64
=
si
.
wProcessorArchitecture
==
PROCESSOR_ARCHITECTURE_AMD64
;
bool
isX86
=
si
.
wProcessorArchitecture
==
PROCESSOR_ARCHITECTURE_INTEL
;
DWORD
major
=
osvi
.
dwMajorVersion
;
DWORD
minor
=
osvi
.
dwMinorVersion
;
if
(
isX64
&&
major
==
5
&&
minor
==
2
)
{
currenOS
=
WIN_XP_64
;
}
else
if
(
isX86
&&
major
==
5
&&
minor
==
1
)
{
currenOS
=
WIN_XP_32
;
}
else
if
(
isX64
&&
major
==
6
&&
minor
==
0
)
{
currenOS
=
WIN_VISTA_64
;
}
else
if
(
isX86
&&
major
==
6
&&
minor
==
0
)
{
currenOS
=
WIN_VISTA_32
;
}
else
if
(
isX64
&&
major
==
6
&&
minor
==
1
)
{
currenOS
=
WIN_7_64
;
}
else
if
(
isX86
&&
major
==
6
&&
minor
==
1
)
{
currenOS
=
WIN_7_32
;
}
else
if
(
isX64
&&
major
==
6
&&
minor
==
2
)
{
currenOS
=
WIN_8_64
;
}
else
if
(
isX86
&&
major
==
6
&&
minor
==
2
)
{
currenOS
=
WIN_8_32
;
}
else
{
currenOS
=
UNKNOWN_OS
;
}
return
(
currenOS
!=
UNKNOWN_OS
);
}
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Tue, Jan 27, 11:31 AM (6 h, 23 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
d4/9c/88a5681154adc9ea09a96546c2af
Attached To
rSCY Scylla
Event Timeline
Log In to Comment