diff options
author | Eugene Sandulenko | 2017-01-10 01:02:22 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-01-10 01:02:56 +0100 |
commit | 677dd99bdb564b86c93657fb0e8c3cf1cd5f612d (patch) | |
tree | b127bf8e2743f9c183c231224a3c3d3a0d19fc7e /engines/director/lingo/lingo-gr.h | |
parent | 525f916b2d645076797e4e8f713b4e4d16e3e4f1 (diff) | |
download | scummvm-rg350-677dd99bdb564b86c93657fb0e8c3cf1cd5f612d.tar.gz scummvm-rg350-677dd99bdb564b86c93657fb0e8c3cf1cd5f612d.tar.bz2 scummvm-rg350-677dd99bdb564b86c93657fb0e8c3cf1cd5f612d.zip |
DIRECTOR: Lingo: Added stubs for D3 Text-related syntax
Diffstat (limited to 'engines/director/lingo/lingo-gr.h')
-rw-r--r-- | engines/director/lingo/lingo-gr.h | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/engines/director/lingo/lingo-gr.h b/engines/director/lingo/lingo-gr.h index 11d2db10bc..27cfd6e9b3 100644 --- a/engines/director/lingo/lingo-gr.h +++ b/engines/director/lingo/lingo-gr.h @@ -108,11 +108,14 @@ tCONTAINS = 324, tSTARTS = 325, tCHAR = 326, - tSPRITE = 327, - tINTERSECTS = 328, - tWITHIN = 329, - tON = 330, - tSOUND = 331 + tITEM = 327, + tLINE = 328, + tWORD = 329, + tSPRITE = 330, + tINTERSECTS = 331, + tWITHIN = 332, + tON = 333, + tSOUND = 334 }; #endif /* Tokens. */ @@ -185,11 +188,14 @@ #define tCONTAINS 324 #define tSTARTS 325 #define tCHAR 326 -#define tSPRITE 327 -#define tINTERSECTS 328 -#define tWITHIN 329 -#define tON 330 -#define tSOUND 331 +#define tITEM 327 +#define tLINE 328 +#define tWORD 329 +#define tSPRITE 330 +#define tINTERSECTS 331 +#define tWITHIN 332 +#define tON 333 +#define tSOUND 334 @@ -207,7 +213,7 @@ typedef union YYSTYPE Common::Array<double> *arr; } /* Line 1529 of yacc.c. */ -#line 211 "engines/director/lingo/lingo-gr.hpp" +#line 217 "engines/director/lingo/lingo-gr.hpp" YYSTYPE; # define yystype YYSTYPE /* obsolescent; will be withdrawn */ # define YYSTYPE_IS_DECLARED 1 |