英文: Use structs with Golang syscall on Windows? 问题 EnumPrinters Win32函数接受一个参数_Out_ LPBYTE pPrinterEn...
Golang:如何在不使用cgo的情况下调用Win32 API?
英文: Golang: how can I call win32 API without cgo? 问题 我正在尝试调用secur32.dll中的GetUserNameEx函数,代码如下: dll, ...
在Golang中加密Windows的远程桌面(RDP)密码
英文: windows encrypted rdp passwords in golang 问题 像这样的代码可以在http://play.golang.org/p/fD7mx2k4Yc找到。 窗口r...
winapi的GetSystemTimes函数无法填充lpIdleTime/lpKernelTime/lpUserTime参数。
英文: winapi GetSystemTimes function does not fill lpIdleTime/lpKernelTime/lpUserTime 问题 我被卡在GetSystem...
从`unsafe.Pointer`获取特定字节片段的最佳(最安全+最高性能)方法是什么?
英文: What is the best (safest + most performant) way of getting a specific slice of bytes from an uns...
通过Winspool打印
英文: Printing via Winspool 问题 我正在尝试为一个网站设置一种打印服务,用于与之通信并发送可打印文档(pdf、html、excel)。我决定使用Go语言。 我创建了下面这个简单...
在Go中请求UAC提升权限
英文: Request UAC elevation in Go 问题 有没有办法在Go语言中将新的进程或线程提升为管理员权限? 在Go语言中似乎没有ShellExecute()函数,并且使用Creat...
我遇到了syscall.Syscall和WinAPI的问题。
英文: Having trouble with syscall.Syscall and the WinAPI 问题 我正在尝试使用Window API中的VkKeyScan,但是每次调用该函数时程序都...
如何在Windows上使用golang验证父进程是否已退出?
英文: How to verify that parent process has exited in golang on Windows? 问题 所以我正在编写一个小工具,应该能够更新自身(替换自己...
Windows Hooks with golang
英文: Windows Hooks with golang 问题 我正在编写一个应用程序,将利用Win32 API的WH_KEYBOARD钩子,以便在没有焦点的情况下激活(即在前台显示)。回调函数自然...
14