基本适应win7,win10,win server 08,win server 12,win server 16的截图

This commit is contained in:
2025-01-03 23:00:47 +08:00
parent 909b89dfce
commit 84362607c2
77 changed files with 69638 additions and 1 deletions

12
common/context.go Normal file
View File

@@ -0,0 +1,12 @@
package common
import "context"
func Opened(_ctx context.Context) bool {
select {
case <-_ctx.Done():
return false
default:
return true
}
}