欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C语言 TerminateProcess函数案例详解

程序员文章站 2022-06-22 08:50:33
terminateprocess 顾名思义,就是终止进程的意思。是windowsapi的函数,示例代码如下:// demo.cpp : 定义控制台应用程序的入口点。//终止进程demo #includ...

terminateprocess 顾名思义,就是终止进程的意思。

是windowsapi的函数,

示例代码如下:

// demo.cpp : 定义控制台应用程序的入口点。
//终止进程demo
 
#include "stdafx.h"
 
using namespace std;
 
//@param:dwpid:指定需要关闭的进程pid
int closeprocess(dword dwpid)
{
	handle hprocess = openprocess(process_terminate,false,dwpid);
 
	if (hprocess)
	{
		terminateprocess(hprocess,-1);
	}
	return 0;
}
 
int _tmain(int argc, _tchar* argv[])
{
	closeprocess(9188);
	return 0;
}
 

到此这篇关于c语言 terminateprocess函数案例详解的文章就介绍到这了,更多相关c语言 terminateprocess函数内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!