c5_labsci/zciyon/sys_win.go
2026-01-27 00:52:00 +08:00

15 lines
220 B
Go

//go:build windows
// +build windows
package zciyon
//c "ciyon/zciyon"
func Ciy_sys_getdisk(drive string) map[string]int {
ret := map[string]int{}
ret["all"] = 0
ret["free"] = 0
ret["available"] = 0
return ret
}