From b49835229e333e0075215afef9ed151107d23da7 Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Mon, 8 Sep 2008 23:20:51 +0100 Subject: [PATCH] include: Use placeholder structures with at least one field in vmr9.idl. MIDL won't parse structures with no fields. --- include/vmr9.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/vmr9.idl b/include/vmr9.idl index b7f916c2dd7..bb3681cd22d 100644 --- a/include/vmr9.idl +++ b/include/vmr9.idl @@ -25,8 +25,8 @@ typedef LONGLONG REFERENCE_TIME; typedef DWORD D3DFORMAT; typedef DWORD D3DPOOL; typedef HANDLE HMONITOR; -typedef struct { } AM_MEDIA_TYPE; -typedef struct { } D3DCOLOR; +typedef struct { char dummy; } AM_MEDIA_TYPE; +typedef struct { char dummy; } D3DCOLOR; cpp_quote("#endif") interface IVMRSurface9;