aboutsummaryrefslogtreecommitdiff
path: root/ltm.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:17:25 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-23 14:17:25 -0300
commit39b79783297bee79db9853b63d199e120a009a8f (patch)
treec738c621c4c28d8822c2f785400786301985273b /ltm.h
parentd164e2294f73d8e69f00d95a66014514b2dd0ec0 (diff)
downloadlua-39b79783297bee79db9853b63d199e120a009a8f.tar.gz
lua-39b79783297bee79db9853b63d199e120a009a8f.tar.bz2
lua-39b79783297bee79db9853b63d199e120a009a8f.zip
first (big) step to support wide chars
Diffstat (limited to 'ltm.h')
-rw-r--r--ltm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ltm.h b/ltm.h
index 13759c5c..53572bd2 100644
--- a/ltm.h
+++ b/ltm.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.h,v 1.22 2001/01/25 16:45:36 roberto Exp roberto $ 2** $Id: ltm.h,v 1.23 2001/02/09 20:22:29 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -67,12 +67,12 @@ struct TM {
67 67
68#define validtag(G,t) (NUM_TAGS <= (t) && (t) < G->ntag) 68#define validtag(G,t) (NUM_TAGS <= (t) && (t) < G->ntag)
69 69
70extern const char *const luaT_eventname[]; 70extern const l_char *const luaT_eventname[];
71 71
72 72
73void luaT_init (lua_State *L); 73void luaT_init (lua_State *L);
74int luaT_newtag (lua_State *L, const char *name, int basictype); 74int luaT_newtag (lua_State *L, const l_char *name, int basictype);
75const char *luaT_typename (global_State *G, const TObject *o); 75const l_char *luaT_typename (global_State *G, const TObject *o);
76int luaT_tag (const TObject *o); 76int luaT_tag (const TObject *o);
77int luaT_validevent (int t, int e); /* used by compatibility module */ 77int luaT_validevent (int t, int e); /* used by compatibility module */
78 78