diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2001-10-18 09:03:58 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2001-10-18 09:03:58 (GMT) |
commit | 5b99df7fb39cda162ef9d9f4df5acc875f9f6016 (patch) | |
tree | 086be07d74d5410b312616b802b117bcef0ca6ba /win/tclWinChan.c | |
parent | b134b7beb27e5ccf73392ae7b9e8b0a04bad05a3 (diff) | |
download | tcl-5b99df7fb39cda162ef9d9f4df5acc875f9f6016.zip tcl-5b99df7fb39cda162ef9d9f4df5acc875f9f6016.tar.gz tcl-5b99df7fb39cda162ef9d9f4df5acc875f9f6016.tar.bz2 |
Various changes to make life much easier on non-UNIX platforms (mostly Win32.)
Diffstat (limited to 'win/tclWinChan.c')
-rw-r--r-- | win/tclWinChan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/tclWinChan.c b/win/tclWinChan.c index 78b7daf..b999772 100644 --- a/win/tclWinChan.c +++ b/win/tclWinChan.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinChan.c,v 1.15 2001/09/07 17:08:50 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinChan.c,v 1.15.6.1 2001/10/18 09:03:59 dkf Exp $ */ #include "tclWinInt.h" @@ -89,7 +89,7 @@ static int FileInputProc _ANSI_ARGS_((ClientData instanceData, char *buf, int toRead, int *errorCode)); static int FileOutputProc _ANSI_ARGS_((ClientData instanceData, char *buf, int toWrite, int *errorCode)); -static int FileSeekProc _ANSI_ARGS_((ClientData instanceData, +static Tcl_WideInt FileSeekProc _ANSI_ARGS_((ClientData instanceData, long offset, int mode, int *errorCode)); static void FileSetupProc _ANSI_ARGS_((ClientData clientData, int flags)); @@ -431,7 +431,7 @@ FileCloseProc(instanceData, interp) *---------------------------------------------------------------------- */ -static int +static Tcl_WideInt FileSeekProc(instanceData, offset, mode, errorCodePtr) ClientData instanceData; /* File state. */ long offset; /* Offset to seek to. */ |