home *** CD-ROM | disk | FTP | other *** search
/ ST-Computer Leser-CD 2000 January / LCD_01_2000.iso / games / doom / pmdoom / include / dstrings.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-17  |  1.6 KB  |  67 lines

  1. /*  Emacs style mode select   -*- C++ -*-  */
  2. /* ----------------------------------------------------------------------------- */
  3. /*  */
  4. /*  $Id:$ */
  5. /*  */
  6. /*  Copyright (C) 1993-1996 by id Software, Inc. */
  7. /*  */
  8. /*  This source is available for distribution and/or modification */
  9. /*  only under the terms of the DOOM Source Code License as */
  10. /*  published by id Software. All rights reserved. */
  11. /*  */
  12. /*  The source is distributed in the hope that it will be useful, */
  13. /*  but WITHOUT ANY WARRANTY; without even the implied warranty of */
  14. /*  FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License */
  15. /*  for more details. */
  16. /*  */
  17. /*  */
  18. /*  $Log:$ */
  19. /*  */
  20. /*  DESCRIPTION: */
  21. /*     DOOM strings, by language. */
  22. /*  */
  23. /* ----------------------------------------------------------------------------- */
  24.  
  25.  
  26. #ifndef __DSTRINGS__
  27. #define __DSTRINGS__
  28.  
  29.  
  30. /*  All important printed strings. */
  31. /*  Language selection (message strings). */
  32. /*  Use -DFRENCH etc. */
  33.  
  34. #ifdef FRENCH
  35. #include "d_french.h"
  36. #else
  37. #include "d_englsh.h"
  38. #endif
  39.  
  40. /*  Misc. other strings. */
  41. #define SAVEGAMENAME    "doomsav"
  42.  
  43.  
  44. /*  */
  45. /*  File locations, */
  46. /*   relative to current position. */
  47. /*  Path names are OS-sensitive. */
  48. /*  */
  49. #define DEVMAPS "devmaps"
  50. #define DEVDATA "devdata"
  51.  
  52.  
  53. /*  Not done in french? */
  54.  
  55. /*  QuitDOOM messages */
  56. #define NUM_QUITMESSAGES   22
  57.  
  58. extern char* endmsg[];
  59.  
  60.  
  61. #endif
  62. /* ----------------------------------------------------------------------------- */
  63. /*  */
  64. /*  $Log:$ */
  65. /*  */
  66. /* ----------------------------------------------------------------------------- */
  67.