所以我刚开始使用进程暂停,我一直在寻找不同的方法,引起我注意的是这种方法..
您将在下面看到的代码获取在我启动应用程序之前打开的记事本的进程ID(PID),然后应该暂停它吗? 至少这就是我一直在读的东西,但是当我运行它时根本不会暂停它。怎么样?
#include<iostream>
#include<Windows.h>
using namespace std;
void suspend()
{
DWORD processId = 0x8788;
DebugActiveProcess(processId);
system("pause");
return;
}
void main() {
suspend();
return;
}