v/vlib/x/websocket/websocket_windows.c.v

12 lines
144 B
V
Raw Normal View History

module websocket
import x.net
fn error_code() int {
return C.WSAGetLastError()
}
const (
error_ewouldblock = net.WsaError.wsaewouldblock
)