summaryrefslogtreecommitdiff
path: root/Build/source/texk/makejvf/usrtable.h
diff options
context:
space:
mode:
authorTakuji Tanaka <KXD02663@nifty.ne.jp>2017-08-28 14:03:06 +0000
committerTakuji Tanaka <KXD02663@nifty.ne.jp>2017-08-28 14:03:06 +0000
commit71222cc7736ffe5c33a6e30b7747bdbed5c14285 (patch)
tree61c9c8b8412fab2a0a35c151f694f83ed1f173a5 /Build/source/texk/makejvf/usrtable.h
parent44e980f2689e9bc5e6941a51696b3df11a7ade5b (diff)
texk/makejvf: Support a configuration file (version 20170828)
git-svn-id: svn://tug.org/texlive/trunk@45152 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/makejvf/usrtable.h')
-rw-r--r--Build/source/texk/makejvf/usrtable.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Build/source/texk/makejvf/usrtable.h b/Build/source/texk/makejvf/usrtable.h
new file mode 100644
index 00000000000..61343ff8040
--- /dev/null
+++ b/Build/source/texk/makejvf/usrtable.h
@@ -0,0 +1,23 @@
+#define BUF_SIZE 1024
+#define MAX_TABLE 1024
+#define MAX_CHAR_TABLE 32768
+extern int usertable_replace_max,usertable_move_max,usertable_charset_max;
+
+struct USERTABLE_REPLACE {
+ int codepoint;
+ int newcodepoint;
+};
+extern struct USERTABLE_REPLACE usertable_replace[];
+struct USERTABLE_MOVE {
+ int codepoint;
+ double moveright;
+ double movedown;
+};
+extern struct USERTABLE_MOVE usertable_move[];
+struct USERTABLE_CHARSET {
+ long min, max;
+};
+extern struct USERTABLE_CHARSET usertable_charset[];
+
+/* usrtable.c */
+void get_usertable(char *name);