#1170 Extract from Memory in Command Line 2

This commit is contained in:
2016-03-13 10:18:19 +01:00
parent 2d490115e7
commit 6bf39d05eb
7 changed files with 71 additions and 16 deletions
@@ -39,8 +39,8 @@ public class Win32Process implements Process {
public DWORD th32ProcessID;
@Override
public String getPid() {
return Long.toString(th32ProcessID.longValue());
public long getPid() {
return th32ProcessID.longValue();
}
public Win32Process(String filePath, String fileName, BufferedImage icon, DWORD th32ProcessID) {