diff options
Diffstat (limited to 'src/server/authserver/Authentication/AuthCodes.h')
-rw-r--r-- | src/server/authserver/Authentication/AuthCodes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/authserver/Authentication/AuthCodes.h b/src/server/authserver/Authentication/AuthCodes.h index df5a2d6c538..c734a87968f 100644 --- a/src/server/authserver/Authentication/AuthCodes.h +++ b/src/server/authserver/Authentication/AuthCodes.h @@ -19,6 +19,9 @@ #ifndef _AUTHCODES_H #define _AUTHCODES_H +#include "Define.h" +#include <array> + enum AuthResult { WOW_SUCCESS = 0x00, @@ -84,6 +87,8 @@ struct RealmBuildInfo int MinorVersion; int BugfixVersion; int HotfixVersion; + std::array<uint8, 20> WindowsHash; + std::array<uint8, 20> MacHash; }; namespace AuthHelper |