即使暂停PID,为什么我的进程暂停?

时间:2017-03-06 14:39:34

标签: c++ memory memory-management suspend

所以我刚开始使用进程暂停,我一直在寻找不同的方法,引起我注意的是这种方法..

您将在下面看到的代码获取在我启动应用程序之前打开的记事本的进程ID(PID),然后应该暂停它吗? 至少这就是我一直在读的东西,但是当我运行它时根本不会暂停它。怎么样?

#include<iostream>
#include<Windows.h>

using namespace std;


void suspend()
{
    DWORD processId = 0x8788; 
    DebugActiveProcess(processId);
    system("pause");
    return;
}

void main() {
    suspend();
    return;
}

0 个答案:

没有答案