Symbian Developer Library

SYMBIAN OS V6.1 EDITION FOR C++

[Index] [Glossary] [Previous] [Next]



Location: e32def.h
Link against:

_S

#if defined(_UNICODE)
typedef TText16 TText;
...
#define _S(a) ((const TText *)L ## a)
#else
typedef TText8 TText;
...
#define _S(a) ((const TText *)a)
#endif

Support

Supported from 5.0

Description

Defines either an 8 bit string (for non-Unicode text) or a 16 bit string (for Unicode text) depending on the build.

This is used by the deprecated build independent literal _L.