summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-04-10 18:17:38 (GMT)
committerhobbs <hobbs@noemail.net>2000-04-10 18:17:38 (GMT)
commit827e24b3436dc0af025b4b369bb3993efc71c210 (patch)
tree95e6ace450dfd0b7221df1e8b11f99f779615eca /generic
parentc702eea36e0507e9ccd23a13bb0b94c1e33b406f (diff)
downloadtcl-827e24b3436dc0af025b4b369bb3993efc71c210.zip
tcl-827e24b3436dc0af025b4b369bb3993efc71c210.tar.gz
tcl-827e24b3436dc0af025b4b369bb3993efc71c210.tar.bz2
* generic/tcl.h: removed specific typedef of Tcl_ThreadCreateProc
for Windows as the build choked. It seems to be OK using the Unix fallback (void). FossilOrigin-Name: 484f58332af36ebe764db73dff6951fd637d7a7a
Diffstat (limited to 'generic')
-rw-r--r--generic/tcl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 8bc298a..e1396de 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -12,7 +12,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tcl.h,v 1.65 2000/04/09 16:04:17 kupries Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.66 2000/04/10 18:17:41 hobbs Exp $
*/
#ifndef _TCL
@@ -395,8 +395,6 @@ typedef struct Tcl_Var_ *Tcl_Var;
#ifdef MAC_TCL
typedef pascal void *(Tcl_ThreadCreateProc) _ANSI_ARGS_((ClientData clientData));
-#elif defined __WIN32__
-typedef unsigned __stdcall (Tcl_ThreadCreateProc) _ANSI_ARGS_((ClientData clientData));
#else
typedef void (Tcl_ThreadCreateProc) _ANSI_ARGS_((ClientData clientData));
#endif