includes: Make vmrender.idl C++ friendly.
C++ doesn't like: GUID GUID; which is valid in C, so replace with struct _GUID GUID;
This commit is contained in:
parent
e6ac20e814
commit
a664043e1d
|
@ -213,7 +213,7 @@ interface IVMRMixerControl : IUnknown
|
||||||
|
|
||||||
typedef struct tagVMRGUID
|
typedef struct tagVMRGUID
|
||||||
{
|
{
|
||||||
GUID *pGUID, GUID;
|
struct _GUID *pGUID, GUID;
|
||||||
} VMRGUID;
|
} VMRGUID;
|
||||||
|
|
||||||
#define VMRDEVICENAMELEN 32
|
#define VMRDEVICENAMELEN 32
|
||||||
|
|
Loading…
Reference in New Issue