2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 02:27:40 -04:00

Convert custom HeadSpin integer types to standard types from stdint.h

This commit is contained in:
2012-01-19 21:19:26 -05:00
parent a0d54e2644
commit 5027b5a4ac
1301 changed files with 14497 additions and 14532 deletions

View File

@ -454,7 +454,7 @@ static const NetMsgField kAcctActivateReplyFields[] = {
static const NetMsgField kFileListReplyFields[] = {
kNetMsgFieldTransId, // transId
kNetMsgFieldENetError, // result
NET_MSG_FIELD_VAR_COUNT(sizeof(wchar), 1024 * 1024), // wcharCount
NET_MSG_FIELD_VAR_COUNT(sizeof(wchar_t), 1024 * 1024), // wchar_tCount
NET_MSG_FIELD_VAR_PTR(), // fileData
};
@ -548,7 +548,7 @@ static const NetMsgField kVaultInitAgeReplyFields[] = {
static const NetMsgField kVaultNodeFindReplyFields[] = {
kNetMsgFieldTransId, // transId
kNetMsgFieldENetError, // result
NET_MSG_FIELD_VAR_COUNT(sizeof(dword), 512), // nodeIdCount
NET_MSG_FIELD_VAR_COUNT(sizeof(uint32_t), 512), // nodeIdCount
NET_MSG_FIELD_VAR_PTR(), // nodeIds
};