mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-11-29 01:24:11 +01:00
[native] Add a DECLARE_INTERFACE define for !CONST_VTABLE.
This helps avoid some compiler warnings on GCC in particular.
This commit is contained in:
parent
7d9864c077
commit
2334bbccb0
@ -333,12 +333,21 @@ typedef struct RGNDATA {
|
|||||||
#define DECLARE_INTERFACE(x) struct x
|
#define DECLARE_INTERFACE(x) struct x
|
||||||
#define DECLARE_INTERFACE_(x, y) struct x : public y
|
#define DECLARE_INTERFACE_(x, y) struct x : public y
|
||||||
#else
|
#else
|
||||||
|
#ifdef CONST_VTABLE
|
||||||
#define DECLARE_INTERFACE(x) \
|
#define DECLARE_INTERFACE(x) \
|
||||||
typedef interface x { \
|
typedef interface x { \
|
||||||
const struct x##Vtbl *lpVtbl; \
|
const struct x##Vtbl *lpVtbl; \
|
||||||
} x; \
|
} x; \
|
||||||
typedef const struct x##Vtbl x##Vtbl; \
|
typedef const struct x##Vtbl x##Vtbl; \
|
||||||
const struct x##Vtbl
|
const struct x##Vtbl
|
||||||
|
#else
|
||||||
|
#define DECLARE_INTERFACE(x) \
|
||||||
|
typedef interface x { \
|
||||||
|
struct x##Vtbl *lpVtbl; \
|
||||||
|
} x; \
|
||||||
|
typedef struct x##Vtbl x##Vtbl; \
|
||||||
|
struct x##Vtbl
|
||||||
|
#endif // CONST_VTABLE
|
||||||
#define DECLARE_INTERFACE_(x, y) DECLARE_INTERFACE(x)
|
#define DECLARE_INTERFACE_(x, y) DECLARE_INTERFACE(x)
|
||||||
#endif // __cplusplus
|
#endif // __cplusplus
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user