/***************************************************************************
                             winsockx.h
                             -------------------
    Begin                : Sun Oct 14,2001
    Objective            : Miscallanous winsock functions
    Author               : Drew Hall
    Email                : dhall@Zero-Soft.com
 ***************************************************************************/

#ifndef __WINSOCKX_H__
#define __WINSOCKX_H__

bool StartupWinsock();
bool ShutdownWinsock();



IPINFO** GetIPList();
int GetNumAddr(char **pzAddrList);
bool ValidateIP(IPINFO* pIPInfo);
int FindIP(IPINFO* pIPInfoSearch,IPINFO ** pIPInfoBlock);
bool IsIP(char *szHostName);


#endif





