mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
1cc9d13ccf
Files moved but not modified. Changes to follow in a subsequent commit. You down with CPP? git-svn-id: https://svn.eduke32.com/eduke32@6055 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
|