#ifndef TCLCL_CONFIG_H
#define TCLCL_CONFIG_H

#ifdef WIN32

#include <windows.h>
#include <winsock.h>
typedef u_int UINT;

#ifndef TIMEZONE_DEFINED_
#define TIMEZONE_DEFINED_
struct timezone {
	int tz_minuteswest;
	int tz_dsttime;
};
#endif 
    
#if defined(__cplusplus)
extern "C" {
#endif
        int gettimeofday(struct timeval *tp, struct timezone *tz);
        void displayErr(const char* prefix);

#if defined(__cplusplus)
} /* end extern "C" */
#endif

        
#endif

#endif /*TCLCL_CONFIG_H*/
