diff options
Diffstat (limited to 'ark/rar.h')
-rw-r--r-- | ark/rar.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -24,6 +24,8 @@ #ifndef RAR_H #define RAR_H +#include <stdint.h> + #include "arch.h" class TQString; @@ -65,7 +67,7 @@ class RarArch : public Arch * Therefore, the variables below are needed. */ bool m_isFirstLine; - short m_version; + uint32_t m_version; TQString m_entryFilename; }; |