Changeset 815 for trunk/src/shell32/new/iconcache.cpp
- Timestamp:
- Sep 4, 1999, 12:03:10 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/new/iconcache.cpp
r793 r815 69 69 70 70 71 staticHDPA sic_hdpa = 0;71 HDPA sic_hdpa = 0; 72 72 static CRITICAL_SECTION SHELL32_SicCS; 73 73 … … 576 576 if (NULL != pDPA_GetPtr (sic_hdpa, 0)) 577 577 { 578 index = pDPA_Search (sic_hdpa, &sice, -1L, SIC_CompareEntrys, 0, 0);578 index = pDPA_Search (sic_hdpa, &sice, -1L, (PFNDPACOMPARE)SIC_CompareEntrys, 0, 0); 579 579 } 580 580 … … 682 682 for (i=0; i < pDPA_GetPtrCount(sic_hdpa); ++i) 683 683 { 684 lpsice = pDPA_GetPtr(sic_hdpa, i);684 lpsice = (LPSIC_ENTRY)pDPA_GetPtr(sic_hdpa, i); 685 685 SHFree(lpsice); 686 686 }
Note:
See TracChangeset
for help on using the changeset viewer.