Go的网站是硬编码的,以显示
Linux上标准库包的文档.你需要得到godoc并自己运行:
原文链接:https://www.f2er.com/go/186892.htmlgo get golang.org/x/tools/cmd/godoc godoc --http=:6060
然后在您的网络浏览器中打开http://127.0.0.1:6060/.
值得注意的是package syscall,它提供了访问DLL中的函数的工具,包括UTF-16帮助程序和回调生成函数.
对Go树进行快速递归搜索说它特别没有GetLastInputInfo()的API,所以除非我遗漏了什么,否则你应该能够直接从DLL中调用该函数:
user32 := syscall.MustLoadDLL("user32.dll") // or NewLazyDLL() to defer loading getLastInputInfo := user32.MustFindProc("GetLastInputInfo") // or NewProc() if you used NewLazyDLL() // or you can handle the errors in the above if you want to provide some alternative r1,_,err := getLastInputInfo.Call(uintptr(arg)) // err will always be non-nil; you need to check r1 (the return value) if r1 == 0 { // in this case panic("error getting last input info: " + err.Error()) }
你的案子涉及一个结构.据我所知,您可以重新创建结构平面(保持字段的顺序相同),但您必须将原始字段中的任何int字段转换为int32,否则为things will break on 64-bit Windows.请参阅Windows Data Types page on MSDN以获取相应的类型.在你的情况下,这将是
var lastInputInfo struct { cbSize uint32 dwTime uint32 }
因为这(就像Windows API中的许多结构一样)有一个cbSize字段,要求你用结构的大小初始化它,我们也必须这样做:
lastInputInfo.cbSize = uint32(unsafe.Sizeof(lastInputInfo))
现在我们只需要将指向该lastInputInfo变量的指针传递给函数:
r1,err := getLastInputInfo.Call( uintptr(unsafe.Pointer(&lastInputInfo)))
并且只记得导入系统调用和不安全.
DLL / LazyDLL.Call()的所有args都是uintptr,r1返回也是如此. _ return永远不会在Windows上使用(它与使用的ABI有关).
由于我查看了你需要知道的大部分内容来使用Go中的Windows API,你无法通过阅读系统调用文档来收集,我也会说(如果上面的问题无关)如果一个函数同时具有在ANSI和Unicode版本中,您应该在syscall包中使用Unicode版本(W后缀)和UTF-16转换函数以获得最佳结果.
我认为,您(或任何人)在Go程序中需要使用Windows API的所有信息.