HMCLauncher: verify if JVM version is between 8 and 10

This commit is contained in:
huanghongxun
2019-02-14 15:34:52 +08:00
parent 394873864f
commit eab4463c2d
12 changed files with 91 additions and 9 deletions

View File

@@ -1,7 +1,9 @@
#include "stdafx.h"
#include "Version.h"
Version::Version(const std::wstring & rawString)
using namespace std;
Version::Version(const wstring & rawString)
{
int idx = 0;
ver[0] = ver[1] = ver[2] = ver[3] = 0;