initial commit

This commit is contained in:
i2p
2026-08-27 11:00:27 -06:00
commit 719b963520
94 changed files with 4747 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package hideconsole
import (
"syscall"
)
func Run() {
getWin := syscall.NewLazyDLL("kernel32.dll").NewProc("GetConsoleWindow")
showWin := syscall.NewLazyDLL("user32.dll").NewProc("ShowWindow")
hwnd, _, _ := getWin.Call()
_, _, _ = showWin.Call(hwnd, 0)
}