summaryrefslogtreecommitdiff
path: root/Build/source/texk/ps2pk/pkout.h
diff options
context:
space:
mode:
authorDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
committerDenis Bitouzé <dbitouze@wanadoo.fr>2021-02-25 18:23:07 +0000
commitc6101f91d071883b48b1b4b51e5eba0f36d9a78d (patch)
tree1bf7f5a881d7a4f5c5bf59d0b2821943dd822372 /Build/source/texk/ps2pk/pkout.h
parent07ee7222e389b0777456b427a55c22d0e6ffd267 (diff)
French translation for tlmgr updated
git-svn-id: svn://tug.org/texlive/trunk@57912 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/ps2pk/pkout.h')
-rw-r--r--Build/source/texk/ps2pk/pkout.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/Build/source/texk/ps2pk/pkout.h b/Build/source/texk/ps2pk/pkout.h
deleted file mode 100644
index a22d9f90153..00000000000
--- a/Build/source/texk/ps2pk/pkout.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/* FILE: pkout.h
- * PURPOSE: interface to te PK output functions (pkfile.c)
- * COMMENT: See the pktest.c example program how to use the PK functions.
- * (see README for license)
- */
-
-/* A function for opening a pk file */
-void pk_open(char *name);
-
-/* A function for closing a pk file */
-void pk_close(void);
-
-/* A function for writing the preamble */
-void pk_preamble(char *comment, /* comment string: source of font */
- float pointsize, /* design size in points */
- int32_t checksum, /* checksum */
- unsigned int h_res, /* horizontal resolution (dpi) */
- unsigned int v_res); /* vertical resolution (dpi) */
-
-/* For packing a character */
-void pk_char(int char_code, /* character code 0..255 */
- int32_t tfm_width, /* TFM width of character */
- int h_escapement, /* horizontal escapement in pixels */
- unsigned int width, /* width of bounding box */
- unsigned int height, /* height of bounding box */
- int h_offset, /* horizontal offset to reference point */
- int v_offset, /* vertical offset to reference point */
- int (*next_pixel)()); /* user's pixel generator */
-
-/* Barebone postample */
-void pk_postamble(void);
-
-/* PS2PK postamble */
-void ps2pk_postamble(char *fontname, /* The real FontName from the afm */
- char *encname, /* The actual name, not the filename */
- int base_res, /* basic resolution */
- int h_res, /* Match against base_res for mag */
- int v_res, /* Match against h_res for aspect_ratio */
- float pointsize, /* Used for fontfacebyte calculation */
- char *args); /* Essential ps2pk args */
-
-/* Here are some definitions to play with pixels */
-#define BLACK 1
-#define WHITE 0
-#define OTHER(pixel) (pixel==BLACK? WHITE: BLACK)