我计划从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;
谢谢!