home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / UE311H.ZIP / ELANG.H < prev    next >
C/C++ Source or Header  |  1991-06-11  |  661b  |  38 lines

  1. /*    ELANG.H:    Language specific definitions for
  2.             MicroEMACS 3.10
  3.             (C)opyright 1988 by Daniel Lawrence
  4. */
  5.  
  6. #if    ENGLISH
  7. #include    "english.h"
  8. #define    LANGUAGE "english"
  9. #endif
  10. #if    FRENCH
  11. #include    "french.h"
  12. #define    LANGUAGE "french"
  13. #endif
  14. #if    SPANISH
  15. #include    "spanish.h"
  16. #define    LANGUAGE "spanish"
  17. #endif
  18. #if    GERMAN
  19. #include    "german.h"
  20. #define    LANGUAGE "german"
  21. #endif
  22. #if    DUTCH
  23. #include    "dutch.h"
  24. #define    LANGUAGE "dutch"
  25. #endif
  26. #if    PLATIN
  27. #include    "platin.h"
  28. #define    LANGUAGE "pig latin"
  29. #endif
  30. #if    JAPAN
  31. #include    "japan.h"
  32. #define    LANGUAGE "japaneese"
  33. #endif
  34. #if    LATIN
  35. #include    "latin.h"
  36. #define    LANGUAGE "latin"
  37. #endif
  38.