diff options
Diffstat (limited to 'unix/tclUnixPort.h')
| -rw-r--r-- | unix/tclUnixPort.h | 74 | 
1 files changed, 29 insertions, 45 deletions
| diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index 63c500d..f64d453 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -21,10 +21,6 @@  #ifndef _TCLUNIXPORT  #define _TCLUNIXPORT - -#ifndef MODULE_SCOPE -#define MODULE_SCOPE	extern -#endif  /*   *--------------------------------------------------------------------------- @@ -89,26 +85,31 @@ typedef off_t		Tcl_SeekOffset;  #   define SOCKET unsigned int  #   define WSAEWOULDBLOCK 10035      typedef unsigned short WCHAR; -    DLLIMPORT extern __stdcall int GetModuleHandleExW(unsigned int, const char *, void *); -    DLLIMPORT extern __stdcall int GetModuleFileNameW(void *, const char *, int); -    DLLIMPORT extern __stdcall int WideCharToMultiByte(int, int, const char *, int, +    __declspec(dllimport) extern __stdcall int GetModuleHandleExW(unsigned int, const char *, void *); +    __declspec(dllimport) extern __stdcall int GetModuleFileNameW(void *, const char *, int); +    __declspec(dllimport) extern __stdcall int WideCharToMultiByte(int, int, const char *, int,  	    const char *, int, const char *, const char *); -    DLLIMPORT extern __stdcall int MultiByteToWideChar(int, int, const char *, int, +    __declspec(dllimport) extern __stdcall int MultiByteToWideChar(int, int, const char *, int,  	    WCHAR *, int); -    DLLIMPORT extern __stdcall void OutputDebugStringW(const WCHAR *); -    DLLIMPORT extern __stdcall int IsDebuggerPresent(); - -    DLLIMPORT extern int cygwin_conv_path(int, const void *, void *, int); -    DLLIMPORT extern int cygwin_conv_path_list(int, const void *, void *, int); +    __declspec(dllimport) extern __stdcall void OutputDebugStringW(const WCHAR *); +    __declspec(dllimport) extern __stdcall int IsDebuggerPresent(); +    __declspec(dllimport) extern __stdcall int GetLastError(); +    __declspec(dllimport) extern __stdcall int GetFileAttributesW(const WCHAR *); +    __declspec(dllimport) extern __stdcall int SetFileAttributesW(const WCHAR *, int); + +    __declspec(dllimport) extern int cygwin_conv_path(int, const void *, void *, int); +    __declspec(dllimport) extern int cygwin_conv_path_list(int, const void *, void *, int);  #   define USE_PUTENV 1  #   define USE_PUTENV_FOR_UNSET 1  /* On Cygwin, the environment is imported from the Cygwin DLL. */ +#ifndef __x86_64__  #   define environ __cygwin_environ +    extern char **__cygwin_environ; +#endif  #   define timezone _timezone -    DLLIMPORT extern char **__cygwin_environ; -    MODULE_SCOPE int TclOSstat(const char *name, Tcl_StatBuf *statBuf); -    MODULE_SCOPE int TclOSlstat(const char *name, Tcl_StatBuf *statBuf); -#elif defined(HAVE_STRUCT_STAT64) +    extern int TclOSstat(const char *name, void *statBuf); +    extern int TclOSlstat(const char *name, void *statBuf); +#elif defined(HAVE_STRUCT_STAT64) && !defined(__APPLE__)  #   define TclOSstat		stat64  #   define TclOSlstat		lstat64  #else @@ -126,9 +127,7 @@ typedef off_t		Tcl_SeekOffset;  #ifdef HAVE_SYS_SELECT_H  #   include <sys/select.h>  #endif -#ifdef HAVE_SYS_STAT_H -#   include <sys/stat.h> -#endif +#include <sys/stat.h>  #if TIME_WITH_SYS_TIME  #   include <sys/time.h>  #   include <time.h> @@ -159,7 +158,7 @@ typedef off_t		Tcl_SeekOffset;  #   include "../compat/unistd.h"  #endif -MODULE_SCOPE int	TclUnixSetBlockingMode(int fd, int mode); +extern int TclUnixSetBlockingMode(int fd, int mode);  #include <utime.h> @@ -319,7 +318,7 @@ MODULE_SCOPE int	TclUnixSetBlockingMode(int fd, int mode);  #endif  #ifdef GETTOD_NOT_DECLARED -MODULE_SCOPE int	gettimeofday(struct timeval *tp, +extern int	gettimeofday(struct timeval *tp,  			    struct timezone *tzp);  #endif @@ -584,19 +583,6 @@ extern char **		environ;  /*   *--------------------------------------------------------------------------- - * The termios configure test program relies on the configure script being run - * from a terminal, which is not the case e.g., when configuring from Xcode. - * Since termios is known to be present on all Mac OS X releases since 10.0, - * override the configure defines for serial API here. [Bug 497147] - *--------------------------------------------------------------------------- - */ - -#   define USE_TERMIOS 1 -#   undef USE_TERMIO -#   undef USE_SGTTY - -/* - *---------------------------------------------------------------------------   * Include AvailabilityMacros.h here (when available) to ensure any symbolic   * MAC_OS_X_VERSION_* constants passed on the command line are translated.   *--------------------------------------------------------------------------- @@ -717,8 +703,6 @@ typedef int socklen_t;  #ifdef TCL_THREADS  #   include <pthread.h> -#   undef inet_ntoa -#   define inet_ntoa(x)	TclpInetNtoa(x)  #endif /* TCL_THREADS */  /* FIXME - Hyper-enormous platform assumption! */ @@ -737,15 +721,15 @@ typedef int socklen_t;  #include <pwd.h>  #include <grp.h> -MODULE_SCOPE struct passwd *	TclpGetPwNam(const char *name); -MODULE_SCOPE struct group *	TclpGetGrNam(const char *name); -MODULE_SCOPE struct passwd *	TclpGetPwUid(uid_t uid); -MODULE_SCOPE struct group *	TclpGetGrGid(gid_t gid); -MODULE_SCOPE struct hostent *	TclpGetHostByName(const char *name); -MODULE_SCOPE struct hostent *	TclpGetHostByAddr(const char *addr, +extern struct passwd *	TclpGetPwNam(const char *name); +extern struct group *	TclpGetGrNam(const char *name); +extern struct passwd *	TclpGetPwUid(uid_t uid); +extern struct group *	TclpGetGrGid(gid_t gid); +extern struct hostent *	TclpGetHostByName(const char *name); +extern struct hostent *	TclpGetHostByAddr(const char *addr,  				    int length, int type); -MODULE_SCOPE Tcl_Channel	TclpMakeTcpClientChannelMode( -				    ClientData tcpSocket, int mode); +extern void *TclpMakeTcpClientChannelMode( +				    void *tcpSocket, int mode);  #endif /* _TCLUNIXPORT */ | 
