1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-04 21:12:47 -05:00

Unix can't sensibly enumerate printers (since they're defined as

being lpr commands), so the Unix config box now replaces the printer
combo box with an ordinary edit box.

[originally from svn r3063]
This commit is contained in:
Simon Tatham
2003-04-05 16:12:52 +00:00
parent 30497ff683
commit 09c9f31289
5 changed files with 34 additions and 22 deletions

View File

@ -94,14 +94,6 @@ int decode_codepage(char *cp_name)
return -2;
}
printer_enum *printer_start_enum(int *nprinters_ptr) {
*nprinters_ptr = 0;
return NULL;
}
char *printer_get_name(printer_enum *pe, int i) { return NULL;
}
void printer_finish_enum(printer_enum *pe) { }
const char *const appname = "PuTTY";
Backend *select_backend(Config *cfg)