枚举二进制模块指定类型的资源.
#Include <WinAPIEx.au3>
_WinAPI_EnumResourceNames ( $sModule, $sType )
$sModule | 模块句柄. |
$sType | 资源的类型. 参数可以是字符串或整数类型. |
成功: | 返回资源类型名称的数组. |
失败: | 返回 0,设置@error标志为非 0 值. |
在MSDN中搜索
#Include <APIConstants.au3>
#Include <Array.au3>
#Include <WinAPIEx.au3>
Opt('MustDeclareVars', 1)
Global $Data = _WinAPI_EnumResourceNames(@SystemDir & '\shell32.dll', $RT_DIALOG)
_ArrayDisplay($Data, '_WinAPI_EnumResourceNames')