Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
630 B

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. autodial.h
  5. Abstract:
  6. This module contains definitions for
  7. Autodial support in Winsock.
  8. Author:
  9. Anthony Discolo (adiscolo) 15-May-1996
  10. Revision History:
  11. --*/
  12. VOID
  13. InitializeAutodial(VOID);
  14. VOID
  15. UninitializeAutodial(VOID);
  16. BOOL
  17. WSAttemptAutodialAddr(
  18. IN const struct sockaddr FAR *name,
  19. IN int namelen
  20. );
  21. BOOL
  22. WSAttemptAutodialName(
  23. IN const LPWSAQUERYSETW lpqsRestrictions
  24. );
  25. VOID
  26. WSNoteSuccessfulHostentLookup(
  27. IN const char FAR *name,
  28. IN const ULONG ipaddr
  29. );