1 Jun
2006
1 Jun
'06
9:15 a.m.
Detlef Riekenberg <wine.dev(a)web.de> writes:
+ SetLastError(0xdeadbeef); + res = GetPrintProcessorDirectoryA(NULL, NULL, 1, NULL, 0, &cbBuf); + if(!res && ( (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) || + (GetLastError() == 0xdeadbeef) )) { + trace("Not implemented yet\n"); + return; + }
Unless there really is a Windows version that fails here, this test is wrong. Things that are not implemented yet in Wine should be marked with todo_wine, not ignored. -- Alexandre Julliard julliard(a)winehq.org