diff options
author | jingham <jingham> | 1999-08-05 06:17:51 (GMT) |
---|---|---|
committer | jingham <jingham> | 1999-08-05 06:17:51 (GMT) |
commit | e8dbc9b6baa1c05293a0f24a33bdf19885c8006a (patch) | |
tree | 72990997c4a61dc01e5487b875821c875e7566d4 | |
parent | c882b207152a2bedd3aef2fab8e95821f6bef28f (diff) | |
download | tcl-e8dbc9b6baa1c05293a0f24a33bdf19885c8006a.zip tcl-e8dbc9b6baa1c05293a0f24a33bdf19885c8006a.tar.gz tcl-e8dbc9b6baa1c05293a0f24a33bdf19885c8006a.tar.bz2 |
Declare the tclStubs table so we can use it to swap out Tcl_SetTimer and Tcl_WaitForEvent in this file.
-rw-r--r-- | mac/tclMacNotify.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mac/tclMacNotify.c b/mac/tclMacNotify.c index 89a4491..98c3c40 100644 --- a/mac/tclMacNotify.c +++ b/mac/tclMacNotify.c @@ -14,7 +14,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclMacNotify.c,v 1.4 1999/07/02 06:04:55 welch Exp $ + * RCS: @(#) $Id: tclMacNotify.c,v 1.5 1999/08/05 06:17:51 jingham Exp $ */ #include "tclInt.h" @@ -43,6 +43,13 @@ extern pascal QHdrPtr GetEventQueue(void) #endif /* + * Need this for replacing Tcl_SetTimer and Tcl_WaitForEvent defined + * in THIS file with ones defined in the stub table. + */ + +extern TclStubs tclStubs; + +/* * The follwing static indicates whether this module has been initialized. */ |