[pywin32-checkins] pywin32/Pythonwin stddde.cpp,1.2,1.3
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2004-10-06 05:19:05
|
Update of /cvsroot/pywin32/pywin32/Pythonwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18353 Modified Files: stddde.cpp Log Message: Give the app 60 seconds to respond to a DDE request before we assume it timed out - useful when talking to DDE database apps, for example. Index: stddde.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/stddde.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** stddde.cpp 20 Jan 2004 22:28:52 -0000 1.2 --- stddde.cpp 6 Oct 2004 05:18:54 -0000 1.3 *************** *** 10,14 **** // ! #define DDE_TIMEOUT 5000 // 5 seconds // --- 10,14 ---- // ! #define DDE_TIMEOUT 60000 // a minute. // |