mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
14 lines
208 B
C
14 lines
208 B
C
|
#pragma once
|
||
|
|
||
|
#include "../util/log/log.h"
|
||
|
|
||
|
|
||
|
namespace dxvk {
|
||
|
|
||
|
/**
|
||
|
* \brief Adds a message to the global DXVK log
|
||
|
* \param [in] message Log message
|
||
|
*/
|
||
|
void log(const std::string& message);
|
||
|
|
||
|
}
|