version.go 186 B

1234567
  1. package hcsshim
  2. // IsTP4 returns whether the currently running Windows build is at least TP4.
  3. func IsTP4() bool {
  4. // HNSCall was not present in TP4
  5. return procHNSCall.Find() != nil
  6. }