nls.h
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* from mkdir */
  2. /* TODO.... no work other than this has been done for internationalization */
  3. #if HAVE_LOCALE_H  
  4. # include <locale.h>  
  5. #endif  
  6. #if !HAVE_SETLOCALE  
  7. # define setlocale(Category, Locale) /* empty */  
  8. #endif  
  9. #if ENABLE_NLS  
  10. # include <libintl.h>  
  11. # define _(Text) gettext (Text)  
  12. #else  
  13. # undef bindtextdomain  
  14. # define bindtextdomain(Domain, Directory) /* empty */  
  15. # undef textdomain  
  16. # define textdomain(Domain) /* empty */  
  17. # define _(Text) Text  
  18. #endif