2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
|
|
|
* Copyright (C) 2002-2009 PCSX2 Dev Team
|
|
|
|
*
|
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-04-03 00:50:39 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 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 PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-04-03 00:50:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2009-02-28 20:55:53 +00:00
|
|
|
#include "RedtapeWindows.h"
|
2009-07-11 08:31:38 +00:00
|
|
|
#include <winnt.h>
|
2009-04-03 00:50:39 +00:00
|
|
|
|
2009-07-11 08:31:38 +00:00
|
|
|
namespace Win32
|
2009-04-03 00:50:39 +00:00
|
|
|
{
|
2009-07-11 08:31:38 +00:00
|
|
|
class RealVersionInfo
|
2009-04-03 00:50:39 +00:00
|
|
|
{
|
2009-07-11 08:31:38 +00:00
|
|
|
protected:
|
|
|
|
HMODULE m_kernel32;
|
|
|
|
wxString m_VersionString;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-04-03 00:50:39 +00:00
|
|
|
public:
|
2009-07-11 08:31:38 +00:00
|
|
|
~RealVersionInfo();
|
|
|
|
RealVersionInfo();
|
2009-04-03 00:50:39 +00:00
|
|
|
|
2009-07-11 08:31:38 +00:00
|
|
|
bool IsVista() const;
|
|
|
|
bool IsXP() const;
|
|
|
|
const wxString& GetVersionString() const;
|
|
|
|
|
2009-04-03 17:25:57 +00:00
|
|
|
protected:
|
2009-07-11 08:31:38 +00:00
|
|
|
void InitVersionString();
|
2009-04-03 00:50:39 +00:00
|
|
|
};
|
|
|
|
}
|