user32: test what FindWindow when window isn't found

Juan Lang juan.lang at gmail.com
Thu Aug 14 11:07:45 CDT 2008


Hi Austin,

+    found = FindWindow("SomeWindowThatDoesNotExist", NULL);
+    if(found) {
+      printf("found not NULL");
+    }

Please don't use printf in the tests.  If you must log something, use
trace, but I don't think it's that useful in this case, since we
really expect it not to be found.
--Juan



More information about the wine-devel mailing list