WIN32创建进程CreateProcess
2021-01-07 09:29
标签:ssid lock handles form %x lin ack uri 指针 WIN32创建进程CreateProcess 标签:ssid lock handles form %x lin ack uri 指针 原文地址:https://www.cnblogs.com/ganxiang/p/13154021.htmlBOOL CreateProcess(
LPCTSTR 【lpApplicationName】, //指向可执行模块名称的指针
LPTSTR 【lpCommandLine】, //指向命令行字符串的指针
LPSECURITY_ATTRIBUTES 【lpProcessAttributes】, //指向进程安全属性的指针
LPSECURITY_ATTRIBUTES 【lpThreadAttributes】, //指向线程安全属性的指针
BOOL 【bInheritHandles】, //处理继承标志
DWORD 【dwCreationFlags】, //创建标志
LPVOID 【// pointer to new environment block】, //指向新的环境块
LPCTSTR 【lpCurrentDirectory】, //指向当前目录名称的指针
LPSTARTUPINFO 【lpStartupInfo】, //指向STARTUPINFO的指针
LPPROCESS_INFORMATION 【lpProcessInformation】 //指向PROCESS_INFORMATION的指针
);
// Process0617.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include
文章标题:WIN32创建进程CreateProcess
文章链接:http://soscw.com/index.php/essay/40674.html