使用 Go 存取 Windows 空閒時間
本指南提供了使用 Golang 擷取 Windows 系統空閒時間的解決方案。
在 Go 中存取 Windows API
取得 Windows 特定的系統資訊需要使用 syscall 套件。要存取 API,您需要取得 godoc 並在本地運行它:
go get golang.org/x/tools/cmd/godoc godoc --http=:6060
然後,在網頁瀏覽器中開啟 http://127.0.0.1:6060/。
取得最後的輸入資訊
Go 沒有 GetLastInputInfo() 的直接 API。但是,您可以直接從DLL 呼叫它:
<code class="go">user32 := syscall.MustLoadDLL("user32.dll") getLastInputInfo := user32.MustFindProc("GetLastInputInfo")</code>
設定結構
定義一個結構來儲存傳回值:
<code class="go">type LastInputInfo struct { cbSize uint32 dwTime uint32 }</code>
定義一個結構來儲存傳回值:
<code class="go">var lastInputInfo LastInputInfo lastInputInfo.cbSize = uint32(unsafe.Sizeof(lastInputInfo))</code>
使用結構體的大小初始化cbSize 欄位:
呼叫GetLastInputInfo
<code class="go">_, _, err := getLastInputInfo.Call( uintptr(unsafe.Pointer(&lastInputInfo)))) if err != nil { panic("error getting last input info: " + err.Error()) }</code>
將指向結構體的指標傳遞給函數:
記得導入syscall 和unsafe。
以上是如何使用 Go 檢索 Windows 空閒時間?的詳細內容。更多資訊請關注PHP中文網其他相關文章!