📄 processinfo.cpp
字号:
#include "ProcessInfo.h"
using namespace MonAPI;
ProcessInfo::ProcessInfo(int dummy /*= NULL */) : tid(THREAD_UNKNOWN), parent(THREAD_UNKNOWN)
{
}
ProcessInfo::ProcessInfo(const ProcessInfo& pi)
: tid(pi.tid), parent(pi.parent), name(pi.name), path(pi.path)
{
}
ProcessInfo::ProcessInfo(dword tid, dword parent, const CString& name, const CString& path)
: tid(tid), parent(parent), name(name), path(path)
{
}
ProcessInfo& ProcessInfo::operator =(const ProcessInfo& pi)
{
this->tid = pi.tid;
this->parent = pi.parent;
this->name = pi.name;
this->path = pi.path;
return *this;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -