Location:
e32std.h
Link against:
#if defined(_UNICODE)
typedef TLex16 TLex;
#else
typedef TLex8 TLex;
#endif
Supported from 5.0
Provides access to general string-parsing functions suitable for
numeric format conversions and syntactical-element parsing. It maps directly to
either a TLex16
for a Unicode build or a TLex8
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.