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