Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25907
Modified Files:
stddde.cpp
Log Message:
Hopefully fix "bug [ 1414160 ] DDE sets off DEP", by not defining
_CALLHACK_ (and thereby disabling support for multiple DDE servers in
the same process.)
Index: stddde.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/stddde.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** stddde.cpp 6 Oct 2004 05:18:54 -0000 1.3
--- stddde.cpp 5 Feb 2006 07:32:58 -0000 1.4
***************
*** 2,6 ****
// From KB Article ID: Q92829
! #define _CALLHACK_
#include "stdafxdde.h"
--- 2,9 ----
// From KB Article ID: Q92829
! // See pywin32 bug [ 1414160 ] DDE sets off DEP (in demos and pythonwin too)
! // _CALLHACK_ appears to be the cause :(
! // #define _CALLHACK_
!
#include "stdafxdde.h"
|