Merging Live++ 1.5.0

#rb none
#jira

#ROBOMERGE-OWNER: robert.manuszewski
#ROBOMERGE-AUTHOR: ben.marsh
#ROBOMERGE-SOURCE: CL 7321355 in //UE4/Release-4.23/... via CL 7321356
#ROBOMERGE-BOT: CORE (Main -> Dev-Core) (v371-7306989)

[CL 7370235 by ben marsh in Dev-Core branch]
This commit is contained in:
ben marsh
2019-07-17 03:41:26 -04:00
parent bb1e653735
commit b475bc61bd
65 changed files with 2885 additions and 1051 deletions

View File

@@ -361,6 +361,18 @@ void ClientUserCommandThread::TriggerRecompile(void)
}
void ClientUserCommandThread::LogMessage(const wchar_t* message)
{
const size_t lengthWithoutNull = wcslen(message);
const size_t payloadSize = sizeof(wchar_t) * (lengthWithoutNull + 1u);
ProxyCommand<commands::LogMessage>* proxy = new ProxyCommand<commands::LogMessage>(false, payloadSize);
proxy->m_payload.Write(message, payloadSize);
PushUserCommand(proxy);
}
void ClientUserCommandThread::BuildPatch(const wchar_t* moduleNames[], const wchar_t* objPaths[], const wchar_t* amalgamatedObjPaths[], unsigned int count)
{
const size_t perFileSize = sizeof(wchar_t) * MAX_PATH * 3u;