Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ HANDLE CrashGenerationClient::ConnectToServer() {
}

bool CrashGenerationClient::RegisterClient(HANDLE pipe) {
#ifdef _GAMING_XBOX_SCARLETT
Copy link
Member

@bruno-garcia bruno-garcia Nov 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return false;
#else
ProtocolMessage msg(MESSAGE_TAG_REGISTRATION_REQUEST,
GetCurrentProcessId(),
dump_type_,
Expand Down Expand Up @@ -271,6 +274,7 @@ bool CrashGenerationClient::RegisterClient(HANDLE pipe) {
server_process_id_ = reply.id;

return true;
#endif // _GAMING_XBOX_SCARLETT
}

HANDLE CrashGenerationClient::ConnectToPipe(const wchar_t* pipe_name,
Expand Down