diff options
author | Vincent Richard <[email protected]> | 2013-07-15 08:35:09 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2013-07-15 08:35:09 +0000 |
commit | fdeaec5e05a504b70140b931227590ba3a7e19d1 (patch) | |
tree | 65750fa42262acd5ab9607ff1571914b637ae1b2 /cmake/config.hpp.cmake | |
parent | Refactored the way embedded objects are referenced in MHTML. (diff) | |
download | vmime-fdeaec5e05a504b70140b931227590ba3a7e19d1.tar.gz vmime-fdeaec5e05a504b70140b931227590ba3a7e19d1.zip |
64-bit type detection.
Diffstat (limited to '')
-rw-r--r-- | cmake/config.hpp.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmake/config.hpp.cmake b/cmake/config.hpp.cmake index cddf7ef1..d1b235cf 100644 --- a/cmake/config.hpp.cmake +++ b/cmake/config.hpp.cmake @@ -37,6 +37,9 @@ typedef unsigned @VMIME_16BIT_TYPE@ vmime_uint16; // -- 32-bit typedef signed @VMIME_32BIT_TYPE@ vmime_int32; typedef unsigned @VMIME_32BIT_TYPE@ vmime_uint32; +// -- 64-bit +typedef signed @VMIME_64BIT_TYPE@ vmime_int64; +typedef unsigned @VMIME_64BIT_TYPE@ vmime_uint64; #cmakedefine01 VMIME_HAVE_SIZE_T |