diff options
Diffstat (limited to 'lobject.h')
-rw-r--r-- | lobject.h | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.14 2005/05/31 14:25:18 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.15 2005/06/06 13:30:25 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -254,8 +254,10 @@ typedef struct Proto { | |||
254 | } Proto; | 254 | } Proto; |
255 | 255 | ||
256 | 256 | ||
257 | /* mask for new-style vararg */ | 257 | /* masks for new-style vararg */ |
258 | #define NEWSTYLEVARARG 2 | 258 | #define VARARG_HASARG 1 |
259 | #define VARARG_ISVARARG 2 | ||
260 | #define VARARG_NEEDSARG 4 | ||
259 | 261 | ||
260 | 262 | ||
261 | typedef struct LocVar { | 263 | typedef struct LocVar { |
@@ -373,3 +375,4 @@ LUAI_FUNC void luaO_chunkid (char *out, const char *source, size_t len); | |||
373 | 375 | ||
374 | 376 | ||
375 | #endif | 377 | #endif |
378 | |||