mirror of
https://github.com/EduApps-CDG/OpenDX
synced 2024-12-30 09:45:37 +01:00
12 lines
254 B
C++
12 lines
254 B
C++
#pragma once
|
|
|
|
#include <ostream>
|
|
#include <iomanip>
|
|
|
|
#include "com_include.h"
|
|
|
|
#define DXVK_DEFINE_GUID(iface) \
|
|
template<> inline GUID const& __mingw_uuidof<iface> () { return iface::guid; }
|
|
|
|
std::ostream& operator << (std::ostream& os, REFIID guid);
|