![]() |
|
|
#3
|
||||
|
||||
|
Цитата:
Код:
function GetOSInfo: String;
var
OSVersion: TOSVersionInfo;
RegFile: TRegIniFile;
begin
RegFile:=TRegIniFile.Create('Software');
OSVersion.dwOSVersionInfoSize:=SIZEOF(OSVersion);
if GetVersionEx(OSVersion) then
begin
Result:= Format('%d.%d (%d.%s)',[OSVersion.dwMajorVersion,
OSVersion.dwMinorVersion,(OSVersion.dwBuildNumber and $FFFF),
OSVersion.szCSDVersion]);
end;
end;if ... '6.0' then ... 'WinVista'; |