lmtlualib.h /size: 693 b    last modification: 2024-01-16 10:22
1/*
2    See license.txt in the root of this project.
3*/
4
5# ifndef LMT_LLUALIB_H
6# define LMT_LLUALIB_H
7
8/*tex
9
10    We started with multiple instances but that made no sense as dealing with isolated instances
11    and talking to \TEX\ also means that one then has to have a channel between instances. and it's
12    not worth the trouble. So we went for one instance.
13
14    This also means that the names related to directlua instances have been removed in the follow
15    up.
16
17*/
18
19extern void lmt_dump_registers       (dumpstream f);
20extern void lmt_undump_registers     (dumpstream f);
21extern void lmt_bytecode_call        (int slot);
22
23extern void lmt_initialize_functions (int set_size);
24
25# endif
26