home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / memacs32.zip / h / elang.h < prev    next >
C/C++ Source or Header  |  1993-08-07  |  807b  |  42 lines

  1. /*    ELANG.H:    Language specific definitions for
  2.             MicroEMACS 3.12
  3.             (C)opyright 1993 by Daniel Lawrence
  4. */
  5.  
  6. #if    ENGLISH
  7. #include    "english.h"
  8. #define    LANGUAGE "english"
  9. #endif
  10. #if    FRENCH
  11. #if BSD || USG || SMOS || HPUX8 || HPUX9 || SUN || XENIX || AVIION
  12. #include    "frenchis.h"    /* ISO version */
  13. #else
  14. #include    "french.h"    /* IBM-PC char set */
  15. #endif
  16. #define    LANGUAGE "french"
  17. #endif
  18. #if    SPANISH
  19. #include    "spanish.h"
  20. #define    LANGUAGE "spanish"
  21. #endif
  22. #if    GERMAN
  23. #include    "german.h"
  24. #define    LANGUAGE "german"
  25. #endif
  26. #if    DUTCH
  27. #include    "dutch.h"
  28. #define    LANGUAGE "dutch"
  29. #endif
  30. #if    PLATIN
  31. #include    "platin.h"
  32. #define    LANGUAGE "pig latin"
  33. #endif
  34. #if    JAPAN
  35. #include    "japan.h"
  36. #define    LANGUAGE "japaneese"
  37. #endif
  38. #if    LATIN
  39. #include    "latin.h"
  40. #define    LANGUAGE "latin"
  41. #endif
  42.