Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2012-06-13 13:05:30 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2012-06-13 13:05:30 +0400
commit0b9ec9a361f62ce15fc58763ca8b533afe405973 (patch)
tree02fb318875748db7e28f0b303d9907e58d69ca8c /src/DSUtil/SysVersion.h
parentd3b052fb035d8b242e4b328722f4ed7ac84ee20c (diff)
apply the new astyle command; use 4 spaces for indentation and k&r style
Note: if you have any local patches just run astyle.bat git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@5110 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/DSUtil/SysVersion.h')
-rw-r--r--src/DSUtil/SysVersion.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/DSUtil/SysVersion.h b/src/DSUtil/SysVersion.h
index 231db4e6d..a7d3e7235 100644
--- a/src/DSUtil/SysVersion.h
+++ b/src/DSUtil/SysVersion.h
@@ -26,21 +26,21 @@
class SysVersion
{
- SysVersion() {};
+ SysVersion() {};
- static OSVERSIONINFOEX InitFullVersion();
+ static OSVERSIONINFOEX InitFullVersion();
- static const OSVERSIONINFOEX fullVersion;
- static const DWORD version;
+ static const OSVERSIONINFOEX fullVersion;
+ static const DWORD version;
public:
- static OSVERSIONINFOEX GetFullVersion() { return fullVersion; }
- static DWORD GetVersion() { return version; }
+ static OSVERSIONINFOEX GetFullVersion() { return fullVersion; }
+ static DWORD GetVersion() { return version; }
- static bool IsXPOrLater() { return (version >= 0x0501); }
- static bool IsVista() { return (version == 0x0600); }
- static bool IsVistaOrLater() { return (version >= 0x0600); }
- static bool Is7() { return (version == 0x0601); }
- static bool Is7OrLater() { return (version >= 0x0601); }
- //static bool Is8() { return (version == 0x0602); }
+ static bool IsXPOrLater() { return (version >= 0x0501); }
+ static bool IsVista() { return (version == 0x0600); }
+ static bool IsVistaOrLater() { return (version >= 0x0600); }
+ static bool Is7() { return (version == 0x0601); }
+ static bool Is7OrLater() { return (version >= 0x0601); }
+ //static bool Is8() { return (version == 0x0602); }
};