windows-nt/Source/XPSP1/NT/net/rras/ras/autodial/rasauto/access.h
2020-09-26 16:20:57 +08:00

70 lines
890 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
Copyright(c) 1995 Microsoft Corporation
MODULE NAME
access.h
ABSTRACT
Header file for address accessibility routines.
AUTHOR
Anthony Discolo (adiscolo) 27-Jul-1995
REVISION HISTORY
--*/
LPTSTR
IpAddressToNetbiosName(
IN LPTSTR pszIpAddress,
IN HPORT hPort
);
LPTSTR
IpxAddressToNetbiosName(
IN LPTSTR pszIpxAddress
);
VOID
StringToNodeNumber(
IN PCHAR pszString,
OUT PCHAR pszNode
);
VOID
NodeNumberToString(
IN PCHAR pszNode,
OUT PCHAR pszString
);
BOOLEAN
NetbiosFindName(
IN LPTSTR *pszDevices,
IN DWORD dwcDevices,
IN LPTSTR pszAddress
);
struct hostent *
InetAddressToHostent(
IN LPTSTR pszIpAddress
);
struct hostent *
IpAddressToHostent(
IN LPTSTR pszIpAddress
);
BOOLEAN
PingIpAddress(
IN LPTSTR pszIpAddress
);
VOID
LoadIcmpDll(VOID);
VOID
UnloadIcmpDll(VOID);