Browse Subversion Repository
Contents of /trunk/Language.h
Parent Directory
| Revision Log
Revision 1 -
( show annotations)
( download)
( as text)
Sun Aug 15 01:53:13 2010 UTC
(13 years, 9 months ago)
by okadu
File MIME type: text/x-chdr
File size: 345 byte(s)
| 1 |
#ifndef LANGUAGE_H_INCLUDED |
| 2 |
#define LANGUAGE_H_INCLUDED |
| 3 |
|
| 4 |
#ifdef LANGUAGE_CPP |
| 5 |
#define LANG_EXT |
| 6 |
#else |
| 7 |
#define LANG_EXT extern |
| 8 |
#endif |
| 9 |
|
| 10 |
namespace LanguageResource{ |
| 11 |
#define PROC_LANG(a) LANG_EXT string a; |
| 12 |
#include "LanguageID.h" |
| 13 |
} |
| 14 |
|
| 15 |
extern string g_LanguageName; |
| 16 |
|
| 17 |
#define lang(name) ((char *)LanguageResource::name.c_str()) |
| 18 |
|
| 19 |
#endif |
|