⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 processinfo.cpp

📁 MONA是为数不多的C++语言编写的一个很小的操作系统
💻 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 + -