gpt4 book ai didi

winapi - 在 Windows Go 中使用 DLL

转载 作者:IT王子 更新时间:2023-10-29 02:27:17 26 4
gpt4 key购买 nike

我正在尝试在我的 Go 项目中使用专有 DLL。

其中一个 DLL 的方法描述如下所示:

BYTE*   Init(const BYTE* path, int id);

在我的测试 Go 项目中,我正在做类似的事情:

import (
"golang.org/x/sys/windows"
)

var (
lib = windows.MustLoadDLL("dllname.dll")
init = lib.MustFindProc("Init")
)

func main() {
path := "some"
bytePath = []byte(path)

init.Call(
uintptr(unsafe.Pointer(&bytePath)),
uintptr(9)
)
}

库被调用,出现错误消息“路径不存在”,但我认为我的路径类型不正确。这就是图书馆看不到该文件夹​​的原因。

也许有更好的方法?也许这是 Go 用法的一个糟糕案例,我应该找到一些包甚至语言?

最佳答案

您的路径可能需要以 NUL 终止:

import (
"golang.org/x/sys/windows"
)

var (
lib = windows.MustLoadDLL("dllname.dll")
init = lib.MustFindProc("Init")
)

func main() {
path := "some"
bytePath = []byte(path + "\x00")

init.Call(
uintptr(unsafe.Pointer(&bytePath[0])),
uintptr(9)
)
}

关于winapi - 在 Windows Go 中使用 DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47979699/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com