]> git.saurik.com Git - wxWidgets.git/commitdiff
Applied TRUE/FALSE fix here too.
authorRobin Dunn <robin@alldunn.com>
Mon, 15 Apr 2002 19:38:05 +0000 (19:38 +0000)
committerRobin Dunn <robin@alldunn.com>
Mon, 15 Apr 2002 19:38:05 +0000 (19:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15152 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/gsockmsw.c

index c966cfffc1ad8d1dc416df0fb13c67b17573f1ab..0d9c591cb683850940341e3b85d9b8c3c9520fd1 100644 (file)
 
 #include <winsock.h>
 
+/* don't use C++ TRUE/FALSE definition which we get from wx/defs.h */
+#undef TRUE
+#undef FALSE
+#define TRUE 1
+#define FALSE 0
+
 #ifdef _MSC_VER
 #  pragma warning(default:4115) /* named type definition in parentheses */
 #endif