blob: 3f577314f215a836f1000b6de63e5fc620991e0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
equiputl.hpp
Created 8/1/98 by DHM: Utilies for dealing with equipment
*/
#ifndef _equiputl
#define _equiputl 1
#if ( defined( __WATCOMC__ ) || defined( _MSC_VER ) )
#pragma once
#endif
#ifndef _equipmnt_h_
#include "equipmnt.h"
#endif
#ifndef _langenum_h_
#include "langenum.h"
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* Version settings *****************************************************/
/* Constants ***********************************************************/
/* Macros ***************************************************************/
/* Type definitions *****************************************************/
/* Exported globals *****************************************************/
/* Function prototypes **************************************************/
namespace EquipmentUtil
{
// Functions to get the ID for the text string "ROUNDS" and "MAGAZINES"
// Mostly returns TEXTSTRING_ROUNDS and TEXTSTRING_MAGAZINES,
// but some weapons have different strings
enum TEXTSTRING_ID GetTextID_Rounds
(
enum WEAPON_ID WeaponID
);
enum TEXTSTRING_ID GetTextID_Magazines
(
enum WEAPON_ID WeaponID
);
};
/* End of the header ****************************************************/
#ifdef __cplusplus
};
#endif
#endif
|