Commit a7a4f69a authored by DeanF's avatar DeanF

Added Python35 and Python36 to list of possible versions

parent 8c5545aa
......@@ -182,8 +182,8 @@ int InjectPythonCode(HANDLE hProcess, const char *code, char *moduleName)
int InjectPythonCodeToPID(DWORD pid, const char *code)
{
char versions[][9] = { "Python34", "Python33", "Python32", "Python31", "Python30", "Python27", "Python26", "Python25", "Python24" };
unsigned int numVersions = 9;
char versions[][9] = { "Python36", "Python35", "Python34", "Python33", "Python32", "Python31", "Python30", "Python27", "Python26", "Python25", "Python24" };
unsigned int numVersions = 11;
unsigned int i;
int retCode = 0;
int ret;
......@@ -262,4 +262,4 @@ int main(int argc, char *argv[])
return 20 + ret;
}
return 0;
}
\ No newline at end of file
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment