|
Listing 3: Final string storage structure
Listing 3: Final string storage structure
typedef enum
{
JET_BLACK, RED, PALE_GREY, YELLOW, ..., LAST_STR
} STR;
static const STRING strings[LAST_STR] =
{
{ /* JET_BLACK */
15,
{
"Jet Black ", /* English */
"Rabenschwarz ", /* German */
...
}
},
{ /* RED */
15,
{
"Red ", /* English */
"Rot ", /* German */
...
}
},
...
};
|