Module: wine Branch: master Commit: b3c8124a15e8c6ec078c06d3bb3fffe974e2a9b2 URL: http://source.winehq.org/git/wine.git/?a=commit;h=b3c8124a15e8c6ec078c06d3bb...
Author: Rob Shearman robertshearman@gmail.com Date: Sat Jan 10 20:55:55 2009 +0000
oleaut32: Dump MSFT format typeinfos upon loading.
---
dlls/oleaut32/typelib.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 9bc601e..0f35fc1 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -2214,6 +2214,8 @@ static ITypeInfoImpl * MSFT_DoTypeInfo( debugstr_w(ptiRet->Name), debugstr_guid(&ptiRet->TypeAttr.guid), typekind_desc[ptiRet->TypeAttr.typekind]); + if (TRACE_ON(typelib)) + dump_TypeInfo(ptiRet);
return ptiRet; }