diff options
Diffstat (limited to 'include/m_system.h')
-rw-r--r-- | include/m_system.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/m_system.h b/include/m_system.h index a772ef6134..39477b4d84 100644 --- a/include/m_system.h +++ b/include/m_system.h @@ -531,6 +531,15 @@ struct INT64_PARAM : public PARAM }
};
+struct SINT64_PARAM : public PARAM
+{
+ int64_t iValue;
+ __forceinline SINT64_PARAM(const char *_name, int64_t _value) :
+ PARAM(_name), iValue(_value)
+ {
+ }
+};
+
struct CHAR_PARAM : public PARAM
{
const char *szValue;
|