如何从Autohotkey调用Dll?

时间:2019-05-20 01:59:59

标签: dll autohotkey

我计划从autohotkey调用c ++ dll 但我无法使其工作。 如果有人帮助我非常感谢

这是我做过的尝试 并返回null

   hModule := DllCall("LoadLibrary", "Str", "Captcha.dll", "Ptr")
CaptchaProc := DllCall("GetProcAddress", "Ptr", hModule, "AStr", 
"CaptchaProc", "Ptr")
test := DllCall(CaptchaProc, "Str", "test.png", "Str*", out)
MsgBox, %out%
MsgBox, %test%

这是captcha.dll中的暴露部分

void CaptchaProc(char* path, char* output) {
Mat frame = imread(path), blob;

谢谢!

0 个答案:

没有答案