函数参考


_WinAPI_EnumChildProcess

枚举指定进程的子进程.

#Include <WinAPIEx.au3>
_WinAPI_EnumChildProcess ( [$PID] )

参数

$PID [可选参数] 进程 PID. 默认 0, 为当前进程.

返回值

成功: 返回包含进程 PID 与进程名的二维数组.
[0][0] - 数组的行数 (n)
[0][1] - 未使用
[n][0] - 进程 PID
[n][1] - 进程名
失败: 返回 0,并设置@error标志为非 0 值.

注意/说明

None

相关

详情参考

None

示例/演示


#Include <Array.au3>
#Include <WinAPIEx.au3>

Opt('MustDeclareVars', 1)

Global $Data = _WinAPI_EnumChildProcess(_WinAPI_GetParentProcess())

_ArrayDisplay($Data, '_WinAPI_EnumChildProcess')