summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-04-13 02:30:42 (GMT)
committerhobbs <hobbs@noemail.net>2000-04-13 02:30:42 (GMT)
commit3fe32bf7425d3b89dd2123607d5aa37ac97f4a4c (patch)
tree24c98b79ff0d19636af7fdf8274ca5df66cc8000
parent33c83bf0ba05827aa2a19e4cf351c47027e76bfd (diff)
downloadtcl-3fe32bf7425d3b89dd2123607d5aa37ac97f4a4c.zip
tcl-3fe32bf7425d3b89dd2123607d5aa37ac97f4a4c.tar.gz
tcl-3fe32bf7425d3b89dd2123607d5aa37ac97f4a4c.tar.bz2
removed __stdcall decl for WIN32 case on ThreadCreate
FossilOrigin-Name: e8fa73f24d42d2aeec7493586fab30d66f1a3fea
-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