aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/postscript/download/download.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd/postscript/download/download.h')
-rw-r--r--src/cmd/postscript/download/download.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/cmd/postscript/download/download.h b/src/cmd/postscript/download/download.h
new file mode 100644
index 00000000..f88cc57a
--- /dev/null
+++ b/src/cmd/postscript/download/download.h
@@ -0,0 +1,14 @@
+/*
+ *
+ * The font data for a printer is saved in an array of the following type.
+ *
+ */
+
+typedef struct map {
+ char *font; /* a request for this PostScript font */
+ char *file; /* means copy this unix file */
+ int downloaded; /* TRUE after *file is downloaded */
+} Map;
+
+Map *allocate();
+