master
go 12 lines 149 Bytes
Raw
1 // File descriptor counting via Windows Handle API.
2 //go:build windows
3
4 package fd
5
6 import (
7 "math"
8 )
9
10 func GetNumFDs() int {
11 return math.MaxInt
12 }