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.

69 lines
959 B

  1. /*++
  2. Copyright(c) 1995 Microsoft Corporation
  3. MODULE NAME
  4. access.h
  5. ABSTRACT
  6. Header file for address accessibility routines.
  7. AUTHOR
  8. Anthony Discolo (adiscolo) 27-Jul-1995
  9. REVISION HISTORY
  10. --*/
  11. LPTSTR
  12. IpAddressToNetbiosName(
  13. IN LPTSTR pszIpAddress,
  14. IN HPORT hPort
  15. );
  16. LPTSTR
  17. IpxAddressToNetbiosName(
  18. IN LPTSTR pszIpxAddress
  19. );
  20. VOID
  21. StringToNodeNumber(
  22. IN PCHAR pszString,
  23. OUT PCHAR pszNode
  24. );
  25. VOID
  26. NodeNumberToString(
  27. IN PCHAR pszNode,
  28. OUT PCHAR pszString
  29. );
  30. BOOLEAN
  31. NetbiosFindName(
  32. IN LPTSTR *pszDevices,
  33. IN DWORD dwcDevices,
  34. IN LPTSTR pszAddress
  35. );
  36. struct hostent *
  37. InetAddressToHostent(
  38. IN LPTSTR pszIpAddress
  39. );
  40. struct hostent *
  41. IpAddressToHostent(
  42. IN LPTSTR pszIpAddress
  43. );
  44. BOOLEAN
  45. PingIpAddress(
  46. IN LPTSTR pszIpAddress
  47. );
  48. VOID
  49. LoadIcmpDll(VOID);
  50. VOID
  51. UnloadIcmpDll(VOID);
  52.