Jacek Caban : widl: Added nonbrowsable attribute handling.

Alexandre Julliard julliard at wine.codeweavers.com
Mon Jul 30 08:55:48 CDT 2007


Module: wine
Branch: master
Commit: 1ad39a38e5a7c46201664c9b09963d9c5df2f133
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=1ad39a38e5a7c46201664c9b09963d9c5df2f133

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Sun Jul 29 21:23:18 2007 +0200

widl: Added nonbrowsable attribute handling.

---

 tools/widl/write_msft.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/tools/widl/write_msft.c b/tools/widl/write_msft.c
index da28803..c32a5fb 100644
--- a/tools/widl/write_msft.c
+++ b/tools/widl/write_msft.c
@@ -1338,6 +1338,9 @@ static HRESULT add_func_desc(msft_typeinfo_t* typeinfo, const func_t *func, int
         case ATTR_ID:
             id = expr->cval;
             break;
+        case ATTR_NONBROWSABLE:
+            funcflags |= 0x400; /* FUNCFLAG_NONBROWSABLE */
+            break;
         case ATTR_OUT:
             break;
         case ATTR_PROPGET:




More information about the wine-cvs mailing list