#define IRCport 6667 #define HTTPport 80 #define FreenodeHost "irc.freenode.net" #include #define WIN32_MEAN_AND_LEAN #include #include //NetBot is written By Adar Grof, don't fuck wimme man... seriously... well you can try #include unsigned long ResolveHost(const char *pServerName); void RecievePackets(SOCKET mySocket); bool CheckString(int Word_Length,char word[],int String_Length,char string[]); using namespace std; class HRException { public: HRException() : m_pMessage("") {} virtual ~HRException() {} HRException(const char *pMessage) : m_pMessage(pMessage) {} const char * what() { return m_pMessage; } private: const char *m_pMessage; };