diff options
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,21 +1,22 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.5 1994/11/08 20:06:15 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.6 1994/11/21 21:41:09 roberto Stab roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
6 | #ifndef inout_h | 6 | #ifndef inout_h |
7 | #define inout_h | 7 | #define inout_h |
8 | 8 | ||
9 | #include "types.h" | ||
9 | 10 | ||
10 | extern int lua_linenumber; | 11 | extern Word lua_linenumber; |
11 | extern int lua_debug; | 12 | extern Bool lua_debug; |
12 | extern int lua_debugline; | 13 | extern Word lua_debugline; |
13 | 14 | ||
14 | char *lua_openfile (char *fn); | 15 | char *lua_openfile (char *fn); |
15 | void lua_closefile (void); | 16 | void lua_closefile (void); |
16 | char *lua_openstring (char *s); | 17 | char *lua_openstring (char *s); |
17 | void lua_closestring (void); | 18 | void lua_closestring (void); |
18 | void lua_pushfunction (char *file, int function); | 19 | void lua_pushfunction (char *file, Word function); |
19 | void lua_popfunction (void); | 20 | void lua_popfunction (void); |
20 | void lua_reportbug (char *s); | 21 | void lua_reportbug (char *s); |
21 | 22 | ||