Location:
e32std.h
Link against:
#if defined(_UNICODE)
typedef TLexMark16 TLexMark;
#else
typedef TLex8Mark TLexMark;
#endif
Supported from 5.0
Defines the extraction mark used by the TLex
classes
to indicate the current lexical element being analysed. It maps directly to
either a TLexMark16
for a Unicode build or a
TLexMark8
for a non-Unicode build.
The build independent type should always be used unless an explicit 16 bit or 8 bit build variant is required.