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:
authorUnderground78 <underground78@users.sourceforge.net>2012-09-24 19:32:24 +0400
committerUnderground78 <underground78@users.sourceforge.net>2012-11-30 23:14:40 +0400
commit1f47ffa0763d78c0482e93351201eeb6f6f1f43a (patch)
treefa2001caa3ec50041cdb9d616e375d9b92a18da3 /src/DSUtil/SysVersion.h
parent81a286eec16f70f6bd9e957ee97fe5a16275701b (diff)
Windows 8: Make use of the UI provided by Windows for file associations.
Windows 8 completely prevents the applications from programmatically changing the default handler for a file type or protocol so we have no other choice but to make use of Windows UI for that (cf http://msdn.microsoft.com/en-us/library/windows/desktop/hh848047.aspx).
Diffstat (limited to 'src/DSUtil/SysVersion.h')
-rw-r--r--src/DSUtil/SysVersion.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DSUtil/SysVersion.h b/src/DSUtil/SysVersion.h
index 8abd87f84..0a7f6fd74 100644
--- a/src/DSUtil/SysVersion.h
+++ b/src/DSUtil/SysVersion.h
@@ -41,5 +41,5 @@ public:
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 Is8() { return (version == 0x0602); }
};