Another attempt at fixing windows build

This commit is contained in:
Jan Dalheimer
2014-02-15 19:07:01 +01:00
parent c0e58fbfb2
commit 3b236483df
2 changed files with 8 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
#include "BaseProfiler.h"
#include <QProcess>
#ifdef Q_OS_WIN
#include <windows.h>
#endif
BaseProfiler::BaseProfiler(OneSixInstance *instance, QObject *parent)
: QObject(parent), m_instance(instance)
@@ -18,10 +21,11 @@ void BaseProfiler::beginProfiling(MinecraftProcess *process)
qint64 BaseProfiler::pid(QProcess *process)
{
#ifdef Q_OS_UNIX
return process->pid();
#ifdef Q_OS_WIN
struct _PROCESS_INFORMATION *procinfo = process->pid();
return procinfo->dwProcessId;
#else
return (qint64)process->pid();
return process->pid();
#endif
}