diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-08-30 00:17:08 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-08-30 00:17:08 +0200 |
commit | b564c10b13effed63c7b7dae25117e2e0a2c64e4 (patch) | |
tree | ea79cf0c9b254aac517f1024602b39615eedb010 /src/common/Define.h | |
parent | b0107802064a19d69ce06f7bcf8b8394695e6faf (diff) |
Core/Players: Implemented serverside validation of reserved/profane names
Closes #15357
New library dependency: Boost.Regex
Diffstat (limited to 'src/common/Define.h')
-rw-r--r-- | src/common/Define.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/Define.h b/src/common/Define.h index cf288c3053f..92962bfab79 100644 --- a/src/common/Define.h +++ b/src/common/Define.h @@ -111,6 +111,7 @@ enum DBCFormer FT_NA = 'x', //not used or unknown, 4 byte size FT_NA_BYTE = 'X', //not used or unknown, byte FT_STRING = 's', //char* + FT_STRING_NOT_LOCALIZED = 'S', //char* but without locale in DB2 FT_FLOAT = 'f', //float FT_INT = 'i', //uint32 FT_BYTE = 'b', //uint8 |