summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipdfm-x/tfm.h
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2014-09-15 09:43:03 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2014-09-15 09:43:03 +0000
commit3e926073114d4f044bcc02ba243023dea4aafa97 (patch)
treed02e671c23d15b0d0ee6e1cbf4086c6c3fe4a6ad /Build/source/texk/dvipdfm-x/tfm.h
parentac391ad3f024072af6dbc29e6242e01626fa68e3 (diff)
texk/dvipdfm-x: General cleanup: No reason to use long for 32-bit integers
git-svn-id: svn://tug.org/texlive/trunk@35176 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipdfm-x/tfm.h')
-rw-r--r--Build/source/texk/dvipdfm-x/tfm.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/texk/dvipdfm-x/tfm.h b/Build/source/texk/dvipdfm-x/tfm.h
index 5c393ad20ed..7ce1a688ab1 100644
--- a/Build/source/texk/dvipdfm-x/tfm.h
+++ b/Build/source/texk/dvipdfm-x/tfm.h
@@ -30,15 +30,15 @@ extern void tfm_set_verbose (void);
extern int tfm_open (const char * tex_name, int must_exist);
extern void tfm_close_all (void);
-extern double tfm_get_width (int font_id, SIGNED_QUAD ch);
+extern double tfm_get_width (int font_id, int32_t ch);
#if 0
-extern double tfm_get_height (int font_id, SIGNED_QUAD ch);
-extern double tfm_get_depth (int font_id, SIGNED_QUAD ch);
+extern double tfm_get_height (int font_id, int32_t ch);
+extern double tfm_get_depth (int font_id, int32_t ch);
#endif
-extern fixword tfm_get_fw_width (int font_id, SIGNED_QUAD ch);
-extern fixword tfm_get_fw_height (int font_id, SIGNED_QUAD ch);
-extern fixword tfm_get_fw_depth (int font_id, SIGNED_QUAD ch);
+extern fixword tfm_get_fw_width (int font_id, int32_t ch);
+extern fixword tfm_get_fw_height (int font_id, int32_t ch);
+extern fixword tfm_get_fw_depth (int font_id, int32_t ch);
extern fixword tfm_string_width (int font_id, const unsigned char *s, unsigned len);
extern fixword tfm_string_depth (int font_id, const unsigned char *s, unsigned len);