mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
8f9ffcf23f
External ogg/vorbis are no longer required. git-svn-id: https://svn.eduke32.com/eduke32@4320 1a8010ca-5511-0410-912e-c29ae57300e0
28 lines
632 B
C
28 lines
632 B
C
|
|
// MinGW-w64 headers are deficient.
|
|
// Here, account for CINTERFACE because they don't.
|
|
#ifdef REFGUID
|
|
# undef REFGUID
|
|
#endif
|
|
#ifdef REFIID
|
|
# undef REFIID
|
|
#endif
|
|
#ifdef REFCLSID
|
|
# undef REFCLSID
|
|
#endif
|
|
#ifdef REFFMTID
|
|
# undef REFFMTID
|
|
#endif
|
|
|
|
// copied from MinGW's <basetyps.h>
|
|
#if defined (__cplusplus) && !defined (CINTERFACE)
|
|
# define REFGUID const GUID&
|
|
# define REFIID const IID&
|
|
# define REFCLSID const CLSID&
|
|
# define REFFMTID const FMTID&
|
|
#else
|
|
# define REFGUID const GUID* const
|
|
# define REFIID const IID* const
|
|
# define REFCLSID const CLSID* const
|
|
# define REFFMTID const FMTID* const
|
|
#endif
|