1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-27 08:22:09 +01:00
dxvk/src/util/com/com_guid.h
2023-03-01 13:25:56 +01:00

22 lines
498 B
C++

#pragma once
#include <ostream>
#include <iomanip>
#include "com_include.h"
namespace dxvk {
/**
* \brief Checks whether an unknown GUID should be logged
*
* \param [in] objectGuid GUID of the object that QueryInterface is called on
* \param [in] requestGuid Requested unsupported GUID
* \returns \c true if the error should be logged
*/
bool logQueryInterfaceError(REFIID objectGuid, REFIID requestedGuid);
};
std::ostream& operator << (std::ostream& os, REFIID guid);