Update documentation

This commit is contained in:
Jeffrey Walton 2020-12-25 21:39:49 -05:00
parent 4513d9593f
commit 1546bce536
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -128,11 +128,12 @@ typedef signed int sword32;
#endif
/// \brief Large word type
/// \details a typedef for large word types, used for file offsets and such.
/// \details lword is a typedef for large word types. It is used for file
/// offsets and such.
typedef word64 lword;
/// \brief Large word type max value
/// \details the maximum value for large word types.
/// \details LWORD_MAX is the maximum value for large word types.
const lword LWORD_MAX = W64LIT(0xffffffffffffffff);
#if defined(CRYPTOPP_DOXYGEN_PROCESSING)