mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
24 lines
449 B
Go
Executable file
24 lines
449 B
Go
Executable file
//go:build windows
|
|
// +build windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func Console(show bool) {
|
|
var getWin = syscall.NewLazyDLL("kernel32.dll").NewProc("GetConsoleWindow")
|
|
var showWin = syscall.NewLazyDLL("user32.dll").NewProc("ShowWindow")
|
|
hwnd, _, _ := getWin.Call()
|
|
if hwnd == 0 {
|
|
return
|
|
}
|
|
if show {
|
|
var SW_RESTORE uintptr = 9
|
|
showWin.Call(hwnd, SW_RESTORE)
|
|
} else {
|
|
var SW_HIDE uintptr = 0
|
|
showWin.Call(hwnd, SW_HIDE)
|
|
}
|
|
}
|