1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-20 17:52:11 +01:00
dxvk/src/util/com/com_include.h

11 lines
246 B
C
Raw Normal View History

2017-10-11 00:41:56 +02:00
#pragma once
// GCC complains about the COM interfaces
// not having virtual destructors
#ifdef __GNUC__
2017-10-11 00:41:56 +02:00
#pragma GCC diagnostic ignored "-Wnon-virtual-dtor"
#endif // __GNUC__
2017-10-11 00:41:56 +02:00
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <unknwn.h>