diff options
author | welch <welch> | 1999-07-02 06:05:39 (GMT) |
---|---|---|
committer | welch <welch> | 1999-07-02 06:05:39 (GMT) |
commit | 77a4b3e4bb780523b51caec96494323aebc956af (patch) | |
tree | 61a977a67e46eafb4a968dd6c38842871dd31422 | |
parent | b032007a3ee9266d2a26475ff16d57e8412cf132 (diff) | |
download | tcl-77a4b3e4bb780523b51caec96494323aebc956af.zip tcl-77a4b3e4bb780523b51caec96494323aebc956af.tar.gz tcl-77a4b3e4bb780523b51caec96494323aebc956af.tar.bz2 |
Added hook points to the notifier
-rw-r--r-- | win/tclWinNotify.c | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/win/tclWinNotify.c b/win/tclWinNotify.c index 896d92c..a3d06f4 100644 --- a/win/tclWinNotify.c +++ b/win/tclWinNotify.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinNotify.c,v 1.3 1999/04/16 00:48:09 stanton Exp $ + * RCS: @(#) $Id: tclWinNotify.c,v 1.4 1999/07/02 06:05:39 welch Exp $ */ #include "tclWinInt.h" @@ -251,6 +251,16 @@ Tcl_SetTimer( UINT timeout; /* + * Allow the notifier to be hooked. This may not make sense + * on Windows, but mirrors the UNIX hook. + */ + + if (tclStubs.tcl_SetTimer != Tcl_SetTimer) { + tclStubs.tcl_SetTimer(timePtr); + return; + } + + /* * We only need to set up an interval timer if we're being called * from an external event loop. If we don't have a window handle * then we just return immediately and let Tcl_WaitForEvent handle @@ -407,6 +417,15 @@ Tcl_WaitForEvent( int status; /* + * Allow the notifier to be hooked. This may not make + * sense on windows, but mirrors the UNIX hook. + */ + + if (tclStubs.tcl_WaitForEvent != Tcl_WaitForEvent) { + return tclStubs.tcl_WaitForEvent(timePtr); + } + + /* * Compute the timeout in milliseconds. */ |