summaryrefslogtreecommitdiff
path: root/src/avp/equiputl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/avp/equiputl.hpp')
-rw-r--r--src/avp/equiputl.hpp67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/avp/equiputl.hpp b/src/avp/equiputl.hpp
new file mode 100644
index 0000000..3f57731
--- /dev/null
+++ b/src/avp/equiputl.hpp
@@ -0,0 +1,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