Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pyrasite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
pyrasite
Commits
a7a4f69a
Commit
a7a4f69a
authored
Aug 06, 2016
by
DeanF
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added Python35 and Python36 to list of possible versions
parent
8c5545aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
pyrasite/win/inject_python.cpp
pyrasite/win/inject_python.cpp
+3
-3
No files found.
pyrasite/win/inject_python.cpp
View file @
a7a4f69a
...
...
@@ -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
]
=
{
"Python3
6"
,
"Python35"
,
"Python3
4"
,
"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
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment