Am Donnerstag, den 27.10.2005, 15:22 +0200 schrieb Jonathan Ernst:
Try4:Of printer dialog patch, with changes suggested by detlef Try5:Update RCs for other languages that are not two old (the remaining rcs are way too old to be updated with this patch)
Sorry, same failure again.
In Try 4 and Try 5, the first Check (*A and *W) was not modified.
+ EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &needed, &num); + if(num == 0)
Please Replace that section with:
+ needed = 0; + EnumPrintersW(PRINTER_ENUM_LOCAL, NULL, 2, NULL, 0, &needed, &num); + if(needed == 0) + {
The second check was ok.