Subversion Repositories Kolibri OS

Rev

Rev 325 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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