541
542
543
544
545
546
547
548
549
550
551
552
553
554
|
#undef TCL_STORAGE_CLASS
#define TCL_STORAGE_CLASS DLLIMPORT
#undef TclpLocaltime_unix
#undef TclpGmtime_unix
#undef TclWinConvertWSAError
#define TclWinConvertWSAError TclWinConvertError
#if defined(__WIN32__) || defined(__CYGWIN__)
# undef TclWinNToHS
# define TclWinNToHS ntohs
#else
# undef TclpGetPid
# define TclpGetPid(pid) ((unsigned long) (pid))
|
>
>
|
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
|
#undef TCL_STORAGE_CLASS
#define TCL_STORAGE_CLASS DLLIMPORT
#undef TclpLocaltime_unix
#undef TclpGmtime_unix
#undef TclWinConvertWSAError
#define TclWinConvertWSAError TclWinConvertError
#undef TclpInetNtoa
#define TclpInetNtoa inet_ntoa
#if defined(__WIN32__) || defined(__CYGWIN__)
# undef TclWinNToHS
# define TclWinNToHS ntohs
#else
# undef TclpGetPid
# define TclpGetPid(pid) ((unsigned long) (pid))
|