函数参考


_WinAPI_GetProcAddress

返回指定动态链接库(DLL)中函数的地址.

#include <WinAPI.au3>
_WinAPI_GetProcAddress($hModule, $vName)

参数

$hModule 包含函数的 DLL 模块句柄.
$vName 导出函数或者导出变量的名称,或者一个函数的顺序值

返回值

成功: 返回导出函数/变量的地址.
失败: 返回 0

注意/说明


相关

_WinAPI_LoadLibrary, _WinAPI_LoadLibraryEx, _WinAPI_GetModuleHandle

详情参考

在MSDN中搜索


示例/演示


#include <WinAPI.au3>

; Get handle of the loaded module
Local $hModule = _WinAPI_GetModuleHandle("kernel32.dll")

If $hModule Then
    Local $pFunction = _WinAPI_GetProcAddress($hModule, "CreateFiber")
    ConsoleWrite("The address of the function is " & $pFunction & @CRLF)

    ; Do whatever here

EndIf