summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs>2000-04-13 02:30:43 (GMT)
committerhobbs <hobbs>2000-04-13 02:30:43 (GMT)
commitea583df4894de665dceb85787fa309841714079e (patch)
tree24c98b79ff0d19636af7fdf8274ca5df66cc8000
parent2665c2a80c83537e3c907be14343f59a42faec88 (diff)
downloadtcl-ea583df4894de665dceb85787fa309841714079e.zip
tcl-ea583df4894de665dceb85787fa309841714079e.tar.gz
tcl-ea583df4894de665dceb85787fa309841714079e.tar.bz2
removed __stdcall decl for WIN32 case on ThreadCreate
-rw-r--r--generic/tcl.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 4af2c79..42b488e 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.67 2000/04/10 22:44:15 welch Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.68 2000/04/13 02:30:43 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