Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

23 rader
477 B

  1. // Copyright 2011 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package windows
  5. type WSAData struct {
  6. Version uint16
  7. HighVersion uint16
  8. Description [WSADESCRIPTION_LEN + 1]byte
  9. SystemStatus [WSASYS_STATUS_LEN + 1]byte
  10. MaxSockets uint16
  11. MaxUdpDg uint16
  12. VendorInfo *byte
  13. }
  14. type Servent struct {
  15. Name *byte
  16. Aliases **byte
  17. Port uint16
  18. Proto *byte
  19. }