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
|
||||
{
|
||||
GUID *pGUID, GUID;
|
||||
struct _GUID *pGUID, GUID;
|
||||
} VMRGUID;
|
||||
|
||||
#define VMRDEVICENAMELEN 32
|
||||
|
|
Loading…
Reference in New Issue