Skip to content

Commit 85de77c

Browse files
committed
Also comment out the unsued popup thing
1 parent 5c94088 commit 85de77c

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

main.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ import (
1111
"net"
1212
"net/http"
1313
"os"
14-
"syscall"
1514
"time"
16-
"unsafe"
1715
)
1816

1917
// --- Configuration ---
@@ -628,6 +626,8 @@ func getLocalIPs() []string {
628626
}
629627
return ips
630628
}
629+
630+
/*
631631
func ShowPopup(title, text string) {
632632
var mod = syscall.NewLazyDLL("user32.dll")
633633
var proc = mod.NewProc("MessageBoxW")
@@ -639,6 +639,7 @@ func ShowPopup(title, text string) {
639639
// 0x00000030 = Icon Warning | 0x00000000 = OK button
640640
proc.Call(0, uintptr(unsafe.Pointer(m)), uintptr(unsafe.Pointer(t)), 0x30)
641641
}
642+
*/
642643

643644
func (d *DolphinHookManager) ReadSeed() (string, error) {
644645
if !d.IsHooked {

0 commit comments

Comments
 (0)