From 00ab883644380fa4249948b38b5a30c117aa8046 Mon Sep 17 00:00:00 2001 From: Bernhard Loos Date: Tue, 6 Sep 2011 09:51:25 +0200 Subject: [PATCH] widl: Also create proxies/stubs for interfaces marked with oleautomation. --- tools/widl/proxy.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/widl/proxy.c b/tools/widl/proxy.c index 33ffbd3c253..820e263e9a5 100644 --- a/tools/widl/proxy.c +++ b/tools/widl/proxy.c @@ -768,7 +768,6 @@ int need_proxy(const type_t *iface) { if (!is_object( iface )) return 0; if (is_local( iface->attrs )) return 0; - if (is_attr( iface->attrs, ATTR_OLEAUTOMATION )) return 0; if (is_attr( iface->attrs, ATTR_DISPINTERFACE )) return 0; return 1; } -- 2.11.4.GIT