]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - unix/uxprint.c
New function ltime() returns a struct tm of the current local time.
[PuTTY.git] / unix / uxprint.c
index 77bcb7f1201b4256f857b5532754009ab8b61b80..7d01aeb4fb65bcfb727e8c7964caf351527fec77 100644 (file)
@@ -41,3 +41,17 @@ void printer_finish_job(printer_job *pj)
     pclose(pj->fp);
     sfree(pj);
 }
+
+/*
+ * There's no sensible way to enumerate printers under Unix, since
+ * practically any valid Unix command is a valid printer :-) So
+ * these are useless stub functions, and uxcfg.c will disable the
+ * drop-down list in the printer configurer.
+ */
+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) { }