First, I really want to know what API is DllCallAddress used?
Second, I have this code
#include <Winapi.au3>
$SOCKETID = _GetSocketId()
$hModule = _WinAPI_GetModuleHandle("Ws2_32.dll")
$pProc = _WinAPI_GetProcAddress($hModule, "send")
$pBuffer = DllStructCreate("byte[5]")
DllStructSetData($pBuffer, 1, Binary("0x2EE96B457B"))
$ret = DllCallAddress("int", $pProc, "dword", $SOCKETID, "ptr", DllStructGetPtr($pBuffer), "int", DllStructGetSize($pBuffer), "int", Null)
Then, I get @error = 1 (not have in help document) and $ret = ""
So, anybody help me about this problem, I'll thks that person