- Timestamp:
- May 3, 2001, 8:18:53 PM (24 years ago)
- Location:
- trunk/src/oleaut32
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/oleaut32/oleaut32.cpp
r4837 r5650 1 /* $Id: oleaut32.cpp,v 1. 6 2000-12-24 14:39:54sandervl Exp $ */1 /* $Id: oleaut32.cpp,v 1.7 2001-05-03 18:18:53 sandervl Exp $ */ 2 2 /* 3 3 * OLEAUT32 … … 29 29 void OpenPrivateLogFiles() 30 30 { 31 // OpenPrivateLogFileTypelib(); 31 #ifdef DEBUG 32 OpenPrivateLogFileTypelib(); 33 #endif 32 34 } 33 35 //****************************************************************************** … … 36 38 void ClosePrivateLogFiles() 37 39 { 38 // ClosePrivateLogFileTypelib(); 40 #ifdef DEBUG 41 ClosePrivateLogFileTypelib(); 42 #endif 39 43 } 40 44 -
trunk/src/oleaut32/typelib.cpp
r5600 r5650 1 /* $Id: typelib.cpp,v 1.1 8 2001-04-26 19:24:56sandervl Exp $ */1 /* $Id: typelib.cpp,v 1.19 2001-05-03 18:18:53 sandervl Exp $ */ 2 2 /* 3 3 * ITypelib interface … … 667 667 m_pHeader = (TLB2Header *)m_pTypeLib; 668 668 669 dprintf((LOG, "header:")); 670 dprintf((LOG, "magic1=0x%08x ,magic2=0x%08x\n", m_pHeader->magic1, m_pHeader->magic2)); 671 672 if (memcmp(&m_pHeader->magic1,TLBMAGIC2,4)) { 673 dprintf((LOG, "Header type magic 0x%08x not supported.",m_pHeader->magic1)); 674 return E_FAIL; 675 } 676 669 677 if (m_pHeader->varflags & HELPDLLFLAG) 670 678 { … … 682 690 if (m_pSegDir->pTypeInfoTab.res0c != 0x0F || m_pSegDir->pImpInfo.res0c != 0x0F) 683 691 { 684 dprintf((LOG, " Segment directory sanity check failed!"));692 dprintf((LOG, " Segment directory sanity check failed! pTypeInfo %x, pImpInfo %x", m_pSegDir->pTypeInfoTab.res0c, m_pSegDir->pImpInfo.res0c)); 685 693 return E_FAIL; 686 694 }
Note:
See TracChangeset
for help on using the changeset viewer.