// Copyright (C) Microsoft Corporation. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "CheckFailure.h" #include "pch.h" #include <iomanip> #include <sstream> // Notify the user of a failure with a message box. void ShowFailure(HRESULT hr, const std::wstring& message) { std::wstringstream formattedMessage; formattedMessage << message << ": 0x" << std::hex << std::setw(8) << hr; MessageBox(nullptr, formattedMessage.str().c_str(), nullptr, MB_OK); } // If something failed, show the error code and fail fast. void CheckFailure(HRESULT hr, const std::wstring& message) { if (FAILED(hr)) { ShowFailure(hr, message); FAIL_FAST(); } }