Added Enigma game

This commit is contained in:
pelya
2010-10-13 17:30:44 +03:00
parent 8bd2d39dfe
commit bf7d3f22c6
308 changed files with 92986 additions and 39 deletions

View File

@@ -0,0 +1,22 @@
#ifndef NLS_HH_INCLUDED
#define NLS_HH_INCLUDED
#include "config.h"
#if defined(ENABLE_NLS)
# include <libintl.h>
# define _(String) gettext(String)
# define gettext_noop(String) (String)
# define N_(String) gettext_noop(String)
#else // !defined(ENABLE_NLS)
# define _(String) (String)
# define N_(String) (String)
#endif
#include <string>
namespace nls
{
void SetMessageLocale (const std::string &language);
}
#endif