Mike McCormack mike@codeweavers.com writes:
diff -u -p -r1.1 domdoc.c --- dlls/msxml3/tests/domdoc.c 12 Aug 2005 11:25:05 -0000 1.1 +++ dlls/msxml3/tests/domdoc.c 20 Aug 2005 07:38:47 -0000 @@ -27,59 +27,65 @@ #include "xmldom.h" #include <stdio.h>
+#ifndef STANDALONE #include "wine/test.h" +#else +#define ok(cond,str) do{ if(!(cond)) fprintf(stderr,"line %d: %s",__LINE__,str); }while (0) +#endif
Please don't add that sort of thing again, simply copy wine/test.h over to Windows and build with -DSTANDALONE.