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.
22 lines
1.1 KiB
22 lines
1.1 KiB
// --------------------------------------------------------------------------------
|
|
// Ixputil.h
|
|
// Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
|
|
// --------------------------------------------------------------------------------
|
|
#ifndef __IXPUTIL_H
|
|
#define __IXPUTIL_H
|
|
|
|
// --------------------------------------------------------------------------------
|
|
// Host Name Utilities
|
|
// --------------------------------------------------------------------------------
|
|
void StripIllegalHostChars(LPSTR pszSrc, LPSTR pszDst, DWORD cchSize);
|
|
HRESULT HrInitializeWinsock(void);
|
|
void UnInitializeWinsock(void);
|
|
LPSTR SzGetLocalPackedIP(void);
|
|
LPSTR SzGetLocalHostNameForID(void);
|
|
LPSTR SzGetLocalHostName(void);
|
|
BOOL FEndRetrRecvBody(LPTSTR pszLines, ULONG cbRead, ULONG *pcbSubtract);
|
|
LPSTR PszGetDomainName(void);
|
|
void UnStuffDotsFromLines(LPSTR pszBuffer, INT *pcchBuffer);
|
|
BOOL FEndRetrRecvBodyNews(LPSTR pszLines, ULONG cbRead, ULONG *pcbSubtract);
|
|
void SkipWhitespace (LPCTSTR lpcsz, ULONG *pi);
|
|
#endif // __IXPUTIL_H
|